-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmenu.AltoWithCSS3.php
More file actions
30 lines (28 loc) · 1.01 KB
/
menu.AltoWithCSS3.php
File metadata and controls
30 lines (28 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* @brief AltoWithCSS3, a theme for Dotclear 2
*
* @package Dotclear
* @subpackage Theme
*
* @author Pierre Van Glabeke
* @copyright http://creativecommons.org/licenses/by-nc/2.0/fr/
*/
# Template style menu
$template_theme_style = [
'LI_ACTIVE' => 'class="current_page_item"',
'LI_LAST' => 'class="last_menu"',
'LI_ACTIVE_LAST' => 'class="current_page_item last_menu"',
'LI_PARENT' => 'class="top_parent"',
'LI_FIRST_PARENT' => 'class="first_menu top_parent"',
'LI_LAST_PARENT' => 'class="last_menu top_parent"',
'LI_ACTIVE_FIRST_PARENT' => 'class="first_menu top_parent"',
'LI_ACTIVE_LAST_PARENT' => 'class="last_menu top_parent"',
'LI_SMPARENT' => 'class="current_page_parent"',
'LI_ACTIVE_SM' => 'class="current_page_item"',
];
# Widget style menu
$widget_theme_style = [
'W_LI_ACTIVE' => 'class="current_page_item"',
'W_LI_ACTIVE_SM' => 'class="current_page_item"',
];