| Conditions | 1 |
| Paths | 1 |
| Total Lines | 21 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function init() |
||
| 38 | { |
||
| 39 | $this->setName('jobs-form-html'); |
||
| 40 | $this->setAttributes( |
||
| 41 | [ |
||
| 42 | 'id' => 'jobs-form-html', |
||
| 43 | 'data-handle-by' => 'yk-form' |
||
| 44 | ] |
||
| 45 | ); |
||
| 46 | |||
| 47 | $this->add( |
||
| 48 | [ |
||
| 49 | 'type' => 'Textarea', |
||
| 50 | 'name' => 'description-html', |
||
| 51 | 'options' => [ |
||
| 52 | 'placeholder' => /*@translate*/ 'Enter pure html code here', |
||
| 53 | ], |
||
| 54 | 'attributes' => ['style' => 'width:100%;height:100%;',] |
||
| 55 | ] |
||
| 56 | ); |
||
| 57 | } |
||
| 58 | |||
| 61 |