Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | public function __construct() |
||
33 | { |
||
34 | $this->initVar('step_id', \XOBJ_DTYPE_INT); |
||
35 | |||
36 | $this->initVar('step_name', \XOBJ_DTYPE_TXTBOX); |
||
37 | |||
38 | $this->initVar('step_desc', \XOBJ_DTYPE_TXTAREA); |
||
39 | |||
40 | $this->initVar('step_order', \XOBJ_DTYPE_INT, 1); |
||
41 | |||
42 | $this->initVar('step_save', \XOBJ_DTYPE_INT, 0); |
||
43 | } |
||
45 |