1 | <?php |
||
16 | abstract class Base extends Component implements FieldInterface,LabelableInterface |
||
|
|||
17 | { |
||
18 | use Field, Labelable; |
||
19 | |||
20 | /** |
||
21 | * The id that will be given to the generated input DOM element. Defaults to an automatically generated id. |
||
22 | * If you configure this manually, you must make sure it is unique in the document. |
||
23 | * @param $inputId |
||
24 | * @return $this |
||
25 | */ |
||
26 | public function setInputId($inputId){ |
||
29 | |||
30 | /** |
||
31 | * true to mark the field as readOnly in HTML. |
||
32 | * @param $readOnly |
||
33 | * @return $this |
||
34 | */ |
||
35 | public function setReadOnly($readOnly){ |
||
38 | } |