[7196] | 1 | <?php |
---|
| 2 | /* |
---|
| 3 | * ----------------------------------------------------------------------------- |
---|
| 4 | * Plugin Name: Advanced Search Engine |
---|
| 5 | * ----------------------------------------------------------------------------- |
---|
| 6 | * Author : Grum |
---|
| 7 | * email : grum@piwigo.org |
---|
| 8 | * website : http://photos.grum.fr |
---|
| 9 | * PWG user : http://forum.piwigo.org/profile.php?id=3706 |
---|
| 10 | * |
---|
| 11 | * << May the Little SpaceFrog be with you ! >> |
---|
| 12 | * |
---|
| 13 | * ----------------------------------------------------------------------------- |
---|
| 14 | * |
---|
| 15 | * See main.inc.php for release information |
---|
| 16 | * |
---|
| 17 | * manage all the ajax requests |
---|
| 18 | * ----------------------------------------------------------------------------- |
---|
| 19 | */ |
---|
| 20 | |
---|
| 21 | define('PHPWG_ROOT_PATH',dirname(dirname(dirname(__FILE__))).'/'); |
---|
| 22 | |
---|
| 23 | /* |
---|
| 24 | * set ajax module in admin mode if request is used for admin interface |
---|
| 25 | */ |
---|
| 26 | if(!isset($_REQUEST['ajaxfct'])) $_REQUEST['ajaxfct']=''; |
---|
[16008] | 27 | if(preg_match('/^admin\./i', $_REQUEST['ajaxfct'])) define('IN_ADMIN', true); |
---|
| 28 | if(!defined('AJAX_CALL')) define('AJAX_CALL', true); |
---|
[7196] | 29 | |
---|
[16008] | 30 | |
---|
[7196] | 31 | // the common.inc.php file loads all the main.inc.php plugins files |
---|
| 32 | include_once(PHPWG_ROOT_PATH.'include/common.inc.php' ); |
---|
| 33 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCAjax.class.inc.php'); |
---|
| 34 | include_once('ase_root.class.inc.php'); |
---|
| 35 | |
---|
| 36 | load_language('plugin.lang', ASE_PATH); |
---|
| 37 | |
---|
| 38 | |
---|
| 39 | class ASE_Ajax extends ASE_root |
---|
| 40 | { |
---|
| 41 | /** |
---|
| 42 | * constructor |
---|
| 43 | */ |
---|
| 44 | public function __construct($prefixeTable, $filelocation) |
---|
| 45 | { |
---|
| 46 | parent::__construct($prefixeTable, $filelocation); |
---|
| 47 | $this->loadConfig(); |
---|
| 48 | $this->checkRequest(); |
---|
| 49 | $this->returnAjaxContent(); |
---|
| 50 | } |
---|
| 51 | |
---|
| 52 | /** |
---|
| 53 | * check the $_REQUEST values and set default values |
---|
| 54 | * |
---|
| 55 | */ |
---|
| 56 | protected function checkRequest() |
---|
| 57 | { |
---|
| 58 | global $user; |
---|
| 59 | |
---|
[16008] | 60 | GPCAjax::checkToken(); |
---|
[7196] | 61 | |
---|
| 62 | // check if asked function is valid |
---|
[16008] | 63 | if(!($_REQUEST[GPC_AJAX]=='admin.config.setConfig' |
---|
| 64 | )) $_REQUEST[GPC_AJAX]=''; |
---|
[7196] | 65 | |
---|
[16008] | 66 | if(preg_match('/^admin\./i', $_REQUEST[GPC_AJAX]) and !is_admin()) $_REQUEST[GPC_AJAX]=''; |
---|
[7196] | 67 | |
---|
| 68 | |
---|
[16008] | 69 | if($_REQUEST[GPC_AJAX]!='') |
---|
[7196] | 70 | { |
---|
| 71 | |
---|
| 72 | } |
---|
| 73 | } //checkRequest |
---|
| 74 | |
---|
| 75 | |
---|
| 76 | /** |
---|
| 77 | * return ajax content |
---|
| 78 | */ |
---|
| 79 | protected function returnAjaxContent() |
---|
| 80 | { |
---|
| 81 | $result="<p class='errors'>An error has occured</p>"; |
---|
[7207] | 82 | |
---|
[16008] | 83 | switch($_REQUEST[GPC_AJAX]) |
---|
[7196] | 84 | { |
---|
[7207] | 85 | case 'admin.config.setConfig': |
---|
[7196] | 86 | break; |
---|
| 87 | } |
---|
| 88 | GPCAjax::returnResult($result); |
---|
| 89 | } |
---|
| 90 | |
---|
| 91 | |
---|
| 92 | /*------------------------------------------------------------------------* |
---|
| 93 | * |
---|
| 94 | * ADMIN FUNCTIONS |
---|
| 95 | * |
---|
| 96 | *----------------------------------------------------------------------- */ |
---|
| 97 | |
---|
| 98 | |
---|
| 99 | |
---|
| 100 | } //class |
---|
| 101 | |
---|
| 102 | |
---|
| 103 | $returned=new ASE_Ajax($prefixeTable, __FILE__); |
---|
| 104 | ?> |
---|