1 | <?php |
||
14 | class TaskManagerModel extends BaseElementModel |
||
15 | { |
||
16 | /** |
||
17 | * Element Type. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $elementType = 'TaskManager'; |
||
22 | |||
23 | /** |
||
24 | * Define attributes. |
||
25 | * |
||
26 | * @return array |
||
27 | */ |
||
28 | 5 | protected function defineAttributes() |
|
41 | |||
42 | /** |
||
43 | * Get title. |
||
44 | */ |
||
45 | 1 | public function getTitle() |
|
49 | |||
50 | /** |
||
51 | * Returns the element's status. |
||
52 | * |
||
53 | * @return string |
||
54 | */ |
||
55 | 4 | public function getStatus() |
|
73 | } |
||
74 |