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() |
||
31 | |||
32 | public function required_arguments() |
||
36 | |||
37 | public function get_template_path() |
||
41 | |||
42 | /** |
||
43 | * This filter is needed when the form is submitted without $.amarkalUIForm. |
||
44 | * When using $.amarkalUIForm to submit the form, the component's getValue/setValue |
||
45 | * will handle this. |
||
46 | * |
||
47 | * @param [string] $v |
||
48 | * @return void |
||
49 | */ |
||
50 | public function filter($v) |
||
54 | } |