source: extensions/AdditionalPages/trunk/main.inc.php @ 12502

Last change on this file since 12502 was 12502, checked in by plg, 12 years ago

bug fixed: the multilingual page names (displayed in the menu) were not handled properly outside index.php and picture.php, but Piwigo 2.3 displays the menu on all pages now.

File size: 4.1 KB
Line 
1<?php
2/*
3Plugin Name: Additional Pages
4Version: auto
5Description: Add additional pages in menubar.
6Plugin URI: http://piwigo.org/ext/extension_view.php?eid=153
7Author: P@t
8Author URI: http://www.gauchon.com
9*/
10
11if (!defined('PHPWG_ROOT_PATH')) die('Hacking attempt!');
12
13global $prefixeTable, $conf;
14
15define('AP_DIR' , basename(dirname(__FILE__)));
16define('AP_PATH' , PHPWG_PLUGINS_PATH . AP_DIR . '/');
17define('ADD_PAGES_TABLE' , $prefixeTable . 'additionalpages');
18
19$conf['AP'] = @unserialize($conf['additional_pages']);
20
21// Need upgrade?
22if (!isset($conf['AP']['language_perm']))
23  include(AP_PATH.'admin/upgrade.inc.php');
24
25// Unset $conf['random_index_redirect'] if homepage is defined
26if (!empty($conf['random_index_redirect']) and !is_null($conf['AP']['homepage']))
27{
28  $conf['ap_random_index_redirect'] = $conf['random_index_redirect'];
29  $conf['random_index_redirect'] = array();
30}
31
32// Admin menu
33function additional_pages_admin_menu($menu)
34{
35    array_push($menu, array(
36      'NAME' => 'Additional Pages',
37      'URL' => get_root_url().'admin.php?page=plugin-'.AP_DIR,
38      )
39    );
40    return $menu;
41}
42
43// common
44function ap_common_init()
45{
46  if (defined('EXTENDED_DESC_PATH'))
47  {
48    add_event_handler('AP_render_content', 'get_extended_desc');
49    add_event_handler('AP_render_title', 'get_user_language_desc');
50  }
51}
52
53// Section init
54function section_init_additional_page()
55{
56  global $tokens, $conf, $page;
57
58  $page['ap_homepage'] = (count($tokens) == 1 and empty($tokens[0]));
59
60  if (($tokens[0] == 'page' and !empty($tokens[1])) or ($page['ap_homepage'] and !is_null($conf['AP']['homepage'])))
61    include(AP_PATH . 'additional_page.php');
62
63  if ($tokens[0] == 'additional_page' and !empty($tokens[1]))
64    redirect(make_index_url(array('section'=>'page')).'/'.$tokens[1]);
65
66  if (!is_null($conf['AP']['homepage']))
67  {
68    $albums_url = make_index_url(array('section' => 'categories'));
69   
70    $page['title'] = preg_replace(
71      '#/a>#',
72      '/a>'.$conf['level_separator'].'<a href="'.$albums_url.'">'.l10n('Albums').'</a>',
73      $page['title'],
74      1 // only replace the first occurence of "a/>"
75      );
76  }
77}
78
79// Menubar
80function register_ap_menubar_blocks($menu_ref_arr)
81{
82  global $conf, $user;
83
84  $menu = & $menu_ref_arr[0];
85  if ($menu->get_id() != 'menubar') return;
86
87  $conf['AP']['block_title'] = isset($conf['AP']['languages'][$user['language']]) ?
88    $conf['AP']['languages'][$user['language']] : @$conf['AP']['languages']['default'];
89
90  if (empty($conf['AP']['block_title']))
91    $conf['AP']['block_title'] = 'Additional Pages';
92
93  $menu->register_block( new RegisteredBlock( 'mbAdditionalPages', $conf['AP']['block_title'], 'Additional Pages'));
94}
95
96function ap_apply($menu_ref_arr)
97{
98  global $template, $conf, $user;
99
100  $menu = & $menu_ref_arr[0];
101 
102  if ( ($block = $menu->get_block( 'mbAdditionalPages' ) ) != null )
103  {
104    $query = 'SELECT DISTINCT id, title, permalink
105FROM ' . ADD_PAGES_TABLE . '
106LEFT JOIN ' . USER_GROUP_TABLE . '
107  ON user_id = '.$user['id'].'
108WHERE (lang IS NULL OR lang = "'.$user['language'].'")
109  AND (users IS NULL OR users LIKE "%'.$user['status'].'%")
110  AND (groups IS NULL OR groups REGEXP CONCAT("(^|,)",group_id,"(,|$)"))
111  AND level <= '.$user['level'].'
112  AND pos >= 0
113ORDER BY pos ASC
114;';
115    $result = pwg_query($query);
116    $data = array();
117    while ($row = pwg_db_fetch_assoc($result))
118    {
119      $url = make_index_url(array('section'=>'page')).'/'.(isset($row['permalink']) ? $row['permalink'] : $row['id']);
120      array_push($data, array('URL' => $url, 'LABEL' => trigger_event('AP_render_title', $row['title'])));
121    }
122
123    if (!empty($data))
124    {
125      $template->set_template_dir(AP_PATH.'template/');
126      $block->set_title($conf['AP']['block_title']);
127      $block->template = 'menubar_additional_pages.tpl';
128      $block->data = $data;
129    }
130  }
131}
132
133add_event_handler('get_admin_plugin_menu_links', 'additional_pages_admin_menu');
134add_event_handler('init', 'ap_common_init');
135add_event_handler('loc_end_section_init', 'section_init_additional_page');
136add_event_handler('blockmanager_register_blocks', 'register_ap_menubar_blocks');
137add_event_handler('blockmanager_apply', 'ap_apply');
138
139?>
Note: See TracBrowser for help on using the repository browser.