| Total Complexity | 7 |
| Total Lines | 49 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 18 | class Submit extends Field |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * Label to apply to the button when the form is processing the request. e.g. submitting the form |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | public $submittingLabel = 'Submitting...'; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @inheritdoc |
||
| 28 | */ |
||
| 29 | public function getProperties() |
||
| 32 | } |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @inheritdoc |
||
| 36 | */ |
||
| 37 | public function registerScripts($view) |
||
| 38 | { |
||
| 39 | ElAsset::register($view); |
||
| 40 | } |
||
| 41 | |||
| 42 | /** |
||
| 43 | * @inheritdoc |
||
| 44 | */ |
||
| 45 | public function setValueFromDb($value) |
||
| 46 | { |
||
| 47 | parent::setValueFromDb(false); |
||
| 48 | } |
||
| 49 | |||
| 50 | /** |
||
| 51 | * @inheritdoc |
||
| 52 | */ |
||
| 53 | public function setValue($value) |
||
| 58 | } |
||
| 59 | |||
| 60 | /** |
||
| 61 | * @inheritdoc |
||
| 62 | */ |
||
| 63 | public function getComponentDetails() |
||
| 69 | } |