Revision 363, 0.5 KB
(checked in by exi, 14 years ago)
|
Commit of the reworked ajax mod
Preview of the new ajcron mod (80% done)
|
Line | |
---|
1 | <?php |
---|
2 | |
---|
3 | if (!class_exists('options')) |
---|
4 | { |
---|
5 | exit('This killboard is not supported (options package missing)!'); |
---|
6 | } |
---|
7 | options::cat('Modules', 'AJCron', 'Settings'); |
---|
8 | options::fadd('Reset next scheduled run to now', 'ajcron_resetNextRun', 'checkbox'); |
---|
9 | options::fadd('Reset running jobs', 'ajcron_resetRunning', 'checkbox'); |
---|
10 | options::fadd('Next scheduled run', 'none', 'custom', array('ajcron', 'getNextRunDisplay'), array('ajcron', 'resetNextRunCheckbox')); |
---|
11 | options::fadd('Jobs', 'ajcron_jobs', 'textarea:cols:60'); |
---|