Changeset 3874:ab8368569446 for themes/berlin
- Timestamp:
- 09/14/18 12:16:17 (7 years ago)
- Branch:
- default
- Location:
- themes/berlin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
themes/berlin/_define.php
r3731 r3874 17 17 "Dotclear Team", // Author 18 18 '1.2', // Version 19 array(// Properties19 [ // Properties 20 20 'type' => 'theme', 21 21 'tplset' => 'dotty' 22 )22 ] 23 23 ); -
themes/berlin/_public.php
r3731 r3874 17 17 //__('Show menu').__('Hide menu').__('Navigation'); 18 18 19 $core->addBehavior('publicHeadContent', array(__NAMESPACE__ . '\behaviorBerlinTheme', 'publicHeadContent'));19 $core->addBehavior('publicHeadContent', [__NAMESPACE__ . '\behaviorBerlinTheme', 'publicHeadContent']); 20 20 21 21 class behaviorBerlinTheme … … 23 23 public static function publicHeadContent() 24 24 { 25 echo \dcUtils::jsVars( array(25 echo \dcUtils::jsVars([ 26 26 'dotclear_berlin_show_menu' => __('Show menu'), 27 27 'dotclear_berlin_hide_menu' => __('Hide menu'), 28 28 'dotclear_berlin_navigation' => __('Navigation') 29 ));29 ]); 30 30 } 31 31 }
Note: See TracChangeset
for help on using the changeset viewer.