1 | <?php |
||
21 | class ServiceTracker extends Service { |
||
22 | |||
23 | const NAME = 'tracker'; |
||
24 | |||
25 | /** |
||
26 | * Display header for service tracker |
||
27 | * |
||
28 | * @param string $title The title |
||
29 | * @param array $breadcrumbs array of breadcrumbs (array of 'url' => string, 'title' => string) |
||
30 | * @param array $toolbar array of toolbars (array of 'url' => string, 'title' => string) |
||
31 | * |
||
32 | * @return void |
||
33 | */ |
||
34 | public function displayHeader($title, $breadcrumbs, $toolbar, $params = array()) { |
||
35 | $GLOBALS['HTML']->includeCalendarScripts(); |
||
36 | |||
37 | $tracker_manager = new TrackerManager(); |
||
38 | $user_has_special_access = $tracker_manager->userCanAdminAllProjectTrackers(); |
||
39 | |||
40 | $params = $params + array('user_has_special_access' => $user_has_special_access); |
||
41 | $params['service_name'] = self::NAME; |
||
42 | $params['project_id'] = $this->getGroupId(); |
||
43 | |||
44 | parent::displayHeader($title, $breadcrumbs, $toolbar, $params); |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * Duplicate this service from the current project to another |
||
49 | * |
||
50 | * @param int $to_project_id The target paroject Id |
||
51 | * @param array $ugroup_mapping The ugroup mapping |
||
52 | * |
||
53 | * @return void |
||
54 | */ |
||
55 | public function duplicate($to_project_id, $ugroup_mapping) { |
||
59 | |||
60 | /** |
||
61 | * @return TrackerManager |
||
62 | */ |
||
63 | protected function getTrackerManager() { |
||
66 | |||
67 | /** |
||
68 | * Say if the service is allowed for the project |
||
69 | * |
||
70 | * @param Project $project |
||
71 | * |
||
72 | * @return bool |
||
73 | */ |
||
74 | protected function isAllowed($project) { |
||
82 | |||
83 | /** |
||
84 | * Say if the service is restricted |
||
85 | * |
||
86 | * @param Project $project |
||
|
|||
87 | * |
||
88 | * @return bool |
||
89 | */ |
||
90 | public function isRestricted() { |
||
91 | $plugin_manager = PluginManager::instance(); |
||
92 | $p = $plugin_manager->getPluginByName('tracker'); |
||
93 | if ($p && $plugin_manager->isProjectPluginRestricted($p)) { |
||
94 | return true; |
||
95 | } |
||
96 | return false; |
||
97 | } |
||
98 | |||
99 | /** |
||
100 | * Trackers are cloned on project creation |
||
101 | * |
||
102 | * @see Service::isInheritedOnDuplicate() |
||
103 | * |
||
104 | * @return Boolean |
||
105 | */ |
||
106 | public function isInheritedOnDuplicate() { |
||
109 | } |
||
110 | ?> |
||
111 |
This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.
Consider the following example. The parameter
$italy
is not defined by the methodfinale(...)
.The most likely cause is that the parameter was removed, but the annotation was not.