%PDF- %PDF-
| Direktori : /home/vacivi36/www2]/suporte/include/cli/modules/ |
| Current File : /home/vacivi36/www2]/suporte/include/cli/modules/cron.php |
<?php
class CronManager extends Module {
var $prologue = 'CLI cron manager for osTicket';
var $arguments = array(
'action' => array(
'help' => 'Action to be performed',
'options' => array(
'fetch' => 'Fetch email',
'search' => 'Build search index'
),
),
);
function run($args, $options) {
Bootstrap::connect();
$ost = osTicket::start();
switch (strtolower($args[0])) {
case 'fetch':
Cron::MailFetcher();
break;
case 'search':
$ost->searcher->backend->IndexOldStuff();
break;
}
}
}
Module::register('cron', 'CronManager');
?>