| 1 | <?php |
||
| 8 | class Component_slider |
||
| 9 | extends AbstractComponent |
||
|
|
|||
| 10 | implements ValueComponentInterface, |
||
| 11 | DisableableComponentInterface, |
||
| 12 | FilterableComponentInterface |
||
| 13 | { |
||
| 14 | public $component_type = 'slider'; |
||
| 15 | |||
| 16 | public function default_model() |
||
| 32 | |||
| 33 | public function required_arguments() |
||
| 37 | |||
| 38 | public function get_template_path() |
||
| 42 | |||
| 43 | /** |
||
| 44 | * This filter is needed when the form is submitted without $.amarkalUIForm. |
||
| 45 | * When using $.amarkalUIForm to submit the form, the component's getValue/setValue |
||
| 46 | * will handle this. |
||
| 47 | * |
||
| 48 | * @param [string] $v |
||
| 49 | * @return void |
||
| 50 | */ |
||
| 51 | public function filter($v) |
||
| 55 | } |