Changeset 3246 for plugins/pacKman
- Timestamp:
- 11/04/13 13:57:09 (10 years ago)
- Location:
- plugins/pacKman
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/pacKman/README.md
r3240 r3246 3 3 ## WHAT IS PACKMAN ? 4 4 5 pacKman is a plugin sfor the open-source5 pacKman is a plugin for the open-source 6 6 web publishing software called Dotclear. 7 7 … … 20 20 ## USAGE 21 21 22 First install pacKman, man nualy from a zip package or from22 First install pacKman, manualy from a zip package or from 23 23 Dotaddict repository. (See Dotclear's documentation to know how do this) 24 24 -
plugins/pacKman/_define.php
r3243 r3246 26 26 "Jean-Christian Denis", 27 27 /* Version */ 28 '2013.1 0.29',28 '2013.11.03', 29 29 /* Properies */ 30 30 array( … … 32 32 'type' => 'plugin', 33 33 'dc_min' => '2.6', 34 'support' => 'http://jcd.lv/ pacKman',34 'support' => 'http://jcd.lv/q=pacKman', 35 35 'details' => 'http://plugins.dotaddict.org/dc2/details/pacKman' 36 36 ) -
plugins/pacKman/_install.php
r3240 r3246 83 83 # Check Dotclear version 84 84 if (!method_exists('dcUtils', 'versionsCompare') 85 || dcUtils::versionsCompare(DC_VERSION, $dc_min, ' >', false)) {85 || dcUtils::versionsCompare(DC_VERSION, $dc_min, '<', false)) { 86 86 throw new Exception(sprintf( 87 87 '%s requires Dotclear %s', $mod_id, $dc_min -
plugins/pacKman/index.php
r3240 r3246 156 156 elseif ($action == 'delete') { 157 157 158 if ($type == 'plugins') {159 $proot = $plugins_path;160 }161 elseif ($type == 'themes') {162 $proot == $themes_path;163 }164 else {165 $proot == 'repository';166 }167 168 158 foreach ($_POST['modules'] as $id => $root) { 169 159 if (!file_exists($root) || !files::isDeletable($root)) {
Note: See TracChangeset
for help on using the changeset viewer.