Home
last modified time | relevance | path

Searched +full:timelimit +(+path:plugin +path:batchedit) -(+path:plugin +path:batchedit +path:lang) (Results 1 – 4 of 4) sorted by relevance

/plugin/batchedit/conf/
H A Ddefault.php10 $conf['timelimit'] = 0;
H A Dmetadata.php10 $meta['timelimit'] = array('numeric', '_min' => 0);
/plugin/batchedit/
H A Dadmin.php125 if ($this->getConf('timelimit') > 0) {
126 set_time_limit($this->getConf('timelimit'));
H A Dengine.php996 private $timeLimit; variable in BatcheditEngine
1011 $this->timeLimit = $this->getTimeLimit();
1193 $timeLimit = ini_get('max_execution_time');
1194 $timeLimit -= ceil(min($timeLimit * self::NON_ENGINE_TIME_RATIO, self::NON_ENGINE_TIME_MAX));
1196 return $timeLimit;
1207 return time() - $this->startTime >= $this->timeLimit;