@@ -43,11 +43,11 @@ discard block |
||
43 | 43 | */ |
44 | 44 | public static function getInstance() |
45 | 45 | { |
46 | - if (null === static::$instance) { |
|
47 | - static::$instance = new static(); |
|
48 | - } |
|
46 | + if (null === static::$instance) { |
|
47 | + static::$instance = new static(); |
|
48 | + } |
|
49 | 49 | |
50 | - return static::$instance; |
|
50 | + return static::$instance; |
|
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * @see \MyArtJaub\Webtrees\Hook\HookProviderInterface::get() |
56 | 56 | */ |
57 | 57 | public function get($hook_function, $hook_context = null) { |
58 | - return new Hook($hook_function, $hook_context); |
|
58 | + return new Hook($hook_function, $hook_context); |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | /** |
@@ -73,20 +73,20 @@ discard block |
||
73 | 73 | public function getPossibleHooks() { |
74 | 74 | static $hooks=null; |
75 | 75 | if ($hooks === null) { |
76 | - $hooks = array(); |
|
76 | + $hooks = array(); |
|
77 | 77 | |
78 | - // Cannot use the same logic as the core Module loading, |
|
79 | - // as this forces a new include of the module.php file. |
|
80 | - // This causes issue when classes are defined in this file. |
|
81 | - // Cannot use Module::getActiveModules as well, as this is private. |
|
82 | - $module_names = Database::prepare( |
|
83 | - 'SELECT SQL_CACHE module_name FROM `##module`' |
|
84 | - )->fetchOneColumn(); |
|
78 | + // Cannot use the same logic as the core Module loading, |
|
79 | + // as this forces a new include of the module.php file. |
|
80 | + // This causes issue when classes are defined in this file. |
|
81 | + // Cannot use Module::getActiveModules as well, as this is private. |
|
82 | + $module_names = Database::prepare( |
|
83 | + 'SELECT SQL_CACHE module_name FROM `##module`' |
|
84 | + )->fetchOneColumn(); |
|
85 | 85 | |
86 | - foreach($module_names as $module_name) { |
|
87 | - $module = Module::getModuleByName($module_name); |
|
86 | + foreach($module_names as $module_name) { |
|
87 | + $module = Module::getModuleByName($module_name); |
|
88 | 88 | |
89 | - if($module instanceof HookSubscriberInterface){ |
|
89 | + if($module instanceof HookSubscriberInterface){ |
|
90 | 90 | $subscribedhooks = $module->getSubscribedHooks(); |
91 | 91 | if(is_array($subscribedhooks)){ |
92 | 92 | foreach($subscribedhooks as $key => $value){ |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | } |
112 | 112 | } |
113 | 113 | } |
114 | - } |
|
114 | + } |
|
115 | 115 | } |
116 | 116 | } |
117 | 117 | return $hooks; |
@@ -153,33 +153,33 @@ discard block |
||
153 | 153 | */ |
154 | 154 | public function updateHooks() { |
155 | 155 | |
156 | - if(Auth::isAdmin()){ |
|
157 | - $ihooks = self::getInstalledHooks(); |
|
158 | - $phooks = self::getPossibleHooks(); |
|
156 | + if(Auth::isAdmin()){ |
|
157 | + $ihooks = self::getInstalledHooks(); |
|
158 | + $phooks = self::getPossibleHooks(); |
|
159 | 159 | |
160 | - // Insert hooks not existing yet in the DB |
|
161 | - if($phooks !== null){ |
|
162 | - foreach($phooks as $phook => $priority){ |
|
163 | - $array_hook = explode('#', $phook); |
|
164 | - if($ihooks === null || !array_key_exists($phook, $ihooks)){ |
|
165 | - $chook = new Hook($array_hook[1], $array_hook[2]); |
|
166 | - $chook->subscribe($array_hook[0]); |
|
167 | - $chook->setPriority($array_hook[0], $priority); |
|
168 | - } |
|
169 | - } |
|
170 | - } |
|
160 | + // Insert hooks not existing yet in the DB |
|
161 | + if($phooks !== null){ |
|
162 | + foreach($phooks as $phook => $priority){ |
|
163 | + $array_hook = explode('#', $phook); |
|
164 | + if($ihooks === null || !array_key_exists($phook, $ihooks)){ |
|
165 | + $chook = new Hook($array_hook[1], $array_hook[2]); |
|
166 | + $chook->subscribe($array_hook[0]); |
|
167 | + $chook->setPriority($array_hook[0], $priority); |
|
168 | + } |
|
169 | + } |
|
170 | + } |
|
171 | 171 | |
172 | - //Remove hooks not existing any more in the file system |
|
173 | - if($ihooks !== null){ |
|
174 | - foreach(array_keys($ihooks) as $ihook){ |
|
175 | - $array_hook = explode('#', $ihook); |
|
176 | - if($phooks === null || !array_key_exists($ihook, $phooks)){ |
|
177 | - $chook = new Hook($array_hook[1], $array_hook[2]); |
|
178 | - $chook->remove($array_hook[0]); |
|
179 | - } |
|
180 | - } |
|
181 | - } |
|
182 | - } |
|
172 | + //Remove hooks not existing any more in the file system |
|
173 | + if($ihooks !== null){ |
|
174 | + foreach(array_keys($ihooks) as $ihook){ |
|
175 | + $array_hook = explode('#', $ihook); |
|
176 | + if($phooks === null || !array_key_exists($ihook, $phooks)){ |
|
177 | + $chook = new Hook($array_hook[1], $array_hook[2]); |
|
178 | + $chook->remove($array_hook[0]); |
|
179 | + } |
|
180 | + } |
|
181 | + } |
|
182 | + } |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | } |
186 | 186 | \ No newline at end of file |
@@ -71,7 +71,7 @@ discard block |
||
71 | 71 | * @see \MyArtJaub\Webtrees\Hook\HookProviderInterface::getPossibleHooks() |
72 | 72 | */ |
73 | 73 | public function getPossibleHooks() { |
74 | - static $hooks=null; |
|
74 | + static $hooks = null; |
|
75 | 75 | if ($hooks === null) { |
76 | 76 | $hooks = array(); |
77 | 77 | |
@@ -83,31 +83,31 @@ discard block |
||
83 | 83 | 'SELECT SQL_CACHE module_name FROM `##module`' |
84 | 84 | )->fetchOneColumn(); |
85 | 85 | |
86 | - foreach($module_names as $module_name) { |
|
86 | + foreach ($module_names as $module_name) { |
|
87 | 87 | $module = Module::getModuleByName($module_name); |
88 | 88 | |
89 | - if($module instanceof HookSubscriberInterface){ |
|
89 | + if ($module instanceof HookSubscriberInterface) { |
|
90 | 90 | $subscribedhooks = $module->getSubscribedHooks(); |
91 | - if(is_array($subscribedhooks)){ |
|
92 | - foreach($subscribedhooks as $key => $value){ |
|
93 | - if(is_int($key)) { |
|
91 | + if (is_array($subscribedhooks)) { |
|
92 | + foreach ($subscribedhooks as $key => $value) { |
|
93 | + if (is_int($key)) { |
|
94 | 94 | $hook_item = $value; |
95 | 95 | $priority = self::DEFAULT_PRIORITY; |
96 | 96 | } |
97 | - else{ |
|
97 | + else { |
|
98 | 98 | $hook_item = explode('#', $key, 2); |
99 | 99 | $priority = $value; |
100 | 100 | } |
101 | - if($hook_item && count($hook_item) == 2){ |
|
101 | + if ($hook_item && count($hook_item) == 2) { |
|
102 | 102 | $hook_func = $hook_item[0]; |
103 | 103 | $hook_cont = $hook_item[1]; |
104 | 104 | } |
105 | - else{ |
|
105 | + else { |
|
106 | 106 | $hook_func = $hook_item[0]; |
107 | 107 | $hook_cont = 'all'; |
108 | 108 | } |
109 | - if(method_exists($module, $hook_func)){ |
|
110 | - $hooks[$module->getName().'#'.$hook_func.'#'.$hook_cont]=$priority; |
|
109 | + if (method_exists($module, $hook_func)) { |
|
110 | + $hooks[$module->getName().'#'.$hook_func.'#'.$hook_cont] = $priority; |
|
111 | 111 | } |
112 | 112 | } |
113 | 113 | } |
@@ -121,8 +121,8 @@ discard block |
||
121 | 121 | * {@inheritDoc} |
122 | 122 | * @see \MyArtJaub\Webtrees\Hook\HookProviderInterface::getRawInstalledHooks() |
123 | 123 | */ |
124 | - public function getRawInstalledHooks(){ |
|
125 | - if(self::isModuleOperational()){ |
|
124 | + public function getRawInstalledHooks() { |
|
125 | + if (self::isModuleOperational()) { |
|
126 | 126 | return Database::prepare( |
127 | 127 | "SELECT majh_id AS id, majh_module_name AS module, majh_hook_function AS hook, majh_hook_context as context, majh_module_priority AS priority, majh_status AS status". |
128 | 128 | " FROM `##maj_hooks`". |
@@ -136,11 +136,11 @@ discard block |
||
136 | 136 | * {@inheritDoc} |
137 | 137 | * @see \MyArtJaub\Webtrees\Hook\HookProviderInterface::getInstalledHooks() |
138 | 138 | */ |
139 | - public function getInstalledHooks(){ |
|
140 | - static $installedhooks =null; |
|
141 | - if($installedhooks===null){ |
|
142 | - $dbhooks=self::getRawInstalledHooks(); |
|
143 | - foreach($dbhooks as $dbhook){ |
|
139 | + public function getInstalledHooks() { |
|
140 | + static $installedhooks = null; |
|
141 | + if ($installedhooks === null) { |
|
142 | + $dbhooks = self::getRawInstalledHooks(); |
|
143 | + foreach ($dbhooks as $dbhook) { |
|
144 | 144 | $installedhooks[($dbhook->module).'#'.($dbhook->hook).'#'.($dbhook->context)] = array('id' => $dbhook->id, 'status' => $dbhook->status, 'priority' => $dbhook->priority); |
145 | 145 | } |
146 | 146 | } |
@@ -153,15 +153,15 @@ discard block |
||
153 | 153 | */ |
154 | 154 | public function updateHooks() { |
155 | 155 | |
156 | - if(Auth::isAdmin()){ |
|
156 | + if (Auth::isAdmin()) { |
|
157 | 157 | $ihooks = self::getInstalledHooks(); |
158 | 158 | $phooks = self::getPossibleHooks(); |
159 | 159 | |
160 | 160 | // Insert hooks not existing yet in the DB |
161 | - if($phooks !== null){ |
|
162 | - foreach($phooks as $phook => $priority){ |
|
161 | + if ($phooks !== null) { |
|
162 | + foreach ($phooks as $phook => $priority) { |
|
163 | 163 | $array_hook = explode('#', $phook); |
164 | - if($ihooks === null || !array_key_exists($phook, $ihooks)){ |
|
164 | + if ($ihooks === null || !array_key_exists($phook, $ihooks)) { |
|
165 | 165 | $chook = new Hook($array_hook[1], $array_hook[2]); |
166 | 166 | $chook->subscribe($array_hook[0]); |
167 | 167 | $chook->setPriority($array_hook[0], $priority); |
@@ -170,10 +170,10 @@ discard block |
||
170 | 170 | } |
171 | 171 | |
172 | 172 | //Remove hooks not existing any more in the file system |
173 | - if($ihooks !== null){ |
|
174 | - foreach(array_keys($ihooks) as $ihook){ |
|
173 | + if ($ihooks !== null) { |
|
174 | + foreach (array_keys($ihooks) as $ihook) { |
|
175 | 175 | $array_hook = explode('#', $ihook); |
176 | - if($phooks === null || !array_key_exists($ihook, $phooks)){ |
|
176 | + if ($phooks === null || !array_key_exists($ihook, $phooks)) { |
|
177 | 177 | $chook = new Hook($array_hook[1], $array_hook[2]); |
178 | 178 | $chook->remove($array_hook[0]); |
179 | 179 | } |
@@ -93,16 +93,14 @@ |
||
93 | 93 | if(is_int($key)) { |
94 | 94 | $hook_item = $value; |
95 | 95 | $priority = self::DEFAULT_PRIORITY; |
96 | - } |
|
97 | - else{ |
|
96 | + } else{ |
|
98 | 97 | $hook_item = explode('#', $key, 2); |
99 | 98 | $priority = $value; |
100 | 99 | } |
101 | 100 | if($hook_item && count($hook_item) == 2){ |
102 | 101 | $hook_func = $hook_item[0]; |
103 | 102 | $hook_cont = $hook_item[1]; |
104 | - } |
|
105 | - else{ |
|
103 | + } else{ |
|
106 | 104 | $hook_func = $hook_item[0]; |
107 | 105 | $hook_cont = 'all'; |
108 | 106 | } |
@@ -18,50 +18,50 @@ |
||
18 | 18 | */ |
19 | 19 | class JsonController extends BaseController { |
20 | 20 | |
21 | - /** |
|
22 | - * {@inheritDoc} |
|
23 | - * @see \Fisharebest\Webtrees\Controller\BaseController::pageHeader() |
|
24 | - */ |
|
25 | - public function pageHeader() { |
|
26 | - header('Content-Type: application/json'); |
|
27 | - header('Cache-Control: no-cache, must-revalidate'); |
|
28 | - header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); |
|
29 | - // We've displayed the header - display the footer automatically |
|
30 | - register_shutdown_function(array($this, 'pageFooter')); |
|
21 | + /** |
|
22 | + * {@inheritDoc} |
|
23 | + * @see \Fisharebest\Webtrees\Controller\BaseController::pageHeader() |
|
24 | + */ |
|
25 | + public function pageHeader() { |
|
26 | + header('Content-Type: application/json'); |
|
27 | + header('Cache-Control: no-cache, must-revalidate'); |
|
28 | + header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); |
|
29 | + // We've displayed the header - display the footer automatically |
|
30 | + register_shutdown_function(array($this, 'pageFooter')); |
|
31 | 31 | |
32 | - return $this; |
|
33 | - } |
|
32 | + return $this; |
|
33 | + } |
|
34 | 34 | |
35 | - /** |
|
36 | - * {@inheritDoc} |
|
37 | - * @see \Fisharebest\Webtrees\Controller\BaseController::pageFooter() |
|
38 | - */ |
|
39 | - public function pageFooter() { |
|
40 | - return $this; |
|
41 | - } |
|
35 | + /** |
|
36 | + * {@inheritDoc} |
|
37 | + * @see \Fisharebest\Webtrees\Controller\BaseController::pageFooter() |
|
38 | + */ |
|
39 | + public function pageFooter() { |
|
40 | + return $this; |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * Restrict access. |
|
45 | - * |
|
46 | - * @param bool $condition |
|
47 | - * |
|
48 | - * @return $this |
|
49 | - */ |
|
50 | - public function restrictAccess($condition) { |
|
51 | - if ($condition !== true) { |
|
52 | - throw new MvcException(403); |
|
53 | - } |
|
43 | + /** |
|
44 | + * Restrict access. |
|
45 | + * |
|
46 | + * @param bool $condition |
|
47 | + * |
|
48 | + * @return $this |
|
49 | + */ |
|
50 | + public function restrictAccess($condition) { |
|
51 | + if ($condition !== true) { |
|
52 | + throw new MvcException(403); |
|
53 | + } |
|
54 | 54 | |
55 | - return $this; |
|
56 | - } |
|
55 | + return $this; |
|
56 | + } |
|
57 | 57 | |
58 | - /** |
|
59 | - * Encode the data to JSON format. |
|
60 | - * |
|
61 | - * @param array $data Data to encode |
|
62 | - * @param number $options JSON options mask. See http://php.net/manual/fr/json.constants.php |
|
63 | - */ |
|
64 | - public function encode(array $data, $options = 0) { |
|
65 | - echo json_encode($data, $options); |
|
66 | - } |
|
58 | + /** |
|
59 | + * Encode the data to JSON format. |
|
60 | + * |
|
61 | + * @param array $data Data to encode |
|
62 | + * @param number $options JSON options mask. See http://php.net/manual/fr/json.constants.php |
|
63 | + */ |
|
64 | + public function encode(array $data, $options = 0) { |
|
65 | + echo json_encode($data, $options); |
|
66 | + } |
|
67 | 67 | } |
@@ -23,74 +23,74 @@ |
||
23 | 23 | */ |
24 | 24 | class PiwikController extends MvcController |
25 | 25 | { |
26 | - /** |
|
27 | - * Retrieve the number of visitors from Piwik, for a given period. |
|
28 | - * |
|
29 | - * @param string $block_id |
|
30 | - * @param string $period |
|
31 | - * @param (null|int) Number of visits |
|
32 | - */ |
|
33 | - private function getNumberOfVisitsPiwik($block_id, $period='year'){ |
|
26 | + /** |
|
27 | + * Retrieve the number of visitors from Piwik, for a given period. |
|
28 | + * |
|
29 | + * @param string $block_id |
|
30 | + * @param string $period |
|
31 | + * @param (null|int) Number of visits |
|
32 | + */ |
|
33 | + private function getNumberOfVisitsPiwik($block_id, $period='year'){ |
|
34 | 34 | |
35 | - $piwik_url = $this->module->getBlockSetting($block_id, 'piwik_url'); |
|
36 | - $piwik_siteid = $this->module->getBlockSetting($block_id, 'piwik_siteid'); |
|
37 | - $piwik_token = $this->module->getBlockSetting($block_id, 'piwik_token'); |
|
35 | + $piwik_url = $this->module->getBlockSetting($block_id, 'piwik_url'); |
|
36 | + $piwik_siteid = $this->module->getBlockSetting($block_id, 'piwik_siteid'); |
|
37 | + $piwik_token = $this->module->getBlockSetting($block_id, 'piwik_token'); |
|
38 | 38 | |
39 | - if($piwik_url && strlen($piwik_url) > 0 && |
|
40 | - $piwik_siteid && strlen($piwik_siteid) > 0 && |
|
41 | - $piwik_token && strlen($piwik_token) |
|
42 | - ) |
|
43 | - { |
|
44 | - // calling Piwik REST API |
|
45 | - $url = $piwik_url; |
|
46 | - $url .= '?module=API&method=VisitsSummary.getVisits'; |
|
47 | - $url .= '&idSite='.$piwik_siteid.'&period='.$period.'&date=today'; |
|
48 | - $url .= '&format=PHP'; |
|
49 | - $url .= '&token_auth='.$piwik_token; |
|
39 | + if($piwik_url && strlen($piwik_url) > 0 && |
|
40 | + $piwik_siteid && strlen($piwik_siteid) > 0 && |
|
41 | + $piwik_token && strlen($piwik_token) |
|
42 | + ) |
|
43 | + { |
|
44 | + // calling Piwik REST API |
|
45 | + $url = $piwik_url; |
|
46 | + $url .= '?module=API&method=VisitsSummary.getVisits'; |
|
47 | + $url .= '&idSite='.$piwik_siteid.'&period='.$period.'&date=today'; |
|
48 | + $url .= '&format=PHP'; |
|
49 | + $url .= '&token_auth='.$piwik_token; |
|
50 | 50 | |
51 | - if($fetched = File::fetchUrl($url)) { |
|
52 | - $content = @unserialize($fetched); |
|
53 | - if(is_numeric($content)) return $content; |
|
54 | - } |
|
55 | - } |
|
51 | + if($fetched = File::fetchUrl($url)) { |
|
52 | + $content = @unserialize($fetched); |
|
53 | + if(is_numeric($content)) return $content; |
|
54 | + } |
|
55 | + } |
|
56 | 56 | |
57 | - return null; |
|
58 | - } |
|
57 | + return null; |
|
58 | + } |
|
59 | 59 | |
60 | - /** |
|
61 | - * Pages |
|
62 | - */ |
|
60 | + /** |
|
61 | + * Pages |
|
62 | + */ |
|
63 | 63 | |
64 | - /** |
|
65 | - * Piwik@index |
|
66 | - */ |
|
67 | - public function index() { |
|
64 | + /** |
|
65 | + * Piwik@index |
|
66 | + */ |
|
67 | + public function index() { |
|
68 | 68 | |
69 | - $ctrl = new AjaxController(); |
|
69 | + $ctrl = new AjaxController(); |
|
70 | 70 | |
71 | - $data = new ViewBag(); |
|
72 | - $data->set('has_stats', false); |
|
71 | + $data = new ViewBag(); |
|
72 | + $data->set('has_stats', false); |
|
73 | 73 | |
74 | - $block_id = Filter::get('block_id'); |
|
75 | - if($block_id){ |
|
76 | - $cached_item = Cache::get('piwikCountYear', $this->module); |
|
77 | - $visitCountYear = $cached_item->get(); |
|
78 | - if(!$cached_item->isHit()) { |
|
79 | - $visitCountYear = $this->getNumberOfVisitsPiwik($block_id); |
|
80 | - Cache::save($cached_item, $visitCountYear); |
|
81 | - } |
|
74 | + $block_id = Filter::get('block_id'); |
|
75 | + if($block_id){ |
|
76 | + $cached_item = Cache::get('piwikCountYear', $this->module); |
|
77 | + $visitCountYear = $cached_item->get(); |
|
78 | + if(!$cached_item->isHit()) { |
|
79 | + $visitCountYear = $this->getNumberOfVisitsPiwik($block_id); |
|
80 | + Cache::save($cached_item, $visitCountYear); |
|
81 | + } |
|
82 | 82 | |
83 | - if($visitCountYear){ |
|
84 | - $visitCountToday = max(0, $this->getNumberOfVisitsPiwik($block_id, 'day')); |
|
85 | - $visitCountYear = max( 0, $visitCountYear); |
|
83 | + if($visitCountYear){ |
|
84 | + $visitCountToday = max(0, $this->getNumberOfVisitsPiwik($block_id, 'day')); |
|
85 | + $visitCountYear = max( 0, $visitCountYear); |
|
86 | 86 | |
87 | - $data->set('has_stats', true); |
|
88 | - $data->set('visits_today', $visitCountToday); |
|
89 | - $data->set('visits_year', $visitCountYear + $visitCountToday); |
|
90 | - } |
|
91 | - } |
|
87 | + $data->set('has_stats', true); |
|
88 | + $data->set('visits_today', $visitCountToday); |
|
89 | + $data->set('visits_year', $visitCountYear + $visitCountToday); |
|
90 | + } |
|
91 | + } |
|
92 | 92 | |
93 | - ViewFactory::make('PiwikStats', $this, $ctrl, $data)->render(); |
|
94 | - } |
|
93 | + ViewFactory::make('PiwikStats', $this, $ctrl, $data)->render(); |
|
94 | + } |
|
95 | 95 | |
96 | 96 | } |
97 | 97 | \ No newline at end of file |
@@ -30,14 +30,14 @@ discard block |
||
30 | 30 | * @param string $period |
31 | 31 | * @param (null|int) Number of visits |
32 | 32 | */ |
33 | - private function getNumberOfVisitsPiwik($block_id, $period='year'){ |
|
33 | + private function getNumberOfVisitsPiwik($block_id, $period = 'year') { |
|
34 | 34 | |
35 | 35 | $piwik_url = $this->module->getBlockSetting($block_id, 'piwik_url'); |
36 | 36 | $piwik_siteid = $this->module->getBlockSetting($block_id, 'piwik_siteid'); |
37 | 37 | $piwik_token = $this->module->getBlockSetting($block_id, 'piwik_token'); |
38 | 38 | |
39 | - if($piwik_url && strlen($piwik_url) > 0 && |
|
40 | - $piwik_siteid && strlen($piwik_siteid) > 0 && |
|
39 | + if ($piwik_url && strlen($piwik_url) > 0 && |
|
40 | + $piwik_siteid && strlen($piwik_siteid) > 0 && |
|
41 | 41 | $piwik_token && strlen($piwik_token) |
42 | 42 | ) |
43 | 43 | { |
@@ -48,9 +48,9 @@ discard block |
||
48 | 48 | $url .= '&format=PHP'; |
49 | 49 | $url .= '&token_auth='.$piwik_token; |
50 | 50 | |
51 | - if($fetched = File::fetchUrl($url)) { |
|
51 | + if ($fetched = File::fetchUrl($url)) { |
|
52 | 52 | $content = @unserialize($fetched); |
53 | - if(is_numeric($content)) return $content; |
|
53 | + if (is_numeric($content)) return $content; |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -72,17 +72,17 @@ discard block |
||
72 | 72 | $data->set('has_stats', false); |
73 | 73 | |
74 | 74 | $block_id = Filter::get('block_id'); |
75 | - if($block_id){ |
|
75 | + if ($block_id) { |
|
76 | 76 | $cached_item = Cache::get('piwikCountYear', $this->module); |
77 | 77 | $visitCountYear = $cached_item->get(); |
78 | - if(!$cached_item->isHit()) { |
|
78 | + if (!$cached_item->isHit()) { |
|
79 | 79 | $visitCountYear = $this->getNumberOfVisitsPiwik($block_id); |
80 | 80 | Cache::save($cached_item, $visitCountYear); |
81 | 81 | } |
82 | 82 | |
83 | - if($visitCountYear){ |
|
83 | + if ($visitCountYear) { |
|
84 | 84 | $visitCountToday = max(0, $this->getNumberOfVisitsPiwik($block_id, 'day')); |
85 | - $visitCountYear = max( 0, $visitCountYear); |
|
85 | + $visitCountYear = max(0, $visitCountYear); |
|
86 | 86 | |
87 | 87 | $data->set('has_stats', true); |
88 | 88 | $data->set('visits_today', $visitCountToday); |
@@ -50,7 +50,9 @@ |
||
50 | 50 | |
51 | 51 | if($fetched = File::fetchUrl($url)) { |
52 | 52 | $content = @unserialize($fetched); |
53 | - if(is_numeric($content)) return $content; |
|
53 | + if(is_numeric($content)) { |
|
54 | + return $content; |
|
55 | + } |
|
54 | 56 | } |
55 | 57 | } |
56 | 58 |
@@ -17,27 +17,27 @@ |
||
17 | 17 | */ |
18 | 18 | class FunctionsPrintLists { |
19 | 19 | |
20 | - /** |
|
21 | - * Copy of core function, which is not public. |
|
22 | - * |
|
23 | - * @param Individual $individual |
|
24 | - * |
|
25 | - * @return string[] |
|
26 | - * @see \Fisharebest\Webtrees\Functions\FunctionsPrintLists |
|
27 | - */ |
|
28 | - public static function sortableNames(Individual $individual) { |
|
29 | - $names = $individual->getAllNames(); |
|
30 | - $primary = $individual->getPrimaryName(); |
|
20 | + /** |
|
21 | + * Copy of core function, which is not public. |
|
22 | + * |
|
23 | + * @param Individual $individual |
|
24 | + * |
|
25 | + * @return string[] |
|
26 | + * @see \Fisharebest\Webtrees\Functions\FunctionsPrintLists |
|
27 | + */ |
|
28 | + public static function sortableNames(Individual $individual) { |
|
29 | + $names = $individual->getAllNames(); |
|
30 | + $primary = $individual->getPrimaryName(); |
|
31 | 31 | |
32 | - list($surn, $givn) = explode(',', $names[$primary]['sort']); |
|
32 | + list($surn, $givn) = explode(',', $names[$primary]['sort']); |
|
33 | 33 | |
34 | - $givn = str_replace('@P.N.', 'AAAA', $givn); |
|
35 | - $surn = str_replace('@N.N.', 'AAAA', $surn); |
|
34 | + $givn = str_replace('@P.N.', 'AAAA', $givn); |
|
35 | + $surn = str_replace('@N.N.', 'AAAA', $surn); |
|
36 | 36 | |
37 | - return array( |
|
38 | - $surn . 'AAAA' . $givn, |
|
39 | - $givn . 'AAAA' . $surn, |
|
40 | - ); |
|
41 | - } |
|
37 | + return array( |
|
38 | + $surn . 'AAAA' . $givn, |
|
39 | + $givn . 'AAAA' . $surn, |
|
40 | + ); |
|
41 | + } |
|
42 | 42 | |
43 | 43 | } |
44 | 44 | \ No newline at end of file |
@@ -35,8 +35,8 @@ |
||
35 | 35 | $surn = str_replace('@N.N.', 'AAAA', $surn); |
36 | 36 | |
37 | 37 | return array( |
38 | - $surn . 'AAAA' . $givn, |
|
39 | - $givn . 'AAAA' . $surn, |
|
38 | + $surn.'AAAA'.$givn, |
|
39 | + $givn.'AAAA'.$surn, |
|
40 | 40 | ); |
41 | 41 | } |
42 | 42 |
@@ -31,11 +31,11 @@ discard block |
||
31 | 31 | * {@inhericDoc} |
32 | 32 | * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent() |
33 | 33 | */ |
34 | - protected function renderContent() { |
|
34 | + protected function renderContent() { |
|
35 | 35 | |
36 | - if($this->data->get('has_sosa', false)) { |
|
37 | - $table_id = $this->data->get('table_id'); |
|
38 | - ?> |
|
36 | + if($this->data->get('has_sosa', false)) { |
|
37 | + $table_id = $this->data->get('table_id'); |
|
38 | + ?> |
|
39 | 39 | |
40 | 40 | <div id="sosa-indi-list" class="sosa-list"> |
41 | 41 | <table id="<?= $table_id ?>"> |
@@ -177,62 +177,62 @@ discard block |
||
177 | 177 | <tbody> |
178 | 178 | |
179 | 179 | <?php foreach($this->data->get('sosa_list') as $sosa => $person) { |
180 | - /** @var \Fisharebest\Webtrees\Individual $person */ |
|
181 | - if ($person->isPendingAddtion()) { |
|
182 | - $class = ' class="new"'; |
|
183 | - } elseif ($person->isPendingDeletion()) { |
|
184 | - $class = ' class="old"'; |
|
185 | - } else { |
|
186 | - $class = ''; |
|
187 | - } |
|
188 | - $dperson = new \MyArtJaub\Webtrees\Individual($person); |
|
189 | - ?> |
|
180 | + /** @var \Fisharebest\Webtrees\Individual $person */ |
|
181 | + if ($person->isPendingAddtion()) { |
|
182 | + $class = ' class="new"'; |
|
183 | + } elseif ($person->isPendingDeletion()) { |
|
184 | + $class = ' class="old"'; |
|
185 | + } else { |
|
186 | + $class = ''; |
|
187 | + } |
|
188 | + $dperson = new \MyArtJaub\Webtrees\Individual($person); |
|
189 | + ?> |
|
190 | 190 | <tr <?= $class ?>> |
191 | 191 | <td class="transparent"><?= $sosa ?></td> |
192 | 192 | <td hidden><?= $person->getXref() ?></td> |
193 | 193 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?> |
194 | 194 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
195 | 195 | <?php foreach ($person->getAllNames() as $num=>$name) { |
196 | - if ($name['type']=='NAME') { |
|
197 | - $title=''; |
|
198 | - } else { |
|
199 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
200 | - } |
|
201 | - if ($num==$person->getPrimaryName()) { |
|
202 | - $class=' class="name2"'; |
|
203 | - $sex_image=$person->getSexImage(); |
|
204 | - } else { |
|
205 | - $class=''; |
|
206 | - $sex_image=''; |
|
207 | - } ?> |
|
196 | + if ($name['type']=='NAME') { |
|
197 | + $title=''; |
|
198 | + } else { |
|
199 | + $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
200 | + } |
|
201 | + if ($num==$person->getPrimaryName()) { |
|
202 | + $class=' class="name2"'; |
|
203 | + $sex_image=$person->getSexImage(); |
|
204 | + } else { |
|
205 | + $class=''; |
|
206 | + $sex_image=''; |
|
207 | + } ?> |
|
208 | 208 | <a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>"> |
209 | 209 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
210 | 210 | </a> |
211 | 211 | <?= $sex_image.FunctionsPrint::formatSosaNumbers($dperson->getSosaNumbers(), 1, 'smaller') ?> |
212 | 212 | <br/> |
213 | 213 | <?php } |
214 | - echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
215 | - ?> |
|
214 | + echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
215 | + ?> |
|
216 | 216 | </td> |
217 | 217 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
218 | 218 | <?php $birth_dates = $person->getAllBirthDates(); ?> |
219 | 219 | <td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>"> |
220 | 220 | <?php foreach ($birth_dates as $n => $birth_date) { |
221 | - if ($n > 0) { ?><br/><?php } ?> |
|
221 | + if ($n > 0) { ?><br/><?php } ?> |
|
222 | 222 | <?php echo $birth_date->display(true); |
223 | - } ?> |
|
223 | + } ?> |
|
224 | 224 | </td> |
225 | 225 | <td> |
226 | 226 | <?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) { |
227 | - $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
228 | - if ($n > 0) { ?><br><?php } ?> |
|
227 | + $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
228 | + if ($n > 0) { ?><br><?php } ?> |
|
229 | 229 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
230 | 230 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
231 | 231 | </a> |
232 | 232 | <?php } ?> |
233 | 233 | </td> |
234 | 234 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
235 | - $isBSourced = $dperson->isBirthSourced(); ?> |
|
235 | + $isBSourced = $dperson->isBirthSourced(); ?> |
|
236 | 236 | <td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td> |
237 | 237 | <?php } else { ?> |
238 | 238 | <td> </td> |
@@ -240,63 +240,63 @@ discard block |
||
240 | 240 | <?php $death_dates = $person->getAllDeathDates(); ?> |
241 | 241 | <td data-sort="<?= $person->getEstimatedDeathDate()->julianDay() ?>"> |
242 | 242 | <?php foreach ($death_dates as $num => $death_date) { |
243 | - if ($num) { ?><br/><?php } ?> |
|
243 | + if ($num) { ?><br/><?php } ?> |
|
244 | 244 | <?php echo $death_date->display(true); |
245 | - } ?> |
|
245 | + } ?> |
|
246 | 246 | </td> |
247 | 247 | <?php if (isset($birth_dates[0]) && isset($death_dates[0])) { |
248 | - $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
249 | - $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
250 | - } else { |
|
251 | - $age_at_death = ''; |
|
252 | - $age_at_death_sort = PHP_INT_MAX; |
|
253 | - } ?> |
|
248 | + $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
249 | + $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
250 | + } else { |
|
251 | + $age_at_death = ''; |
|
252 | + $age_at_death_sort = PHP_INT_MAX; |
|
253 | + } ?> |
|
254 | 254 | <td class="center" data-sort="<?= $age_at_death_sort ?>"><?= $age_at_death ?></td> |
255 | 255 | <td> |
256 | 256 | <?php foreach ($person->getAllDeathPlaces() as $n => $death_place) { |
257 | - $tmp = new Place($death_place, $person->getTree()); |
|
258 | - if ($n) { ?><br><?php } ?> |
|
257 | + $tmp = new Place($death_place, $person->getTree()); |
|
258 | + if ($n) { ?><br><?php } ?> |
|
259 | 259 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
260 | 260 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
261 | 261 | </a> |
262 | 262 | <?php } ?> |
263 | 263 | </td> |
264 | 264 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
265 | - if($person->isDead()) { |
|
266 | - $isDSourced = $dperson->isDeathSourced(); ?> |
|
265 | + if($person->isDead()) { |
|
266 | + $isDSourced = $dperson->isDeathSourced(); ?> |
|
267 | 267 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
268 | 268 | <?php } else { ?> |
269 | 269 | <td data-sort="-99"> </td> |
270 | 270 | <?php } |
271 | - } else { ?> |
|
271 | + } else { ?> |
|
272 | 272 | <td> </td> |
273 | 273 | <?php } ?> |
274 | 274 | <td hidden><?= $person->getSex() ?></td> |
275 | 275 | <td hidden> |
276 | 276 | <?php if (!$person->canShow() || Date::compare($person->getEstimatedBirthDate(), new Date(date('Y') - 100)) > 0) { |
277 | - echo 'Y100'; |
|
278 | - } else { |
|
279 | - echo 'YES'; |
|
280 | - } ?> |
|
277 | + echo 'Y100'; |
|
278 | + } else { |
|
279 | + echo 'YES'; |
|
280 | + } ?> |
|
281 | 281 | </td> |
282 | 282 | <td hidden> |
283 | 283 | <?php if (isset($death_dates[0]) && Date::compare($death_dates[0], new Date(date('Y') - 100)) > 0) { |
284 | - echo 'Y100'; |
|
285 | - } elseif ($person->isDead()) { |
|
286 | - echo 'YES'; |
|
287 | - } else { |
|
288 | - echo 'N'; |
|
289 | - } ?> |
|
284 | + echo 'Y100'; |
|
285 | + } elseif ($person->isDead()) { |
|
286 | + echo 'YES'; |
|
287 | + } else { |
|
288 | + echo 'N'; |
|
289 | + } ?> |
|
290 | 290 | </td> |
291 | 291 | <td hidden> |
292 | 292 | <?php if (!$person->getChildFamilies()) { |
293 | - echo 'R'; |
|
293 | + echo 'R'; |
|
294 | 294 | } // roots |
295 | 295 | elseif (!$person->isDead() && $person->getNumberOfChildren() < 1) { |
296 | - echo 'L'; |
|
296 | + echo 'L'; |
|
297 | 297 | } // leaves |
298 | 298 | else { |
299 | - echo ' '; |
|
299 | + echo ' '; |
|
300 | 300 | } ?> |
301 | 301 | </td> |
302 | 302 | </tr> |
@@ -307,12 +307,12 @@ discard block |
||
307 | 307 | <th class="ui-state-default" colspan="15"> |
308 | 308 | <div class="center"> |
309 | 309 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
310 | - I18N::number($this->data->get('sosa_count')), |
|
311 | - I18N::number($this->data->get('sosa_theo')), |
|
312 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
313 | - ) ?> |
|
310 | + I18N::number($this->data->get('sosa_count')), |
|
311 | + I18N::number($this->data->get('sosa_theo')), |
|
312 | + I18N::percentage($this->data->get('sosa_ratio'),2) |
|
313 | + ) ?> |
|
314 | 314 | <?php if($this->data->get('sosa_hidden') > 0) { |
315 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
315 | + echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
316 | 316 | } ?> |
317 | 317 | </div> |
318 | 318 | </th> |
@@ -346,8 +346,8 @@ discard block |
||
346 | 346 | </div> |
347 | 347 | </div> |
348 | 348 | <?php |
349 | - } |
|
350 | - } |
|
349 | + } |
|
350 | + } |
|
351 | 351 | |
352 | 352 | } |
353 | 353 | |
354 | 354 | \ No newline at end of file |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | */ |
34 | 34 | protected function renderContent() { |
35 | 35 | |
36 | - if($this->data->get('has_sosa', false)) { |
|
36 | + if ($this->data->get('has_sosa', false)) { |
|
37 | 37 | $table_id = $this->data->get('table_id'); |
38 | 38 | ?> |
39 | 39 | |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | </thead> |
177 | 177 | <tbody> |
178 | 178 | |
179 | - <?php foreach($this->data->get('sosa_list') as $sosa => $person) { |
|
179 | + <?php foreach ($this->data->get('sosa_list') as $sosa => $person) { |
|
180 | 180 | /** @var \Fisharebest\Webtrees\Individual $person */ |
181 | 181 | if ($person->isPendingAddtion()) { |
182 | 182 | $class = ' class="new"'; |
@@ -193,17 +193,17 @@ discard block |
||
193 | 193 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?> |
194 | 194 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
195 | 195 | <?php foreach ($person->getAllNames() as $num=>$name) { |
196 | - if ($name['type']=='NAME') { |
|
197 | - $title=''; |
|
196 | + if ($name['type'] == 'NAME') { |
|
197 | + $title = ''; |
|
198 | 198 | } else { |
199 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
199 | + $title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
200 | 200 | } |
201 | - if ($num==$person->getPrimaryName()) { |
|
202 | - $class=' class="name2"'; |
|
203 | - $sex_image=$person->getSexImage(); |
|
201 | + if ($num == $person->getPrimaryName()) { |
|
202 | + $class = ' class="name2"'; |
|
203 | + $sex_image = $person->getSexImage(); |
|
204 | 204 | } else { |
205 | - $class=''; |
|
206 | - $sex_image=''; |
|
205 | + $class = ''; |
|
206 | + $sex_image = ''; |
|
207 | 207 | } ?> |
208 | 208 | <a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>"> |
209 | 209 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
@@ -262,7 +262,7 @@ discard block |
||
262 | 262 | <?php } ?> |
263 | 263 | </td> |
264 | 264 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
265 | - if($person->isDead()) { |
|
265 | + if ($person->isDead()) { |
|
266 | 266 | $isDSourced = $dperson->isDeathSourced(); ?> |
267 | 267 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
268 | 268 | <?php } else { ?> |
@@ -309,10 +309,10 @@ discard block |
||
309 | 309 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
310 | 310 | I18N::number($this->data->get('sosa_count')), |
311 | 311 | I18N::number($this->data->get('sosa_theo')), |
312 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
312 | + I18N::percentage($this->data->get('sosa_ratio'), 2) |
|
313 | 313 | ) ?> |
314 | - <?php if($this->data->get('sosa_hidden') > 0) { |
|
315 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
314 | + <?php if ($this->data->get('sosa_hidden') > 0) { |
|
315 | + echo '['.I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
316 | 316 | } ?> |
317 | 317 | </div> |
318 | 318 | </th> |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | <button type="button" class="ui-state-default btn-toggle-parents"> |
325 | 325 | <?= I18N::translate('Show parents') ?> |
326 | 326 | </button> |
327 | - <button id="btn-toggle-statistics-<?php echo $table_id ;?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
327 | + <button id="btn-toggle-statistics-<?php echo $table_id; ?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
328 | 328 | <?= I18N::translate('Show statistics charts') ?> |
329 | 329 | </button> |
330 | 330 | </div> |