Dotclear

source: plugins/simpleMenu/_public.php @ 3019:a2b9d58505b1

Revision 3019:a2b9d58505b1, 4.3 KB checked in by franck <carnet.franck.paul@…>, 10 years ago (diff)

Encapsulate <ul>…</ul> with <nav role="navigation">…</nav> when <ul> used for navigation role (simpleMenu, navigation widget), fixes #2030

Line 
1<?php
2# -- BEGIN LICENSE BLOCK ---------------------------------------
3#
4# This file is part of Dotclear 2.
5#
6# Copyright (c) 2003-2013 Olivier Meunier & Association Dotclear
7# Licensed under the GPL version 2.0 license.
8# See LICENSE file or
9# http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
10#
11# -- END LICENSE BLOCK -----------------------------------------
12if (!defined('DC_RC_PATH')) { return; }
13
14require dirname(__FILE__).'/_widgets.php';
15
16# Simple menu template functions
17$core->tpl->addValue('SimpleMenu',array('tplSimpleMenu','simpleMenu'));
18
19class tplSimpleMenu
20{
21     # Template function
22     public static function simpleMenu($attr)
23     {
24          global $core;
25
26          if (!(boolean) $core->blog->settings->system->simpleMenu_active)
27               return '';
28
29          $class = isset($attr['class']) ? trim($attr['class']) : '';
30          $id = isset($attr['id']) ? trim($attr['id']) : '';
31          $description = isset($attr['description']) ? trim($attr['description']) : '';
32
33          if (!preg_match('#^(title|span|both|none)$#',$description)) {
34               $description = '';
35          }
36
37          return '<?php echo tplSimpleMenu::displayMenu('.
38                    "'".addslashes($class)."',".
39                    "'".addslashes($id)."',".
40                    "'".addslashes($description)."'".
41               '); ?>';
42     }
43
44     # Widget function
45     public static function simpleMenuWidget($w)
46     {
47          global $core, $_ctx;
48
49          $descr_type = array(0 => 'span',1 => 'title',2 => 'both',3 => 'none');
50
51          if (!(boolean) $core->blog->settings->system->simpleMenu_active)
52               return;
53
54          if ($w->offline)
55               return;
56
57          if (($w->homeonly == 1 && $core->url->type != 'default') ||
58               ($w->homeonly == 2 && $core->url->type == 'default')) {
59               return;
60          }
61
62          $description = 'title';
63          if (isset($descr_type[$w->description])) {
64               $description = $descr_type[$w->description];
65          }
66          $menu = tplSimpleMenu::displayMenu('','',$description);
67          if ($menu == '') {
68               return;
69          }
70
71          return $w->renderDiv($w->content_only,'simple-menu '.$w->class,'',
72               ($w->title ? $w->renderTitle(html::escapeHTML($w->title)) : '').$menu);
73     }
74
75     public static function displayMenu($class='',$id='',$description='')
76     {
77          global $core;
78
79          $ret = '';
80
81          if (!(boolean) $core->blog->settings->system->simpleMenu_active)
82               return $ret;
83
84          $menu = $GLOBALS['core']->blog->settings->system->get('simpleMenu');
85          $menu = @unserialize($menu);
86
87          if (is_array($menu))
88          {
89               // Current relative URL
90               $url = $_SERVER['REQUEST_URI'];
91               $abs_url = http::getHost().$url;
92
93               // Home recognition var
94               $home_url = html::stripHostURL($GLOBALS['core']->blog->url);
95               $home_directory = dirname($home_url);
96               if ($home_directory != '/')
97                    $home_directory = $home_directory.'/';
98
99               // Menu items loop
100               foreach ($menu as $i => $m) {
101                    # $href = lien de l'item de menu
102                    $href = $m['url'];
103                    $href = html::escapeHTML($href);
104
105                    # Active item test
106                    $active = false;
107                    if (($url == $href) ||
108                         ($abs_url == $href) ||
109                         ($_SERVER['URL_REQUEST_PART'] == $href) ||
110                         (($_SERVER['URL_REQUEST_PART'] == '') && (($href == $home_url) || ($href == $home_directory)))) {
111                         $active = true;
112                    }
113                    $title = $span = '';
114                    if ($m['descr']) {
115                         if ($description == 'title' || $description == 'both') {
116                              $title = ' title="'.html::escapeHTML(__($m['descr'])).'"';
117                         }
118                         if ($description == 'span' || $description == 'both') {
119                              $span = ' <span>'.html::escapeHTML(__($m['descr'])).'</span>';
120                         }
121                    }
122                    $label = html::escapeHTML(__($m['label']));
123
124                    $item = new ArrayObject(array(
125                         'url' => $href,                         // URL
126                         'label' => $label,                 // <a> link label
127                         'title' => $title,                 // <a> link title (optional)
128                         'span' => $span,                   // description (will be displayed after <a> link)
129                         'active' => $active,               // status (true/false)
130                         'class' => ''                      // additional <li> class (optional)
131                         ));
132
133                    # --BEHAVIOR-- publicSimpleMenuItem
134                    $core->callBehavior('publicSimpleMenuItem',$i,$item);
135
136                    $ret .= '<li class="li'.($i+1).
137                                   ($item['active'] ? ' active' : '').
138                                   ($i == 0 ? ' li-first' : '').
139                                   ($i == count($menu)-1 ? ' li-last' : '').
140                                   ($item['class'] ? $item['class'] : '').
141                              '">'.
142                              '<a href="'.$href.'"'.$item['title'].'>'.$item['label'].$item['span'].'</a>'.
143                              '</li>';
144               }
145
146               // Final rendering
147               if ($ret) {
148                    $ret = '<nav role="navigation"><ul '.($id ? 'id="'.$id.'"' : '').' class="simple-menu'.($class ? ' '.$class : '').'">'."\n".$ret."\n".'</ul></nav>';
149               }
150          }
151
152          return $ret;
153     }
154}
Note: See TracBrowser for help on using the repository browser.

Sites map