1 | <?php |
---|
2 | /* ----------------------------------------------------------------------------- |
---|
3 | Plugin : Advanced Search Engine |
---|
4 | Author : Grum |
---|
5 | email : grum@piwigo.org |
---|
6 | website : http://photos.grum.fr |
---|
7 | |
---|
8 | << May the Little SpaceFrog be with you ! >> |
---|
9 | ------------------------------------------------------------------------------ |
---|
10 | See main.inc.php for release information |
---|
11 | |
---|
12 | ASE_PIP : classe to manage plugin public pages |
---|
13 | |
---|
14 | --------------------------------------------------------------------------- */ |
---|
15 | |
---|
16 | include_once('ase_root.class.inc.php'); |
---|
17 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCPublicIntegration.class.inc.php'); |
---|
18 | include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCRequestBuilder.class.inc.php'); |
---|
19 | |
---|
20 | |
---|
21 | class ASE_PIP extends ASE_root |
---|
22 | { |
---|
23 | const SEARCH_SECTION = 'ASearch'; |
---|
24 | protected $sectionPage; |
---|
25 | |
---|
26 | public function __construct($prefixeTable, $filelocation) |
---|
27 | { |
---|
28 | global $template; |
---|
29 | |
---|
30 | parent::__construct($prefixeTable, $filelocation); |
---|
31 | $this->loadConfig(); |
---|
32 | |
---|
33 | $this->load_lang(); |
---|
34 | |
---|
35 | if($this->config['ase_publicAccess_active']) |
---|
36 | { |
---|
37 | $this->sectionPage=new GPCPublicIntegration(self::SEARCH_SECTION); |
---|
38 | $this->sectionPage->setCallbackPageFunction(array(&$this, 'managePage')); |
---|
39 | $this->sectionPage->initEvents(); |
---|
40 | $this->initEvents(); |
---|
41 | } |
---|
42 | } |
---|
43 | |
---|
44 | public function __destruct() |
---|
45 | { |
---|
46 | unset($section_page); |
---|
47 | |
---|
48 | parent::__destruct(); |
---|
49 | } |
---|
50 | |
---|
51 | /* |
---|
52 | load language file |
---|
53 | */ |
---|
54 | public function load_lang() |
---|
55 | { |
---|
56 | load_language('plugin.lang', ASE_PATH); |
---|
57 | load_language('rbuilder.lang', GPC_PATH); |
---|
58 | } |
---|
59 | |
---|
60 | /* |
---|
61 | initialize events call for the plugin |
---|
62 | */ |
---|
63 | public function initEvents() |
---|
64 | { |
---|
65 | parent::initEvents(); |
---|
66 | |
---|
67 | add_event_handler('blockmanager_apply', array(&$this, 'blockManagerApply'), 40); // call ASE before AMM |
---|
68 | |
---|
69 | if($this->sectionPage->pageIsSection()) |
---|
70 | { |
---|
71 | GPCRequestBuilder::loadJSandCSS(); |
---|
72 | |
---|
73 | add_event_handler('init', array(&$this, 'applyJS')); |
---|
74 | add_event_handler('user_init', array(&$this, 'load_lang')); |
---|
75 | } |
---|
76 | } |
---|
77 | |
---|
78 | public function loadCSS() |
---|
79 | { |
---|
80 | GPCCore::addHeaderCSS('ase.css2', 'plugins/'.$this->getDirectory().'/'.$this->getPluginNameFiles()."2.css",9); // have to be loaded before other css file (event level from GPCCore=10) |
---|
81 | } |
---|
82 | |
---|
83 | /* ------------------------------------------------------------------------- |
---|
84 | FUNCTIONS TO MANAGE ASE |
---|
85 | ------------------------------------------------------------------------- */ |
---|
86 | |
---|
87 | public function applyJS() |
---|
88 | { |
---|
89 | global $template; |
---|
90 | |
---|
91 | $theme=$template->get_themeconf('name'); |
---|
92 | |
---|
93 | // css file for piwigo's default themes (provided by ASE) |
---|
94 | $file='plugins/ASearchEngine/themes/'.$theme.'/ASE'.$theme.'.css'; |
---|
95 | if(($theme=='Sylvia' or |
---|
96 | $theme=='clear' or |
---|
97 | $theme=='dark' or |
---|
98 | $theme=='elegant') and |
---|
99 | file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE0', $file, 35); |
---|
100 | |
---|
101 | // css file for ASE provided by themes |
---|
102 | $file='themes/'.$theme.'/css/ASE'.$theme.'.css'; |
---|
103 | if(file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE1', $file, 40); |
---|
104 | |
---|
105 | // css file for ASE provided in local directory |
---|
106 | $file=PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'local/css/ASE'.$theme.'.css'; |
---|
107 | if(file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE2', $file, 45); |
---|
108 | |
---|
109 | /* |
---|
110 | $template->set_filename('ASEheader', dirname(__FILE__)."/templates/search_page_header.tpl"); |
---|
111 | $template->block_html_head(null, $template->parse('ASEheader', true), null, null); |
---|
112 | */ |
---|
113 | } |
---|
114 | |
---|
115 | public function managePage() |
---|
116 | { |
---|
117 | global $page, $conf, $template; |
---|
118 | |
---|
119 | /* |
---|
120 | * make the title bar |
---|
121 | */ |
---|
122 | $page['title'].=$conf['level_separator'].l10n('ase_search_with_multiple_criteria'); |
---|
123 | $template->assign('TITLE', $page['title']); |
---|
124 | |
---|
125 | GPCCore::AddUI('inputTag,categorySelector'); |
---|
126 | |
---|
127 | $template->clear_assign(array('U_MODE_CREATED', 'U_MODE_POSTED')); |
---|
128 | |
---|
129 | /* |
---|
130 | * display empty template |
---|
131 | * (all content are managed with ajax) |
---|
132 | */ |
---|
133 | |
---|
134 | $template->assign( |
---|
135 | array( |
---|
136 | 'derivative_params' =>trigger_event('get_index_derivative_params', ImageStdParams::get_by_type( pwg_get_session_var('index_deriv', IMG_THUMB) ) ) |
---|
137 | ) |
---|
138 | ); |
---|
139 | |
---|
140 | $template->set_filename('ASEmain', dirname(__FILE__)."/templates/search_page.tpl"); |
---|
141 | |
---|
142 | $template->assign('ase_search_page', GPCRequestBuilder::displaySearchPage($this->config['ase_publicAccess_allowedPlugins'])); |
---|
143 | |
---|
144 | $template->assign_var_from_handle('PLUGIN_INDEX_CONTENT_BEGIN', 'ASEmain'); |
---|
145 | } |
---|
146 | |
---|
147 | |
---|
148 | /** |
---|
149 | * replace the piwigo search.php url by ?/ASearch url |
---|
150 | */ |
---|
151 | public function blockManagerApply($menu_ref_arr) |
---|
152 | { |
---|
153 | global $user, $page; |
---|
154 | $menu = & $menu_ref_arr[0]; |
---|
155 | |
---|
156 | if($this->config['ase_publicAccess_active']) |
---|
157 | { |
---|
158 | $block=$menu->get_block('mbMenu'); |
---|
159 | if(!is_null($block)) $block->data['search']['URL']='./?/'.self::SEARCH_SECTION; |
---|
160 | } |
---|
161 | } |
---|
162 | |
---|
163 | |
---|
164 | |
---|
165 | |
---|
166 | } //class |
---|
167 | |
---|
168 | ?> |
---|