XpressEngine Core  1.11.2
 All Classes Namespaces Files Functions Variables Pages
adminlogging.addon.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) NAVER <http://www.navercorp.com> */
3 
4 if(!defined('__XE__'))
5  exit();
6 
12 $logged_info = Context::get('logged_info');
13 if($logged_info && $logged_info->is_admin == 'Y' && stripos(Context::get('act'), 'admin') !== false && $called_position == 'before_module_proc')
14 {
15  $oAdminloggingController = getController('adminlogging');
16  $oAdminloggingController->insertLog($this->module, $this->act);
17 }
18 /* End of file adminlogging.php */
19 /* Location: ./addons/adminlogging */
getController($module_name)
Definition: func.inc.php:90
high class of the module module
Definition: module.class.php:8