Changeset 3387
- Timestamp:
- 06/21/15 17:55:59 (8 years ago)
- Location:
- plugins/fakemeup
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/fakemeup/_admin.php
r3177 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. … … 15 15 preg_match('/plugin.php\?p=fakemeup(&.*)?$/',$_SERVER['REQUEST_URI']), 16 16 $core->auth->isSuperAdmin() && is_writable(DC_DIGESTS)); 17 ?> -
plugins/fakemeup/_define.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. … … 17 17 /* Author */ "Bruno Hondelatte", 18 18 /* Version */ '1.6', 19 /* Permissions */ 'admin' 19 /* Properties */ 20 array( 21 'permissions' => 'admin', 22 'type' => 'plugin', 23 'dc_min' => '2.3', 24 'support' => 'http://forum.dotclear.org/viewtopic.php?pid=310117', 25 'details' => 'http://plugins.dotaddict.org/dc2/details/fakemeup' 26 ) 20 27 ); 21 22 ?> -
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 -
plugins/fakemeup/locales/fr/disclaimer.html
r3177 r3387 1 <p>Ce tte extension a pour but de contourner les messages d'erreur1 <p>Ce plugin a pour but de contourner les messages d'erreur 2 2 de dotclear lors des mises à jour, lorsque des fichiers de dotclear 3 3 ont été détectés comme ayant été modifiés.</p> -
plugins/fakemeup/locales/fr/main.po
r3177 r3387 13 13 msgid "Fake Me Up" 14 14 msgstr "" 15 16 msgid "Fakes Dotclear digest to force automatic updates" 17 msgstr "Passer outre les restrictions de dotclear lors d'une mise à jour" 15 18 16 19 msgid "The updates have been performed."
Note: See TracChangeset
for help on using the changeset viewer.