1 | <?php |
||
17 | class CustomControl |
||
18 | { |
||
19 | /** |
||
20 | * @var string |
||
21 | */ |
||
22 | private $position; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $control; |
||
28 | |||
29 | /** |
||
30 | * @param string $position |
||
31 | * @param string $control |
||
32 | */ |
||
33 | public function __construct($position, $control) |
||
38 | |||
39 | /** |
||
40 | * @return string |
||
41 | */ |
||
42 | public function getPosition() |
||
46 | |||
47 | /** |
||
48 | * @param string $position |
||
49 | */ |
||
50 | public function setPosition($position) |
||
54 | |||
55 | /** |
||
56 | * @return string |
||
57 | */ |
||
58 | public function getControl() |
||
62 | |||
63 | /** |
||
64 | * @param string $control |
||
65 | */ |
||
66 | public function setControl($control) |
||
70 | } |
||
71 |