source: extensions/ASearchEngine/ase_pip.class.inc.php @ 15907

Last change on this file since 15907 was 15360, checked in by grum, 12 years ago

feature:2635 - Compatibility with Piwigo 2.4

  • Property svn:executable set to *
File size: 4.4 KB
RevLine 
[7196]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
16include_once('ase_root.class.inc.php');
[7318]17include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCPublicIntegration.class.inc.php');
18include_once(PHPWG_PLUGINS_PATH.'GrumPluginClasses/classes/GPCRequestBuilder.class.inc.php');
[7196]19
[7318]20
[7196]21class ASE_PIP extends ASE_root
22{
[15360]23  const SEARCH_SECTION = 'ASearch';
[7318]24  protected $sectionPage;
[7196]25  protected $css2;
26
27  public function __construct($prefixeTable, $filelocation)
28  {
29    parent::__construct($prefixeTable, $filelocation);
[15360]30    $this->css2 = new GPCCss(dirname($this->getFileLocation()).'/'.$this->getPluginNameFiles()."2.css",10);
[7196]31    $this->loadConfig();
[7450]32
[7196]33    $this->load_lang();
[7318]34
[7439]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();
[7450]40      $this->initEvents();
[7439]41    }
[7196]42  }
43
44  public function __destruct()
45  {
[7318]46    unset($section_page);
47
[7196]48    parent::__destruct();
49  }
50
51  /*
52    load language file
53  */
54  public function load_lang()
55  {
56    load_language('plugin.lang', ASE_PATH);
[7404]57    load_language('rbuilder.lang', GPC_PATH);
[7196]58  }
59
60  /*
61    initialize events call for the plugin
62  */
63  public function initEvents()
64  {
65    parent::initEvents();
66
[10886]67    add_event_handler('blockmanager_apply', array(&$this, 'blockManagerApply'), 40); // call ASE before AMM
68
[7450]69    if($this->sectionPage->pageIsSection())
70    {
71      GPCRequestBuilder::loadJSandCSS();
[7318]72
[7450]73      add_event_handler('init', array(&$this, 'applyJS'));
74      add_event_handler('loc_begin_page_header', array(&$this->css2, 'applyCSS'), 9); // have to be loaded before other css file (event level from GPCCore=10)
75      add_event_handler('user_init', array(&$this, 'load_lang'));
76    }
[7196]77  }
78
79
80
81  /* -------------------------------------------------------------------------
82    FUNCTIONS TO MANAGE ASE
83  ------------------------------------------------------------------------- */
84
[7318]85  public function applyJS()
86  {
87    global $template;
[7196]88
[7318]89    $theme=$template->get_themeconf('name');
[7196]90
[15360]91    // css file for piwigo's default themes (provided by ASE)
[7318]92    $file='plugins/ASearchEngine/themes/'.$theme.'/ASE'.$theme.'.css';
93    if(($theme=='Sylvia' or
94        $theme=='clear' or
[15360]95        $theme=='dark' or
96        $theme=='elegant') and
97        file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE0', $file, 35);
[7196]98
[15360]99    // css file for ASE provided by themes
[7318]100    $file='themes/'.$theme.'/css/ASE'.$theme.'.css';
[15360]101    if(file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE1', $file, 40);
[7318]102
[15360]103    // css file for ASE provided in local directory
[10886]104    $file=PHPWG_ROOT_PATH.PWG_LOCAL_DIR.'local/css/ASE'.$theme.'.css';
[15360]105    if(file_exists(GPCCore::getPiwigoSystemPath().'/'.$file)) GPCCore::addHeaderCSS('ASE2', $file, 45);
[7318]106  }
107
108  public function managePage()
109  {
110    global $page, $conf, $template;
111
112    /*
113     * make the title bar
114     */
115    $page['title'].=$conf['level_separator'].l10n('ase_search_with_multiple_criteria');
116    $template->assign('TITLE', $page['title']);
117
118    $template->clear_assign(array('U_MODE_CREATED', 'U_MODE_POSTED'));
119
120    /*
121     * display empty template
122     * (all content are managed with ajax)
123     */
124
[15360]125    $template->set_filename('ASEmain', dirname(__FILE__)."/templates/search_page.tpl");
[7318]126
127    $template->assign('ase_search_page', GPCRequestBuilder::displaySearchPage($this->config['ase_publicAccess_allowedPlugins']));
128
[15360]129    $template->assign_var_from_handle('PLUGIN_INDEX_CONTENT_BEGIN', 'ASEmain');
[7318]130  }
131
132
133  /**
[15360]134   * replace the piwigo search.php url by ?/ASearch url
[7318]135   */
[10886]136  public function blockManagerApply($menu_ref_arr)
[7318]137  {
138    global $user, $page;
139    $menu = & $menu_ref_arr[0];
140
141    if($this->config['ase_publicAccess_active'])
142    {
143      $block=$menu->get_block('mbMenu');
[15360]144      if(!is_null($block)) $block->data['search']['URL']='./?/'.self::SEARCH_SECTION;
[7318]145    }
146  }
147
148
149
150
[7196]151} //class
152
153?>
Note: See TracBrowser for help on using the repository browser.