1 | <?php |
||
5 | class ActionConfirmation |
||
6 | { |
||
7 | /** |
||
8 | * The required title for the pop up window. |
||
9 | * |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $title; |
||
13 | |||
14 | /** |
||
15 | * The required description. |
||
16 | * |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $text; |
||
20 | |||
21 | /** |
||
22 | * The text label for the OK button. |
||
23 | * |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $okText; |
||
27 | |||
28 | /** |
||
29 | * The text label for the Cancel button. |
||
30 | * |
||
31 | * @var string |
||
32 | */ |
||
33 | protected $dismissText; |
||
34 | |||
35 | /** |
||
36 | * Instantiate a new ActionConfirmation. |
||
37 | * |
||
38 | * @param array $attributes |
||
39 | * @return void |
||
|
|||
40 | */ |
||
41 | public function __construct(array $attributes) |
||
59 | |||
60 | /** |
||
61 | * @return string |
||
62 | */ |
||
63 | public function getTitle() |
||
67 | |||
68 | /** |
||
69 | * @param string $title |
||
70 | * @return ActionConfirmation |
||
71 | */ |
||
72 | public function setTitle($title) |
||
78 | |||
79 | /** |
||
80 | * @return string |
||
81 | */ |
||
82 | public function getText() |
||
86 | |||
87 | /** |
||
88 | * @param string $text |
||
89 | * @return ActionConfirmation |
||
90 | */ |
||
91 | public function setText($text) |
||
97 | |||
98 | /** |
||
99 | * @return string |
||
100 | */ |
||
101 | public function getOkText() |
||
105 | |||
106 | /** |
||
107 | * @param string $okText |
||
108 | * @return ActionConfirmation |
||
109 | */ |
||
110 | public function setOkText($okText) |
||
116 | |||
117 | /** |
||
118 | * @return string |
||
119 | */ |
||
120 | public function getDismissText() |
||
124 | |||
125 | /** |
||
126 | * @param string $dismissText |
||
127 | * @return ActionConfirmation |
||
128 | */ |
||
129 | public function setDismissText($dismissText) |
||
135 | |||
136 | /** |
||
137 | * Get the array representation of this action confirmation. |
||
138 | * |
||
139 | * @return array |
||
140 | */ |
||
141 | public function toArray() |
||
150 | } |
||
151 |
Adding a
@return
annotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.