コード例 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->chmod();
     echo '<br />' . t('Done!') . '<br />';
     echo t('The Jobs Cron is working to complete successfully!');
 }
コード例 #2
0
ファイル: worker.nzb.php プロジェクト: Strikethegod/fanzub
 public function __construct()
 {
     parent::__construct();
     $this->Limits('1024M');
 }
コード例 #3
0
 public function __construct()
 {
     parent::__construct();
     $this->send();
 }
コード例 #4
0
 public function __construct()
 {
     parent::__construct();
     if (!isset(static::$config['beanstalk'])) {
         throw new ErrorException('Beanstalk server not configured');
     }
     $this->beanstalk = Beanstalk::open(static::$config['beanstalk']);
 }