* @version $Id$ * @access public * @license http://opensource.org/licenses/gpl-3.0.html */ // $noplugin = true; // flag for ../config/define.php file include_once('../config/define.php'); securityCheck(); //////////// USER PERMISSIONS //////////// // WARNING : we delegate users permissions check to plugin itself //////////// include_once('../languages/' . U_L . '/lang_common.' . CHARSET . '.php'); $plugin=htmlentities($_REQUEST['plugin']); $rub=htmlentities($_REQUEST['rub']); $path = '../plugins/'.$plugin.'/override/'.$rub.'/_ajax_admin.php'; if(!file_exists($path)) die('no way !'); else include_once($path); ?>