0byt3m1n1
Path:
/
data
/
applications
/
aps
/
xoops
/
2.5.1a-0
/
standard
/
htdocs
/
xoops_lib
/
modules
/
protector
/
[
Home
]
File: notification.php
<?php // start hack by Trabis if (!class_exists('ProtectorRegistry')) exit('Registry not found'); $registry =& ProtectorRegistry::getInstance(); $mydirname = $registry->getEntry('mydirname'); $mydirpath = $registry->getEntry('mydirpath'); $language = $registry->getEntry('language'); // end hack by Trabis eval( ' function '.$mydirname.'_notify_iteminfo( $category, $item_id ) { return protector_notify_base( "'.$mydirname.'" , $category , $item_id ) ; } ' ) ; if( ! function_exists( 'protector_notify_base' ) ) { function protector_notify_base( $mydirname , $category , $item_id ) { include_once dirname(__FILE__).'/include/common_functions.php' ; $db =& Database::getInstance() ; $module_handler =& xoops_gethandler( 'module' ) ; $module =& $module_handler->getByDirname( $mydirname ) ; if( $category == 'global' ) { $item['name'] = ''; $item['url'] = ''; return $item ; } } } ?>