Changeset 3387 for plugins/fakemeup/index.php
- Timestamp:
- 06/21/15 17:55:59 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/fakemeup/index.php
r3190 r3387 4 4 # This file is part of Dotclear 2 "Fake Me Up" plugin. 5 5 # 6 # Copyright (c) 2010 Bruno Hondelatte, and contributors.6 # Copyright (c) 2010-2015 Bruno Hondelatte, and contributors. 7 7 # Many, many thanks to Olivier Meunier and the Dotclear Team. 8 8 # Licensed under the GPL version 2.0 license. … … 11 11 # -- END LICENSE BLOCK ------------------------------------ 12 12 if (!defined('DC_CONTEXT_ADMIN')) { return; } 13 14 $page_title = __('Fake Me Up'); 15 13 16 //define('DC_DIGESTS',DC_ROOT.'/inc/digests'); 14 17 define('DC_DIGESTS_BACKUP',DC_ROOT.'/inc/digests.bak'); … … 110 113 ?> 111 114 <html> 112 <head><title><?php echo __('Fake Me Up'); ?></title>115 <head><title><?php echo($page_title); ?></title> 113 116 </head> 114 117 <body> 115 <?php 116 117 echo dcPage::breadcrumb( 118 array( 118 <?php 119 if (is_callable(array('dcPage', 'breadcrumb'))) 120 { 121 echo dcPage::breadcrumb( 122 array( 119 123 __('System') => '', 120 '<span class="page-title">'.__('Fake Me Up').'</span>' => '' 121 )); 124 '<span class="page-title">'.$page_title.'</span>' => '' 125 )); 126 } 127 else 128 { 129 echo('<h2>'.__('System').' › '. 130 $page_title.'</h2>'); 131 } 122 132 123 133 if (isset($_POST['erase_backup'])) { … … 198 208 } 199 209 } 200 echo '<p><a class="back" href="index.php">'.__(' back').'</a></p>';210 echo '<p><a class="back" href="index.php">'.__('Back').'</a></p>'; 201 211 ?> 202 212
Note: See TracChangeset
for help on using the changeset viewer.