Changeset 2566:9bf417837888 for plugins/maintenance/inc
- Timestamp:
- 11/17/13 20:25:53 (12 years ago)
- Branch:
- 2.6
- Children:
- 2567:6c11245cbf04, 2568:61c67a7d17fa
- Location:
- plugins/maintenance/inc
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/maintenance/inc/class.dc.maintenance.descriptor.php
r2044 r2566 17 17 @brief Simple descriptor for tabs, groups and more 18 18 19 At this time this class is used in same way an arrayObject 19 At this time this class is used in same way an arrayObject 20 20 but in futur it could be completed with advance methods. 21 21 */ -
plugins/maintenance/inc/class.dc.maintenance.php
r2044 r2566 48 48 * Initialize list of tabs and groups and tasks. 49 49 * 50 * To register a tab or group or task, 50 * To register a tab or group or task, 51 51 * use behavior dcMaintenanceInit then a method of 52 52 * dcMaintenance like addTab('myTab', ...). -
plugins/maintenance/inc/class.dc.maintenance.task.php
r2491 r2566 98 98 * Get task permission. 99 99 * 100 * Return user permission required to run this task 100 * Return user permission required to run this task 101 101 * or null for super admin. 102 102 * … … 215 215 * Get task group. 216 216 * 217 * If task required a full tab, 217 * If task required a full tab, 218 218 * this must be returned null. 219 * 219 * 220 220 * @return <b>mixed</b> Task group ID or null 221 221 */ … … 228 228 * Use ajax 229 229 * 230 * Is task use maintenance ajax script 230 * Is task use maintenance ajax script 231 231 * for steps process. 232 232 * … … 326 326 * Log task execution. 327 327 * 328 * Sometimes we need to log task execution 328 * Sometimes we need to log task execution 329 329 * direct from task itself. 330 330 * -
plugins/maintenance/inc/tasks/class.dc.maintenance.indexcomments.php
r2044 r2566 34 34 { 35 35 $this->code = $this->core->indexAllComments($this->code, $this->limit); 36 36 37 37 return $this->code ? $this->code : true; 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.