Changeset 32037 for extensions/About1menu
- Timestamp:
- Feb 4, 2020, 12:17:44 PM (5 years ago)
- Location:
- extensions/About1menu
- Files:
-
- 2 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/About1menu/main.inc.php
r31433 r32037 11 11 // | About 1 menu plugin for piwigo | 12 12 // +-----------------------------------------------------------------------+ 13 // | Copyright(C) 2013-20 16ddtddt http://temmii.com/piwigo/ |13 // | Copyright(C) 2013-2020 ddtddt http://temmii.com/piwigo/ | 14 14 // +-----------------------------------------------------------------------+ 15 15 // | This program is free software; you can redistribute it and/or modify | … … 61 61 if (($block = $menu->get_block( 'mbAbout' )) != null) { 62 62 $template->set_template_dir(A1M_PATH.'template/'); 63 $block->template = 'menubar_about.tpl'; 63 if ($user['theme'] == 'bootstrapdefault'){ 64 $block->template = 'menubar_about_Bootstrap_Default.tpl'; 65 }else if ($user['theme'] == 'smartpocket'){ 66 $block->template = 'menubar_about_smartpocket.tpl'; 67 }else{ 68 $block->template = 'menubar_about.tpl'; 69 } 64 70 } 65 71 }
Note: See TracChangeset
for help on using the changeset viewer.