PHP Classes

File: htdocs/modules/system/admin/comments/admin_header.php

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   htdocs/modules/system/admin/comments/admin_header.php   Download  
File: htdocs/modules/system/admin/comments/admin_header.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change: non-canonical order

In docblock var tags, use "type variableName" more consistently
Date: 5 years ago
Size: 1,493 bytes
 

Contents

Class file image Download
<?php
/*
 * You may not change or alter any portion of this comment or credits
 * of supporting developers from this source code or any supporting source code
 * which is considered copyrighted (c) material of the original comment or credit authors.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 */

/**
 * @copyright {@link http://xoops.org/ XOOPS Project}
 * @license {@link http://www.gnu.org/licenses/gpl-2.0.html GNU GPL 2 or later}
 * @package
 * @since
 * @author XOOPS Development Team
 */

include dirname(dirname(dirname(dirname(__DIR__)))) . '/mainfile.php';
include
$GLOBALS['xoops']->path('/include/cp_functions.php');
if (
is_object($xoopsUser)) {
   
/* @var XoopsModuleHandler $module_handler */
   
$module_handler = xoops_getHandler('module');
   
$xoopsModule = $module_handler->getByDirname('system');
    if (!
in_array(XOOPS_GROUP_ADMIN, $xoopsUser->getGroups())) {
        include_once
$GLOBALS['xoops']->path('modules/system/constants.php');
       
/* @var XoopsGroupPermHandler $sysperm_handler */
       
$sysperm_handler = xoops_getHandler('groupperm');
        if (!
$sysperm_handler->checkRight('system_admin', XOOPS_SYSTEM_COMMENT, $xoopsUser->getGroups())) {
           
redirect_header(XOOPS_URL . '/', 3, _NOPERM);
        }
    }
} else {
   
redirect_header(XOOPS_URL . '/', 3, _NOPERM);
}