1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-14 02:24:08 +02:00

Additional user admin perms, cron-categories added.

This commit is contained in:
CaMer0n
2011-05-11 22:25:02 +00:00
parent 414acedafc
commit b33f03d327
9 changed files with 95 additions and 35 deletions

View File

@@ -58,7 +58,12 @@ class pm_cron // include plugin-folder in the name.
public function config()
{
$cron = array();
$cron[] = array('name' => LAN_EC_PM_04, 'function' => 'processPM', 'description' => LAN_EC_PM_05);
$cron[] = array(
'name' => LAN_EC_PM_04,
'category' => 'log',
'function' => 'processPM',
'description' => LAN_EC_PM_05
);
return $cron;
}