| 1 | <?php |
||
| 14 | class TaskManagerPlugin extends BasePlugin |
||
| 15 | { |
||
| 16 | /** |
||
| 17 | * Get plugin name. |
||
| 18 | * |
||
| 19 | * @return string |
||
| 20 | */ |
||
| 21 | public function getName() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * Get plugin description. |
||
| 28 | * |
||
| 29 | * @return string |
||
| 30 | */ |
||
| 31 | public function getDescription() |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Get plugin version. |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getVersion() |
||
| 45 | |||
| 46 | /** |
||
| 47 | * Get plugin developer. |
||
| 48 | * |
||
| 49 | * @return string |
||
| 50 | */ |
||
| 51 | public function getDeveloper() |
||
| 55 | |||
| 56 | /** |
||
| 57 | * Get plugin developer url. |
||
| 58 | * |
||
| 59 | * @return string |
||
| 60 | */ |
||
| 61 | public function getDeveloperUrl() |
||
| 65 | |||
| 66 | /** |
||
| 67 | * Get plugin documentation url. |
||
| 68 | * |
||
| 69 | * @return string |
||
| 70 | */ |
||
| 71 | public function getDocumentationUrl() |
||
| 75 | |||
| 76 | /** |
||
| 77 | * Has Control Panel section. |
||
| 78 | * |
||
| 79 | * @return bool |
||
| 80 | */ |
||
| 81 | public function hasCpSection() |
||
| 85 | } |
||
| 86 |