1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-17 20:58:30 +01:00

first changes on lan_cron.php and cron.php

This commit is contained in:
Moc 2012-08-16 11:33:08 +00:00
parent 02e7205651
commit 3a85de6b3d
2 changed files with 9 additions and 2 deletions

View File

@ -46,8 +46,8 @@ class cron_admin extends e_admin_dispatcher
protected $adminMenu = array(
'main/list' => array('caption'=> 'Manage', 'perm' => '0'),
'main/refresh' => array('caption'=> "Refresh", 'perm' => '0','url'=>'cron.php'),
'main/list' => array('caption'=> LAN_CRON_M_01, 'perm' => '0'),
'main/refresh' => array('caption'=> LAN_CRON_M_02, 'perm' => '0','url'=>'cron.php'),
// 'main/prefs' => array('caption'=> 'Settings', 'perm' => '0'),
// 'main/custom' => array('caption'=> 'Custom Page', 'perm' => '0')
);

View File

@ -11,6 +11,13 @@
*/
if (!defined("PAGE_NAME")) { define("PAGE_NAME", "Schedule Tasks"); }
// Menu
define("LAN_CRON_M_01", "Manage");
define("LAN_CRON_M_02", "Refresh");
define("LAN_CRON_1", "Name");
define("LAN_CRON_2", "Description");
define("LAN_CRON_3", "Minute(s):");