⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 print.php

📁 groupoffice
💻 PHP
字号:
<?php/*Copyright Intermesh 2003Author: Merijn Schering <mschering@intermesh.nl>Version: 1.0 Release date: 08 July 2003This program is free software; you can redistribute it and/or modify itunder the terms of the GNU General Public License as published by theFree Software Foundation; either version 2 of the License, or (at youroption) any later version.*/require_once("../../Group-Office.php");$GO_SECURITY->authenticate();$GO_MODULES->authenticate('projects');require_once($GO_LANGUAGE->get_language_file('projects'));$page_title=$menu_projects;require_once($GO_MODULES->class_path."projects.class.inc");$projects = new projects();$task = isset($_REQUEST['task']) ? $_REQUEST['task'] : '';//check for the addressbook module$ab_module = isset ($GO_MODULES->modules['addressbook']) ? $GO_MODULES->modules['addressbook'] : false;if ($ab_module && $ab_module['read_permission']) {	require_once ($ab_module['class_path'].'addressbook.class.inc');	$ab = new addressbook();} else {	$ab_module = false;}require_once($GO_THEME->theme_path."header.inc");$container = new form('print_form');require_once("load.inc");echo $container->get_html();echo "\n<script type=\"text/javascript\">\nwindow.print();\n</script>\n";require_once($GO_THEME->theme_path."footer.inc");?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -