Changeset 3395
- Timestamp:
- 04/03/16 16:01:07 (7 years ago)
- Location:
- plugins/versionsManager
- Files:
-
- 1 added
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/versionsManager/_admin.php
r3378 r3395 18 18 # <http://www.gnu.org/licenses/>. 19 19 # 20 # Icon (icon.png) and images are from Silk Icons :21 # <http://www.famfamfam.com/lab/icons/silk/>22 #23 20 # ***** END LICENSE BLOCK ***** 24 21 … … 30 27 preg_match('/plugin.php\?p=versionsManager(&.*)?$/', 31 28 $_SERVER['REQUEST_URI']),$core->auth->check('admin',$core->blog->id)); 29 30 $core->addBehavior('adminDashboardFavorites','versionsManagerDashboardFavorites'); 31 32 function versionsManagerDashboardFavorites($core,$favs) 33 { 34 $favs->register('versionsManager', array( 35 'title' => __('Versions manager'), 36 'url' => 'plugin.php?p=versionsManager', 37 'small-icon' => 'index.php?pf=versionsManager/icon.png', 38 'large-icon' => 'index.php?pf=versionsManager/icon-big.png', 39 'permissions' => 'usage,contentadmin' 40 )); 41 } -
plugins/versionsManager/_define.php
r3378 r3395 18 18 # <http://www.gnu.org/licenses/>. 19 19 # 20 # Icon (icon.png) and images are from Silk Icons :21 # <http://www.famfamfam.com/lab/icons/silk/>22 #23 20 # ***** END LICENSE BLOCK ***** 24 21 … … 28 25 /* Name */ "Versions Manager", 29 26 /* Description */ "Delete and update plugins versions", 30 /* Author */ "Moe (http://gniark.net/) ",31 /* Version */ "0. 2",27 /* Author */ "Moe (http://gniark.net/), Pierre Van Glabeke", 28 /* Version */ "0.3", 32 29 /* Properties */ 33 30 array( -
plugins/versionsManager/changelog
r3378 r3395 1 v0.3 - 03-04-2016 - Pierre Van Glabeke 2 * ajout favori 3 * dc2.6 requis 4 1 5 v0.2 - 12-03-2015 - Pierre Van Glabeke 2 6 * cosmétique dc2.6 (breadcrumb + affichage message) -
plugins/versionsManager/inc/lib.versionsManager.php
r3378 r3395 17 17 # License along with this program. If not, see 18 18 # <http://www.gnu.org/licenses/>. 19 #20 # Icon (icon.png) and images are from Silk Icons :21 # <http://www.famfamfam.com/lab/icons/silk/>22 19 # 23 20 # ***** END LICENSE BLOCK ***** -
plugins/versionsManager/index.php
r3378 r3395 17 17 # License along with this program. If not, see 18 18 # <http://www.gnu.org/licenses/>. 19 #20 # Icon (icon.png) and images are from Silk Icons :21 # <http://www.famfamfam.com/lab/icons/silk/>22 19 # 23 20 # ***** END LICENSE BLOCK ***** -
plugins/versionsManager/locales/fr/main.po
r3378 r3395 2 2 msgstr "" 3 3 "Content-Type: text/plain; charset=UTF-8\n" 4 "Project-Id-Version: versionsManager 0. 1\n"4 "Project-Id-Version: versionsManager 0.3\n" 5 5 "POT-Creation-Date: \n" 6 6 "PO-Revision-Date: 2010-06-26T17:05:34+00:00\n" … … 12 12 msgid "Versions manager" 13 13 msgstr "Gestionnaire de versions" 14 15 msgid "Delete and update plugins versions" 16 msgstr "Supprimer et mettre à jour les versions des plugins" 14 17 15 18 msgid "no version"
Note: See TracChangeset
for help on using the changeset viewer.