-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
24 lines (20 loc) · 899 Bytes
/
footer.php
File metadata and controls
24 lines (20 loc) · 899 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
/**
* Footer page included at the end of each page on user side of the mdoule
*
* @copyright The ImpressCMS Project
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License (GPL)
* @since 1.0
* @author marcan <marcan@impresscms.org>
* @package imaudit
* @version $Id$
*/
if (!defined("ICMS_ROOT_PATH")) die("ICMS root path not defined");
$xoopsTpl->assign("imaudit_adminpage", imaudit_getModuleAdminLink());
$xoopsTpl->assign("imaudit_is_admin", $imaudit_isAdmin);
$xoopsTpl->assign('imaudit_url', IMAUDIT_URL);
$xoopsTpl->assign('imaudit_images_url', IMAUDIT_IMAGES_URL);
$xoopsTpl->assign('imaudit_can_review', imaudit_checkPermission('review_add', 'index.php'));
$xoTheme->addStylesheet(IMAUDIT_URL . 'module'.(( defined("_ADM_USE_RTL") && _ADM_USE_RTL )?'_rtl':'').'.css');
include_once(ICMS_ROOT_PATH . '/footer.php');
?>