Bitrix-D7 23.9
 
Загрузка...
Поиск...
Не найдено
batch.php
1<?php
2
3
5
6
7class Batch extends Base
8{
9 const HALT_DESABLE = 0;
10 const CMD_PAGE = 'batch';
11
12 public function __construct()
13 {
14 parent::__construct();
15 $this->page = static::CMD_PAGE;
16 }
17
18 public function fill()
19 {
20 $this->query->set('halt', static::HALT_DESABLE);
21 return $this;
22 }
23}