Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 3 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
26 | public function __construct( |
||
27 | RequestHandler $controller = null, |
||
28 | $name = self::DEFAULT_NAME, |
||
29 | FieldList $fields = null, |
||
30 | FieldList $actions = null, |
||
31 | Validator $validator = null |
||
32 | ) { |
||
33 | parent::__construct($controller, $name, $fields, $actions, $validator); |
||
34 | |||
35 | $this->setFormMethod('GET'); |
||
36 | |||
37 | $this->disableSecurityToken(); |
||
38 | } |
||
40 |