public function __construct()
 {
     parent::__construct();
     $this->chmod();
     echo '<br />' . t('Done!') . '<br />';
     echo t('The Jobs Cron is working to complete successfully!');
 }
Пример #2
0
 public function __construct()
 {
     parent::__construct();
     $this->Limits('1024M');
 }
 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']);
 }