@@ -27,52 +27,52 @@ |
||
27 | 27 | */ |
28 | 28 | class AdminConfigController extends MvcController |
29 | 29 | { |
30 | - /** |
|
31 | - * Manage updates sent from the AdminConfig@index form. |
|
32 | - */ |
|
33 | - protected function update() { |
|
34 | - if(Auth::isAdmin()){ |
|
30 | + /** |
|
31 | + * Manage updates sent from the AdminConfig@index form. |
|
32 | + */ |
|
33 | + protected function update() { |
|
34 | + if(Auth::isAdmin()){ |
|
35 | 35 | |
36 | - $this->module->setSetting('MAJ_TITLE_PREFIX', Filter::post('MAJ_TITLE_PREFIX')); |
|
36 | + $this->module->setSetting('MAJ_TITLE_PREFIX', Filter::post('MAJ_TITLE_PREFIX')); |
|
37 | 37 | |
38 | - $this->module->setSetting('MAJ_ADD_HTML_HEADER', Filter::postInteger('MAJ_ADD_HTML_HEADER', 0, 1)); |
|
39 | - $this->module->setSetting('MAJ_SHOW_HTML_HEADER', Filter::postInteger('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE, Auth::PRIV_PRIVATE, Auth::PRIV_HIDE)); |
|
40 | - $this->module->setSetting('MAJ_HTML_HEADER', Filter::post('MAJ_HTML_HEADER')); |
|
38 | + $this->module->setSetting('MAJ_ADD_HTML_HEADER', Filter::postInteger('MAJ_ADD_HTML_HEADER', 0, 1)); |
|
39 | + $this->module->setSetting('MAJ_SHOW_HTML_HEADER', Filter::postInteger('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE, Auth::PRIV_PRIVATE, Auth::PRIV_HIDE)); |
|
40 | + $this->module->setSetting('MAJ_HTML_HEADER', Filter::post('MAJ_HTML_HEADER')); |
|
41 | 41 | |
42 | - $this->module->setSetting('MAJ_ADD_HTML_FOOTER', Filter::postInteger('MAJ_ADD_HTML_FOOTER', 0, 1)); |
|
43 | - $this->module->setSetting('MAJ_SHOW_HTML_FOOTER', Filter::postInteger('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE, Auth::PRIV_PRIVATE, Auth::PRIV_HIDE)); |
|
44 | - $this->module->setSetting('MAJ_HTML_FOOTER', Filter::post('MAJ_HTML_FOOTER')); |
|
42 | + $this->module->setSetting('MAJ_ADD_HTML_FOOTER', Filter::postInteger('MAJ_ADD_HTML_FOOTER', 0, 1)); |
|
43 | + $this->module->setSetting('MAJ_SHOW_HTML_FOOTER', Filter::postInteger('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE, Auth::PRIV_PRIVATE, Auth::PRIV_HIDE)); |
|
44 | + $this->module->setSetting('MAJ_HTML_FOOTER', Filter::post('MAJ_HTML_FOOTER')); |
|
45 | 45 | |
46 | - $this->module->setSetting('MAJ_DISPLAY_CNIL', Filter::postInteger('MAJ_DISPLAY_CNIL', 0, 1)); |
|
47 | - $this->module->setSetting('MAJ_CNIL_REFERENCE', Filter::post('MAJ_CNIL_REFERENCE')); |
|
46 | + $this->module->setSetting('MAJ_DISPLAY_CNIL', Filter::postInteger('MAJ_DISPLAY_CNIL', 0, 1)); |
|
47 | + $this->module->setSetting('MAJ_CNIL_REFERENCE', Filter::post('MAJ_CNIL_REFERENCE')); |
|
48 | 48 | |
49 | - FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->module->getTitle()), 'success'); |
|
49 | + FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->module->getTitle()), 'success'); |
|
50 | 50 | |
51 | - return; |
|
52 | - } |
|
53 | - } |
|
51 | + return; |
|
52 | + } |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * Pages |
|
57 | - */ |
|
55 | + /** |
|
56 | + * Pages |
|
57 | + */ |
|
58 | 58 | |
59 | - /** |
|
60 | - * AdminConfig@index |
|
61 | - */ |
|
62 | - public function index() { |
|
63 | - $action = Filter::post('action'); |
|
64 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
59 | + /** |
|
60 | + * AdminConfig@index |
|
61 | + */ |
|
62 | + public function index() { |
|
63 | + $action = Filter::post('action'); |
|
64 | + if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
65 | 65 | |
66 | - Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
67 | - $ctrl = new PageController(); |
|
68 | - $ctrl |
|
69 | - ->restrictAccess(Auth::isAdmin()) |
|
70 | - ->setPageTitle($this->module->getTitle()); |
|
66 | + Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
67 | + $ctrl = new PageController(); |
|
68 | + $ctrl |
|
69 | + ->restrictAccess(Auth::isAdmin()) |
|
70 | + ->setPageTitle($this->module->getTitle()); |
|
71 | 71 | |
72 | - $view_bag = new ViewBag(); |
|
73 | - $view_bag->set('title', $ctrl->getPageTitle()); |
|
74 | - $view_bag->set('module', $this->module); |
|
72 | + $view_bag = new ViewBag(); |
|
73 | + $view_bag->set('title', $ctrl->getPageTitle()); |
|
74 | + $view_bag->set('module', $this->module); |
|
75 | 75 | |
76 | - ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
77 | - } |
|
76 | + ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
77 | + } |
|
78 | 78 | } |
79 | 79 | \ No newline at end of file |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | * Manage updates sent from the AdminConfig@index form. |
32 | 32 | */ |
33 | 33 | protected function update() { |
34 | - if(Auth::isAdmin()){ |
|
34 | + if (Auth::isAdmin()) { |
|
35 | 35 | |
36 | 36 | $this->module->setSetting('MAJ_TITLE_PREFIX', Filter::post('MAJ_TITLE_PREFIX')); |
37 | 37 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | */ |
62 | 62 | public function index() { |
63 | 63 | $action = Filter::post('action'); |
64 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
64 | + if ($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
65 | 65 | |
66 | 66 | Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
67 | 67 | $ctrl = new PageController(); |
@@ -61,7 +61,9 @@ |
||
61 | 61 | */ |
62 | 62 | public function index() { |
63 | 63 | $action = Filter::post('action'); |
64 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
64 | + if($action == 'update' && Filter::checkCsrf()) { |
|
65 | + $this->update(); |
|
66 | + } |
|
65 | 67 | |
66 | 68 | Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
67 | 69 | $ctrl = new PageController(); |
@@ -30,63 +30,63 @@ discard block |
||
30 | 30 | */ |
31 | 31 | class SosaConfigController extends MvcController |
32 | 32 | { |
33 | - /** |
|
34 | - * Check if the user can update the sosa ancestors list |
|
35 | - * |
|
36 | - * @return bool |
|
37 | - */ |
|
38 | - protected function canUpdate() { |
|
39 | - $user_id = Filter::postInteger('userid', -1) ?: Filter::getInteger('userid', -1); |
|
40 | - return Auth::check() && |
|
41 | - ( |
|
42 | - $user_id == Auth::user()->getUserId() || // Allow update for yourself |
|
43 | - ($user_id == -1 && Auth::isManager(Globals::getTree())) // Allow a manager to update the default user |
|
44 | - ); |
|
45 | - } |
|
33 | + /** |
|
34 | + * Check if the user can update the sosa ancestors list |
|
35 | + * |
|
36 | + * @return bool |
|
37 | + */ |
|
38 | + protected function canUpdate() { |
|
39 | + $user_id = Filter::postInteger('userid', -1) ?: Filter::getInteger('userid', -1); |
|
40 | + return Auth::check() && |
|
41 | + ( |
|
42 | + $user_id == Auth::user()->getUserId() || // Allow update for yourself |
|
43 | + ($user_id == -1 && Auth::isManager(Globals::getTree())) // Allow a manager to update the default user |
|
44 | + ); |
|
45 | + } |
|
46 | 46 | |
47 | - /** |
|
48 | - * Saves Sosa's user preferences (root individual for the user). |
|
49 | - * |
|
50 | - * @param BaseController $controller |
|
51 | - * @return bool True is saving successfull |
|
52 | - */ |
|
53 | - protected function update(BaseController $controller) { |
|
54 | - $wt_tree = Globals::getTree(); |
|
55 | - if($this->canUpdate() && Filter::checkCsrf()) |
|
56 | - { |
|
57 | - $indi = Individual::getInstance(Filter::post('rootid'), $wt_tree); |
|
58 | - $user = User::find(Filter::postInteger('userid', -1)); |
|
47 | + /** |
|
48 | + * Saves Sosa's user preferences (root individual for the user). |
|
49 | + * |
|
50 | + * @param BaseController $controller |
|
51 | + * @return bool True is saving successfull |
|
52 | + */ |
|
53 | + protected function update(BaseController $controller) { |
|
54 | + $wt_tree = Globals::getTree(); |
|
55 | + if($this->canUpdate() && Filter::checkCsrf()) |
|
56 | + { |
|
57 | + $indi = Individual::getInstance(Filter::post('rootid'), $wt_tree); |
|
58 | + $user = User::find(Filter::postInteger('userid', -1)); |
|
59 | 59 | |
60 | - if($user && $indi) { |
|
61 | - $wt_tree->setUserPreference($user, 'MAJ_SOSA_ROOT_ID', $indi->getXref()); |
|
62 | - $controller->addInlineJavascript(' |
|
60 | + if($user && $indi) { |
|
61 | + $wt_tree->setUserPreference($user, 'MAJ_SOSA_ROOT_ID', $indi->getXref()); |
|
62 | + $controller->addInlineJavascript(' |
|
63 | 63 | $( document ).ready(function() { |
64 | 64 | majComputeSosa('.$user->getUserId().'); |
65 | 65 | });'); |
66 | - FlashMessages::addMessage(I18N::translate('The preferences have been updated.')); |
|
67 | - return true; |
|
68 | - } |
|
69 | - } |
|
70 | - FlashMessages::addMessage(I18N::translate('An error occurred while saving data...'), 'danger'); |
|
71 | - return false; |
|
72 | - } |
|
66 | + FlashMessages::addMessage(I18N::translate('The preferences have been updated.')); |
|
67 | + return true; |
|
68 | + } |
|
69 | + } |
|
70 | + FlashMessages::addMessage(I18N::translate('An error occurred while saving data...'), 'danger'); |
|
71 | + return false; |
|
72 | + } |
|
73 | 73 | |
74 | - /** |
|
75 | - * Pages |
|
76 | - */ |
|
74 | + /** |
|
75 | + * Pages |
|
76 | + */ |
|
77 | 77 | |
78 | - /** |
|
79 | - * SosaConfig@index |
|
80 | - */ |
|
81 | - public function index() { |
|
82 | - $wt_tree = Globals::getTree(); |
|
83 | - $controller = new PageController(); |
|
84 | - $controller |
|
85 | - ->setPageTitle(I18N::translate('Sosa Configuration')) |
|
86 | - ->restrictAccess(Auth::check()) |
|
87 | - ->addExternalJavascript(WT_AUTOCOMPLETE_JS_URL) |
|
88 | - ->addInlineJavascript('autocomplete();') |
|
89 | - ->addInlineJavascript(' |
|
78 | + /** |
|
79 | + * SosaConfig@index |
|
80 | + */ |
|
81 | + public function index() { |
|
82 | + $wt_tree = Globals::getTree(); |
|
83 | + $controller = new PageController(); |
|
84 | + $controller |
|
85 | + ->setPageTitle(I18N::translate('Sosa Configuration')) |
|
86 | + ->restrictAccess(Auth::check()) |
|
87 | + ->addExternalJavascript(WT_AUTOCOMPLETE_JS_URL) |
|
88 | + ->addInlineJavascript('autocomplete();') |
|
89 | + ->addInlineJavascript(' |
|
90 | 90 | $( document ).ready(function() { |
91 | 91 | $("#bt_sosa_compute").click(function() { |
92 | 92 | majComputeSosa($("#maj_sosa_input_userid, #maj-sosa-config-select option:selected").val()); |
@@ -103,80 +103,80 @@ discard block |
||
103 | 103 | }); |
104 | 104 | }'); |
105 | 105 | |
106 | - $action = Filter::post('action'); |
|
107 | - if($action === 'update') $this->update($controller); |
|
106 | + $action = Filter::post('action'); |
|
107 | + if($action === 'update') $this->update($controller); |
|
108 | 108 | |
109 | - $view_bag = new ViewBag(); |
|
110 | - $view_bag->set('title', $controller->getPageTitle()); |
|
111 | - $view_bag->set('tree', $wt_tree); |
|
112 | - $view_bag->set('form_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaConfig&ged='.$wt_tree->getNameUrl()); |
|
109 | + $view_bag = new ViewBag(); |
|
110 | + $view_bag->set('title', $controller->getPageTitle()); |
|
111 | + $view_bag->set('tree', $wt_tree); |
|
112 | + $view_bag->set('form_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaConfig&ged='.$wt_tree->getNameUrl()); |
|
113 | 113 | |
114 | - $users_root = array(); |
|
115 | - $users_js_array = 'var users_array = [];'; |
|
116 | - if(Auth::check()) { |
|
117 | - $root_id = $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID'); |
|
118 | - $users_root[] = array( 'user' => Auth::user(), 'rootid' => $root_id); |
|
119 | - $users_js_array .= 'users_array["'.Auth::user()->getUserId().'"] = "' . $root_id . '";'; |
|
114 | + $users_root = array(); |
|
115 | + $users_js_array = 'var users_array = [];'; |
|
116 | + if(Auth::check()) { |
|
117 | + $root_id = $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID'); |
|
118 | + $users_root[] = array( 'user' => Auth::user(), 'rootid' => $root_id); |
|
119 | + $users_js_array .= 'users_array["'.Auth::user()->getUserId().'"] = "' . $root_id . '";'; |
|
120 | 120 | |
121 | - if(Auth::isManager($wt_tree)) { |
|
122 | - $default_user = User::find(-1); |
|
123 | - $default_root_id = $wt_tree->getUserPreference($default_user, 'MAJ_SOSA_ROOT_ID'); |
|
124 | - $users_root[] = array( 'user' => $default_user, 'rootid' => $default_root_id); |
|
125 | - $users_js_array .= 'users_array["'.$default_user->getUserId().'"] = "' . $default_root_id . '";'; |
|
126 | - } |
|
127 | - } |
|
128 | - $view_bag->set('users_settings', $users_root); |
|
121 | + if(Auth::isManager($wt_tree)) { |
|
122 | + $default_user = User::find(-1); |
|
123 | + $default_root_id = $wt_tree->getUserPreference($default_user, 'MAJ_SOSA_ROOT_ID'); |
|
124 | + $users_root[] = array( 'user' => $default_user, 'rootid' => $default_root_id); |
|
125 | + $users_js_array .= 'users_array["'.$default_user->getUserId().'"] = "' . $default_root_id . '";'; |
|
126 | + } |
|
127 | + } |
|
128 | + $view_bag->set('users_settings', $users_root); |
|
129 | 129 | |
130 | - $controller->addInlineJavascript($users_js_array . ' |
|
130 | + $controller->addInlineJavascript($users_js_array . ' |
|
131 | 131 | $("#maj-sosa-config-select").change(function() { |
132 | 132 | $("#rootid").val(users_array[this.value]); |
133 | 133 | }); |
134 | 134 | '); |
135 | 135 | |
136 | - ViewFactory::make('SosaConfig', $this, $controller, $view_bag)->render(); |
|
137 | - } |
|
136 | + ViewFactory::make('SosaConfig', $this, $controller, $view_bag)->render(); |
|
137 | + } |
|
138 | 138 | |
139 | - /** |
|
140 | - * SosaConfig@computeAll |
|
141 | - */ |
|
142 | - public function computeAll() { |
|
143 | - $controller = new AjaxController(); |
|
144 | - $controller->restrictAccess($this->canUpdate()); |
|
139 | + /** |
|
140 | + * SosaConfig@computeAll |
|
141 | + */ |
|
142 | + public function computeAll() { |
|
143 | + $controller = new AjaxController(); |
|
144 | + $controller->restrictAccess($this->canUpdate()); |
|
145 | 145 | |
146 | - $view_bag = new ViewBag(); |
|
147 | - $view_bag->set('is_success', false); |
|
146 | + $view_bag = new ViewBag(); |
|
147 | + $view_bag->set('is_success', false); |
|
148 | 148 | |
149 | - $user = User::find(Filter::getInteger('userid', -1)); |
|
150 | - if($user) { |
|
151 | - $calculator = new SosaCalculator(Globals::getTree(), $user); |
|
152 | - if($calculator->computeAll()) $view_bag->set('is_success', true); |
|
153 | - } |
|
154 | - ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
|
155 | - } |
|
149 | + $user = User::find(Filter::getInteger('userid', -1)); |
|
150 | + if($user) { |
|
151 | + $calculator = new SosaCalculator(Globals::getTree(), $user); |
|
152 | + if($calculator->computeAll()) $view_bag->set('is_success', true); |
|
153 | + } |
|
154 | + ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
|
155 | + } |
|
156 | 156 | |
157 | - /** |
|
158 | - * SosaConfig@computePartial |
|
159 | - */ |
|
160 | - public function computePartial() { |
|
161 | - $wt_tree = Globals::getTree(); |
|
162 | - $controller = new AjaxController(); |
|
163 | - $controller->restrictAccess($this->canUpdate()); |
|
157 | + /** |
|
158 | + * SosaConfig@computePartial |
|
159 | + */ |
|
160 | + public function computePartial() { |
|
161 | + $wt_tree = Globals::getTree(); |
|
162 | + $controller = new AjaxController(); |
|
163 | + $controller->restrictAccess($this->canUpdate()); |
|
164 | 164 | |
165 | - $view_bag = new ViewBag(); |
|
166 | - $view_bag->set('is_success', false); |
|
165 | + $view_bag = new ViewBag(); |
|
166 | + $view_bag->set('is_success', false); |
|
167 | 167 | |
168 | - $user = User::find(Filter::getInteger('userid', -1)); |
|
169 | - $indi = Individual::getInstance(Filter::get('pid', WT_REGEX_XREF), $wt_tree); |
|
168 | + $user = User::find(Filter::getInteger('userid', -1)); |
|
169 | + $indi = Individual::getInstance(Filter::get('pid', WT_REGEX_XREF), $wt_tree); |
|
170 | 170 | |
171 | - if($user && $indi) { |
|
172 | - $calculator = new SosaCalculator($wt_tree, $user); |
|
173 | - if($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true); |
|
174 | - } |
|
175 | - else { |
|
176 | - $view_bag->set('error', I18N::translate('Non existing individual')); |
|
177 | - } |
|
171 | + if($user && $indi) { |
|
172 | + $calculator = new SosaCalculator($wt_tree, $user); |
|
173 | + if($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true); |
|
174 | + } |
|
175 | + else { |
|
176 | + $view_bag->set('error', I18N::translate('Non existing individual')); |
|
177 | + } |
|
178 | 178 | |
179 | - ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
|
180 | - } |
|
179 | + ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
|
180 | + } |
|
181 | 181 | |
182 | 182 | } |
183 | 183 | \ No newline at end of file |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | $user_id = Filter::postInteger('userid', -1) ?: Filter::getInteger('userid', -1); |
40 | 40 | return Auth::check() && |
41 | 41 | ( |
42 | - $user_id == Auth::user()->getUserId() || // Allow update for yourself |
|
42 | + $user_id == Auth::user()->getUserId() || // Allow update for yourself |
|
43 | 43 | ($user_id == -1 && Auth::isManager(Globals::getTree())) // Allow a manager to update the default user |
44 | 44 | ); |
45 | 45 | } |
@@ -52,12 +52,12 @@ discard block |
||
52 | 52 | */ |
53 | 53 | protected function update(BaseController $controller) { |
54 | 54 | $wt_tree = Globals::getTree(); |
55 | - if($this->canUpdate() && Filter::checkCsrf()) |
|
55 | + if ($this->canUpdate() && Filter::checkCsrf()) |
|
56 | 56 | { |
57 | 57 | $indi = Individual::getInstance(Filter::post('rootid'), $wt_tree); |
58 | 58 | $user = User::find(Filter::postInteger('userid', -1)); |
59 | 59 | |
60 | - if($user && $indi) { |
|
60 | + if ($user && $indi) { |
|
61 | 61 | $wt_tree->setUserPreference($user, 'MAJ_SOSA_ROOT_ID', $indi->getXref()); |
62 | 62 | $controller->addInlineJavascript(' |
63 | 63 | $( document ).ready(function() { |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | |
96 | 96 | function majComputeSosa(user_id) { |
97 | 97 | jQuery("#bt_sosa_compute").prop( "disabled", true ); |
98 | - jQuery("#bt_sosa_computing").empty().html("<i class=\"icon-loading-small\"></i> '. I18N::translate('Computing...') .'"); |
|
98 | + jQuery("#bt_sosa_computing").empty().html("<i class=\"icon-loading-small\"></i> '. I18N::translate('Computing...').'"); |
|
99 | 99 | jQuery("#bt_sosa_computing").load( |
100 | 100 | "module.php?mod='.$this->module->getName().'&mod_action=SosaConfig@computeAll&ged='.$wt_tree->getNameUrl().'&userid=" + user_id, |
101 | 101 | function() { |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | }'); |
105 | 105 | |
106 | 106 | $action = Filter::post('action'); |
107 | - if($action === 'update') $this->update($controller); |
|
107 | + if ($action === 'update') $this->update($controller); |
|
108 | 108 | |
109 | 109 | $view_bag = new ViewBag(); |
110 | 110 | $view_bag->set('title', $controller->getPageTitle()); |
@@ -113,21 +113,21 @@ discard block |
||
113 | 113 | |
114 | 114 | $users_root = array(); |
115 | 115 | $users_js_array = 'var users_array = [];'; |
116 | - if(Auth::check()) { |
|
116 | + if (Auth::check()) { |
|
117 | 117 | $root_id = $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID'); |
118 | - $users_root[] = array( 'user' => Auth::user(), 'rootid' => $root_id); |
|
119 | - $users_js_array .= 'users_array["'.Auth::user()->getUserId().'"] = "' . $root_id . '";'; |
|
118 | + $users_root[] = array('user' => Auth::user(), 'rootid' => $root_id); |
|
119 | + $users_js_array .= 'users_array["'.Auth::user()->getUserId().'"] = "'.$root_id.'";'; |
|
120 | 120 | |
121 | - if(Auth::isManager($wt_tree)) { |
|
121 | + if (Auth::isManager($wt_tree)) { |
|
122 | 122 | $default_user = User::find(-1); |
123 | 123 | $default_root_id = $wt_tree->getUserPreference($default_user, 'MAJ_SOSA_ROOT_ID'); |
124 | - $users_root[] = array( 'user' => $default_user, 'rootid' => $default_root_id); |
|
125 | - $users_js_array .= 'users_array["'.$default_user->getUserId().'"] = "' . $default_root_id . '";'; |
|
124 | + $users_root[] = array('user' => $default_user, 'rootid' => $default_root_id); |
|
125 | + $users_js_array .= 'users_array["'.$default_user->getUserId().'"] = "'.$default_root_id.'";'; |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | $view_bag->set('users_settings', $users_root); |
129 | 129 | |
130 | - $controller->addInlineJavascript($users_js_array . ' |
|
130 | + $controller->addInlineJavascript($users_js_array.' |
|
131 | 131 | $("#maj-sosa-config-select").change(function() { |
132 | 132 | $("#rootid").val(users_array[this.value]); |
133 | 133 | }); |
@@ -147,9 +147,9 @@ discard block |
||
147 | 147 | $view_bag->set('is_success', false); |
148 | 148 | |
149 | 149 | $user = User::find(Filter::getInteger('userid', -1)); |
150 | - if($user) { |
|
150 | + if ($user) { |
|
151 | 151 | $calculator = new SosaCalculator(Globals::getTree(), $user); |
152 | - if($calculator->computeAll()) $view_bag->set('is_success', true); |
|
152 | + if ($calculator->computeAll()) $view_bag->set('is_success', true); |
|
153 | 153 | } |
154 | 154 | ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
155 | 155 | } |
@@ -168,9 +168,9 @@ discard block |
||
168 | 168 | $user = User::find(Filter::getInteger('userid', -1)); |
169 | 169 | $indi = Individual::getInstance(Filter::get('pid', WT_REGEX_XREF), $wt_tree); |
170 | 170 | |
171 | - if($user && $indi) { |
|
171 | + if ($user && $indi) { |
|
172 | 172 | $calculator = new SosaCalculator($wt_tree, $user); |
173 | - if($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true); |
|
173 | + if ($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true); |
|
174 | 174 | } |
175 | 175 | else { |
176 | 176 | $view_bag->set('error', I18N::translate('Non existing individual')); |
@@ -104,7 +104,9 @@ discard block |
||
104 | 104 | }'); |
105 | 105 | |
106 | 106 | $action = Filter::post('action'); |
107 | - if($action === 'update') $this->update($controller); |
|
107 | + if($action === 'update') { |
|
108 | + $this->update($controller); |
|
109 | + } |
|
108 | 110 | |
109 | 111 | $view_bag = new ViewBag(); |
110 | 112 | $view_bag->set('title', $controller->getPageTitle()); |
@@ -149,7 +151,9 @@ discard block |
||
149 | 151 | $user = User::find(Filter::getInteger('userid', -1)); |
150 | 152 | if($user) { |
151 | 153 | $calculator = new SosaCalculator(Globals::getTree(), $user); |
152 | - if($calculator->computeAll()) $view_bag->set('is_success', true); |
|
154 | + if($calculator->computeAll()) { |
|
155 | + $view_bag->set('is_success', true); |
|
156 | + } |
|
153 | 157 | } |
154 | 158 | ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render(); |
155 | 159 | } |
@@ -170,9 +174,10 @@ discard block |
||
170 | 174 | |
171 | 175 | if($user && $indi) { |
172 | 176 | $calculator = new SosaCalculator($wt_tree, $user); |
173 | - if($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true); |
|
174 | - } |
|
175 | - else { |
|
177 | + if($calculator->computeFromIndividual($indi)) { |
|
178 | + $view_bag->set('is_success', true); |
|
179 | + } |
|
180 | + } else { |
|
176 | 181 | $view_bag->set('error', I18N::translate('Non existing individual')); |
177 | 182 | } |
178 | 183 |
@@ -32,116 +32,116 @@ discard block |
||
32 | 32 | * Sosa Module. |
33 | 33 | */ |
34 | 34 | class SosaModule |
35 | - extends AbstractModule |
|
36 | - implements ModuleMenuInterface, |
|
37 | - ModuleConfigInterface, |
|
38 | - HookSubscriberInterface, |
|
39 | - IndividualHeaderExtenderInterface, |
|
40 | - RecordNameTextExtenderInterface |
|
35 | + extends AbstractModule |
|
36 | + implements ModuleMenuInterface, |
|
37 | + ModuleConfigInterface, |
|
38 | + HookSubscriberInterface, |
|
39 | + IndividualHeaderExtenderInterface, |
|
40 | + RecordNameTextExtenderInterface |
|
41 | 41 | { |
42 | - // How to update the database schema for this module |
|
43 | - const SCHEMA_TARGET_VERSION = 1; |
|
44 | - const SCHEMA_SETTING_NAME = 'MAJ_SOSA_SCHEMA_VERSION'; |
|
45 | - const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\Sosa\Schema'; |
|
42 | + // How to update the database schema for this module |
|
43 | + const SCHEMA_TARGET_VERSION = 1; |
|
44 | + const SCHEMA_SETTING_NAME = 'MAJ_SOSA_SCHEMA_VERSION'; |
|
45 | + const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\Sosa\Schema'; |
|
46 | 46 | |
47 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
48 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
49 | - |
|
50 | - /** |
|
51 | - * {@inhericDoc} |
|
52 | - */ |
|
53 | - public function getTitle() { |
|
54 | - return /* I18N: Name of the “Sosa” module */ I18N::translate('Sosa'); |
|
55 | - } |
|
56 | - |
|
57 | - /** |
|
58 | - * {@inhericDoc} |
|
59 | - */ |
|
60 | - public function getDescription() { |
|
61 | - return /* I18N: Description of the “Sosa” module */ I18N::translate('Calculate and display Sosa ancestors of the root person.'); |
|
62 | - } |
|
63 | - |
|
64 | - /** |
|
65 | - * {@inhericDoc} |
|
66 | - */ |
|
67 | - public function modAction($mod_action) { |
|
68 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
47 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
48 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
49 | + |
|
50 | + /** |
|
51 | + * {@inhericDoc} |
|
52 | + */ |
|
53 | + public function getTitle() { |
|
54 | + return /* I18N: Name of the “Sosa” module */ I18N::translate('Sosa'); |
|
55 | + } |
|
56 | + |
|
57 | + /** |
|
58 | + * {@inhericDoc} |
|
59 | + */ |
|
60 | + public function getDescription() { |
|
61 | + return /* I18N: Description of the “Sosa” module */ I18N::translate('Calculate and display Sosa ancestors of the root person.'); |
|
62 | + } |
|
63 | + |
|
64 | + /** |
|
65 | + * {@inhericDoc} |
|
66 | + */ |
|
67 | + public function modAction($mod_action) { |
|
68 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
69 | 69 | |
70 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
71 | - } |
|
70 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
71 | + } |
|
72 | 72 | |
73 | - /********** |
|
73 | + /********** |
|
74 | 74 | * ModuleConfigInterface |
75 | 75 | **********/ |
76 | 76 | |
77 | - /** |
|
78 | - * {@inhericDoc} |
|
79 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
80 | - */ |
|
81 | - public function getConfigLink() { |
|
82 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
77 | + /** |
|
78 | + * {@inhericDoc} |
|
79 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
80 | + */ |
|
81 | + public function getConfigLink() { |
|
82 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
83 | 83 | |
84 | - return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
85 | - } |
|
84 | + return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
85 | + } |
|
86 | 86 | |
87 | - /********** |
|
87 | + /********** |
|
88 | 88 | * ModuleMenuInterface |
89 | 89 | **********/ |
90 | 90 | |
91 | - /** |
|
92 | - * {@inhericDoc} |
|
93 | - * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::defaultMenuOrder() |
|
94 | - */ |
|
95 | - public function defaultMenuOrder() { |
|
96 | - return 5; |
|
97 | - } |
|
98 | - |
|
99 | - /** |
|
100 | - * {@inhericDoc} |
|
101 | - * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::getMenu() |
|
102 | - */ |
|
103 | - public function getMenu() { |
|
104 | - $wt_tree = Globals::getTree(); |
|
105 | - $menu = null; |
|
106 | - if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
91 | + /** |
|
92 | + * {@inhericDoc} |
|
93 | + * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::defaultMenuOrder() |
|
94 | + */ |
|
95 | + public function defaultMenuOrder() { |
|
96 | + return 5; |
|
97 | + } |
|
98 | + |
|
99 | + /** |
|
100 | + * {@inhericDoc} |
|
101 | + * @see \Fisharebest\Webtrees\Module\ModuleMenuInterface::getMenu() |
|
102 | + */ |
|
103 | + public function getMenu() { |
|
104 | + $wt_tree = Globals::getTree(); |
|
105 | + $menu = null; |
|
106 | + if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
107 | 107 | |
108 | - $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $wt_tree->getNameUrl() . '&'; |
|
109 | - $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
108 | + $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $wt_tree->getNameUrl() . '&'; |
|
109 | + $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
110 | 110 | |
111 | - $menu = clone $sosa_stat_menu; |
|
112 | - $menu->setClass('menu-maj-sosa'); |
|
111 | + $menu = clone $sosa_stat_menu; |
|
112 | + $menu->setClass('menu-maj-sosa'); |
|
113 | 113 | |
114 | - $submenus = array_filter(array( |
|
115 | - new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | - new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | - $sosa_stat_menu |
|
118 | - )); |
|
114 | + $submenus = array_filter(array( |
|
115 | + new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | + new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | + $sosa_stat_menu |
|
118 | + )); |
|
119 | 119 | |
120 | 120 | |
121 | - if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_GEODISP_NAME) |
|
122 | - && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
|
123 | - ) |
|
124 | - { |
|
125 | - if(count($ga_list) > 0) { |
|
126 | - $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $wt_tree->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | - } |
|
128 | - } |
|
121 | + if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_GEODISP_NAME) |
|
122 | + && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
|
123 | + ) |
|
124 | + { |
|
125 | + if(count($ga_list) > 0) { |
|
126 | + $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $wt_tree->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | + } |
|
128 | + } |
|
129 | 129 | |
130 | - if(Auth::check()) { |
|
131 | - $submenus[] = new Menu( |
|
132 | - I18N::translate('Sosa Configuration'), |
|
133 | - $this->getConfigLink(), |
|
134 | - 'menu-maj-sosa-configuration', |
|
135 | - array('rel' => 'nofollow')); |
|
136 | - } |
|
130 | + if(Auth::check()) { |
|
131 | + $submenus[] = new Menu( |
|
132 | + I18N::translate('Sosa Configuration'), |
|
133 | + $this->getConfigLink(), |
|
134 | + 'menu-maj-sosa-configuration', |
|
135 | + array('rel' => 'nofollow')); |
|
136 | + } |
|
137 | 137 | |
138 | - //-- recompute Sosa submenu |
|
139 | - $controller = Globals::getController(); |
|
140 | - if (!empty($controller) && $controller instanceof IndividualController |
|
141 | - && Auth::check() && $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID') |
|
142 | - ) { |
|
143 | - $controller |
|
144 | - ->addInlineJavascript(' |
|
138 | + //-- recompute Sosa submenu |
|
139 | + $controller = Globals::getController(); |
|
140 | + if (!empty($controller) && $controller instanceof IndividualController |
|
141 | + && Auth::check() && $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID') |
|
142 | + ) { |
|
143 | + $controller |
|
144 | + ->addInlineJavascript(' |
|
145 | 145 | function majComputeSosaFromIndi(){ |
146 | 146 | if($("#computesosadlg").length == 0) { |
147 | 147 | $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation') .'\"><div id=\"sosaloadingarea\"></div></div>"); |
@@ -164,87 +164,87 @@ discard block |
||
164 | 164 | }); |
165 | 165 | }'); |
166 | 166 | |
167 | - $submenus[] = new Menu( |
|
168 | - I18N::translate('Complete Sosas'), |
|
169 | - '#', |
|
170 | - 'menu-maj-sosa-recompute', |
|
171 | - array( |
|
172 | - 'rel' => 'nofollow', |
|
173 | - 'onclick' => 'return majComputeSosaFromIndi();' |
|
174 | - )); |
|
175 | - } |
|
167 | + $submenus[] = new Menu( |
|
168 | + I18N::translate('Complete Sosas'), |
|
169 | + '#', |
|
170 | + 'menu-maj-sosa-recompute', |
|
171 | + array( |
|
172 | + 'rel' => 'nofollow', |
|
173 | + 'onclick' => 'return majComputeSosaFromIndi();' |
|
174 | + )); |
|
175 | + } |
|
176 | 176 | |
177 | - } |
|
177 | + } |
|
178 | 178 | |
179 | - $menu->setSubmenus($submenus); |
|
179 | + $menu->setSubmenus($submenus); |
|
180 | 180 | |
181 | - return $menu; |
|
181 | + return $menu; |
|
182 | 182 | |
183 | - } |
|
183 | + } |
|
184 | 184 | |
185 | - /********** |
|
185 | + /********** |
|
186 | 186 | * Hooks |
187 | 187 | **********/ |
188 | 188 | |
189 | - /** |
|
190 | - * {@inhericDoc} |
|
191 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
192 | - */ |
|
193 | - public function getSubscribedHooks() { |
|
194 | - return array( |
|
195 | - 'hExtendIndiHeaderIcons' => 20, |
|
196 | - 'hExtendIndiHeaderRight' => 20, |
|
197 | - 'hRecordNameAppend' => 20 |
|
198 | - ); |
|
199 | - } |
|
200 | - |
|
201 | - /** |
|
202 | - * {@inhericDoc} |
|
203 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
|
204 | - */ |
|
205 | - public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
|
206 | - if($ctrlIndi){ |
|
207 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
208 | - return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
|
209 | - } |
|
210 | - return ''; |
|
211 | - } |
|
212 | - |
|
213 | - /** |
|
214 | - * {@inhericDoc} |
|
215 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft() |
|
216 | - */ |
|
217 | - public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi) { } |
|
218 | - |
|
219 | - /** |
|
220 | - * {@inhericDoc} |
|
221 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
|
222 | - */ |
|
223 | - public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
|
224 | - if($ctrlIndi){ |
|
225 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
226 | - return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
227 | - } |
|
228 | - return ''; |
|
229 | - } |
|
230 | - |
|
231 | - /** |
|
232 | - * {@inhericDoc} |
|
233 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
|
234 | - */ |
|
235 | - public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
236 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
237 | - $dindi = new Individual($grec); |
|
238 | - return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
|
239 | - } |
|
240 | - return ''; |
|
241 | - } |
|
242 | - |
|
243 | - /** |
|
244 | - * {@inhericDoc} |
|
245 | - * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
|
246 | - */ |
|
247 | - public function hRecordNamePrepend(GedcomRecord $grec, $size) {} |
|
189 | + /** |
|
190 | + * {@inhericDoc} |
|
191 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
192 | + */ |
|
193 | + public function getSubscribedHooks() { |
|
194 | + return array( |
|
195 | + 'hExtendIndiHeaderIcons' => 20, |
|
196 | + 'hExtendIndiHeaderRight' => 20, |
|
197 | + 'hRecordNameAppend' => 20 |
|
198 | + ); |
|
199 | + } |
|
200 | + |
|
201 | + /** |
|
202 | + * {@inhericDoc} |
|
203 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
|
204 | + */ |
|
205 | + public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
|
206 | + if($ctrlIndi){ |
|
207 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
208 | + return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
|
209 | + } |
|
210 | + return ''; |
|
211 | + } |
|
212 | + |
|
213 | + /** |
|
214 | + * {@inhericDoc} |
|
215 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft() |
|
216 | + */ |
|
217 | + public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi) { } |
|
218 | + |
|
219 | + /** |
|
220 | + * {@inhericDoc} |
|
221 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
|
222 | + */ |
|
223 | + public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
|
224 | + if($ctrlIndi){ |
|
225 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
226 | + return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
227 | + } |
|
228 | + return ''; |
|
229 | + } |
|
230 | + |
|
231 | + /** |
|
232 | + * {@inhericDoc} |
|
233 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
|
234 | + */ |
|
235 | + public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
236 | + if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
237 | + $dindi = new Individual($grec); |
|
238 | + return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
|
239 | + } |
|
240 | + return ''; |
|
241 | + } |
|
242 | + |
|
243 | + /** |
|
244 | + * {@inhericDoc} |
|
245 | + * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
|
246 | + */ |
|
247 | + public function hRecordNamePrepend(GedcomRecord $grec, $size) {} |
|
248 | 248 | |
249 | 249 | |
250 | 250 |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | public function getConfigLink() { |
82 | 82 | Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
83 | 83 | |
84 | - return 'module.php?mod=' . $this->getName() . '&mod_action=SosaConfig'; |
|
84 | + return 'module.php?mod='.$this->getName().'&mod_action=SosaConfig'; |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | /********** |
@@ -103,17 +103,17 @@ discard block |
||
103 | 103 | public function getMenu() { |
104 | 104 | $wt_tree = Globals::getTree(); |
105 | 105 | $menu = null; |
106 | - if(ModuleManager::getInstance()->isOperational($this->getName())) { |
|
106 | + if (ModuleManager::getInstance()->isOperational($this->getName())) { |
|
107 | 107 | |
108 | - $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $wt_tree->getNameUrl() . '&'; |
|
109 | - $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
108 | + $root_url = 'module.php?mod='.$this->getName().'&ged='.$wt_tree->getNameUrl().'&'; |
|
109 | + $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url.'mod_action=SosaStats', 'menu-maj-sosa-stats'); |
|
110 | 110 | |
111 | 111 | $menu = clone $sosa_stat_menu; |
112 | 112 | $menu->setClass('menu-maj-sosa'); |
113 | 113 | |
114 | 114 | $submenus = array_filter(array( |
115 | - new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | - new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
115 | + new Menu(I18N::translate('Sosa Ancestors'), $root_url.'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')), |
|
116 | + new Menu(I18N::translate('Missing Ancestors'), $root_url.'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')), |
|
117 | 117 | $sosa_stat_menu |
118 | 118 | )); |
119 | 119 | |
@@ -122,12 +122,12 @@ discard block |
||
122 | 122 | && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList() |
123 | 123 | ) |
124 | 124 | { |
125 | - if(count($ga_list) > 0) { |
|
126 | - $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $wt_tree->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
125 | + if (count($ga_list) > 0) { |
|
126 | + $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod='.Constants::MODULE_MAJ_GEODISP_NAME.'&ged='.$wt_tree->getNameUrl().'&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion'); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | |
130 | - if(Auth::check()) { |
|
130 | + if (Auth::check()) { |
|
131 | 131 | $submenus[] = new Menu( |
132 | 132 | I18N::translate('Sosa Configuration'), |
133 | 133 | $this->getConfigLink(), |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | ->addInlineJavascript(' |
145 | 145 | function majComputeSosaFromIndi(){ |
146 | 146 | if($("#computesosadlg").length == 0) { |
147 | - $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation') .'\"><div id=\"sosaloadingarea\"></div></div>"); |
|
147 | + $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation').'\"><div id=\"sosaloadingarea\"></div></div>"); |
|
148 | 148 | } |
149 | 149 | $("#computesosadlg").dialog({ |
150 | 150 | modal: true, |
@@ -153,7 +153,7 @@ discard block |
||
153 | 153 | open: function(event, ui) { |
154 | 154 | $("button.ui-dialog-titlebar-close").hide(); |
155 | 155 | $("#sosaloadingarea").empty().html("<i class=\"icon-loading-small\"></i>"); |
156 | - $("#sosaloadingarea").load("module.php?mod=' . $this->getName() . '&mod_action=SosaConfig@computePartial&ged='. $wt_tree->getNameUrl() .'&userid='.Auth::user()->getUserId().'&pid=' . $controller->getSignificantIndividual()->getXref() . '", |
|
156 | + $("#sosaloadingarea").load("module.php?mod=' . $this->getName().'&mod_action=SosaConfig@computePartial&ged='.$wt_tree->getNameUrl().'&userid='.Auth::user()->getUserId().'&pid='.$controller->getSignificantIndividual()->getXref().'", |
|
157 | 157 | function(){ |
158 | 158 | $("button.ui-dialog-titlebar-close").show(); |
159 | 159 | setTimeout(function(){ |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
204 | 204 | */ |
205 | 205 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
206 | - if($ctrlIndi){ |
|
206 | + if ($ctrlIndi) { |
|
207 | 207 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
208 | 208 | return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large'); |
209 | 209 | } |
@@ -221,9 +221,9 @@ discard block |
||
221 | 221 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight() |
222 | 222 | */ |
223 | 223 | public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) { |
224 | - if($ctrlIndi){ |
|
224 | + if ($ctrlIndi) { |
|
225 | 225 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
226 | - return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
226 | + return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal')); |
|
227 | 227 | } |
228 | 228 | return ''; |
229 | 229 | } |
@@ -233,7 +233,7 @@ discard block |
||
233 | 233 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
234 | 234 | */ |
235 | 235 | public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
236 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals |
|
236 | + if ($grec instanceof \Fisharebest\Webtrees\Individual) { // Only apply to individuals |
|
237 | 237 | $dindi = new Individual($grec); |
238 | 238 | return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size); |
239 | 239 | } |
@@ -30,87 +30,87 @@ discard block |
||
30 | 30 | */ |
31 | 31 | class AdminConfigController extends MvcController |
32 | 32 | { |
33 | - /** |
|
34 | - * Manage updates sent from the AdminConfig@index form. |
|
35 | - */ |
|
36 | - protected function update() { |
|
37 | - if(Auth::isAdmin()){ |
|
38 | - $ihooks = HookProvider::getInstance()->getInstalledHooks(); |
|
33 | + /** |
|
34 | + * Manage updates sent from the AdminConfig@index form. |
|
35 | + */ |
|
36 | + protected function update() { |
|
37 | + if(Auth::isAdmin()){ |
|
38 | + $ihooks = HookProvider::getInstance()->getInstalledHooks(); |
|
39 | 39 | |
40 | - $module_names= Database::prepare( |
|
41 | - "SELECT module_name FROM `##module` WHERE status='disabled'" |
|
42 | - )->fetchOneColumn(); |
|
40 | + $module_names= Database::prepare( |
|
41 | + "SELECT module_name FROM `##module` WHERE status='disabled'" |
|
42 | + )->fetchOneColumn(); |
|
43 | 43 | |
44 | - if($ihooks !== null){ |
|
45 | - foreach ($ihooks as $ihook => $params) { |
|
46 | - if(Filter::post('hook-' . $params['id']) === 'yes') { |
|
47 | - $array_hook = explode('#', $ihook); |
|
48 | - //Update status |
|
49 | - $new_status= Filter::postBool('status-' . $params['id']); |
|
50 | - if(in_array($array_hook[0], $module_names)) $new_status = false; |
|
51 | - $previous_status = $params['status']; |
|
52 | - if ($new_status !== null) { |
|
53 | - $new_status= $new_status ? 'enabled' : 'disabled'; |
|
54 | - if($new_status != $previous_status){ |
|
55 | - $chook = new Hook($array_hook[1], $array_hook[2]); |
|
56 | - switch($new_status){ |
|
57 | - case 'enabled': |
|
58 | - $chook->enable($array_hook[0]); |
|
59 | - break; |
|
60 | - case 'disabled': |
|
61 | - $chook->disable($array_hook[0]); |
|
62 | - break; |
|
63 | - default: |
|
64 | - break; |
|
65 | - } |
|
66 | - } |
|
67 | - } |
|
44 | + if($ihooks !== null){ |
|
45 | + foreach ($ihooks as $ihook => $params) { |
|
46 | + if(Filter::post('hook-' . $params['id']) === 'yes') { |
|
47 | + $array_hook = explode('#', $ihook); |
|
48 | + //Update status |
|
49 | + $new_status= Filter::postBool('status-' . $params['id']); |
|
50 | + if(in_array($array_hook[0], $module_names)) $new_status = false; |
|
51 | + $previous_status = $params['status']; |
|
52 | + if ($new_status !== null) { |
|
53 | + $new_status= $new_status ? 'enabled' : 'disabled'; |
|
54 | + if($new_status != $previous_status){ |
|
55 | + $chook = new Hook($array_hook[1], $array_hook[2]); |
|
56 | + switch($new_status){ |
|
57 | + case 'enabled': |
|
58 | + $chook->enable($array_hook[0]); |
|
59 | + break; |
|
60 | + case 'disabled': |
|
61 | + $chook->disable($array_hook[0]); |
|
62 | + break; |
|
63 | + default: |
|
64 | + break; |
|
65 | + } |
|
66 | + } |
|
67 | + } |
|
68 | 68 | |
69 | - //Update priority |
|
70 | - $new_priority = Filter::postInteger("moduleorder-{$params['id']}"); |
|
71 | - $previous_priority = $params['priority']; |
|
72 | - if ($new_priority !== null) { |
|
73 | - if($new_priority != $previous_priority){ |
|
74 | - $chook = new Hook($array_hook[1], $array_hook[2]); |
|
75 | - $chook->setPriority($array_hook[0], $new_priority); |
|
76 | - } |
|
77 | - } |
|
78 | - } |
|
79 | - } |
|
80 | - } |
|
81 | - } |
|
82 | - } |
|
69 | + //Update priority |
|
70 | + $new_priority = Filter::postInteger("moduleorder-{$params['id']}"); |
|
71 | + $previous_priority = $params['priority']; |
|
72 | + if ($new_priority !== null) { |
|
73 | + if($new_priority != $previous_priority){ |
|
74 | + $chook = new Hook($array_hook[1], $array_hook[2]); |
|
75 | + $chook->setPriority($array_hook[0], $new_priority); |
|
76 | + } |
|
77 | + } |
|
78 | + } |
|
79 | + } |
|
80 | + } |
|
81 | + } |
|
82 | + } |
|
83 | 83 | |
84 | - /** |
|
85 | - * Pages |
|
86 | - */ |
|
84 | + /** |
|
85 | + * Pages |
|
86 | + */ |
|
87 | 87 | |
88 | - /** |
|
89 | - * AdminConfig@index |
|
90 | - */ |
|
91 | - public function index() { |
|
92 | - HookProvider::getInstance()->updateHooks(); |
|
88 | + /** |
|
89 | + * AdminConfig@index |
|
90 | + */ |
|
91 | + public function index() { |
|
92 | + HookProvider::getInstance()->updateHooks(); |
|
93 | 93 | |
94 | - $action = Filter::post('action'); |
|
95 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
94 | + $action = Filter::post('action'); |
|
95 | + if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
96 | 96 | |
97 | - Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
98 | - $ctrl = new PageController(); |
|
99 | - $ctrl |
|
100 | - ->restrictAccess(Auth::isAdmin()) |
|
101 | - ->setPageTitle($this->module->getTitle()); |
|
97 | + Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
98 | + $ctrl = new PageController(); |
|
99 | + $ctrl |
|
100 | + ->restrictAccess(Auth::isAdmin()) |
|
101 | + ->setPageTitle($this->module->getTitle()); |
|
102 | 102 | |
103 | - $table_id = 'table-installedhooks-' . Uuid::uuid4(); |
|
103 | + $table_id = 'table-installedhooks-' . Uuid::uuid4(); |
|
104 | 104 | |
105 | - $view_bag = new ViewBag(); |
|
106 | - $view_bag->set('title', $ctrl->getPageTitle()); |
|
107 | - $view_bag->set('table_id', $table_id); |
|
108 | - $view_bag->set('hook_list', HookProvider::getInstance()->getRawInstalledHooks()); |
|
105 | + $view_bag = new ViewBag(); |
|
106 | + $view_bag->set('title', $ctrl->getPageTitle()); |
|
107 | + $view_bag->set('table_id', $table_id); |
|
108 | + $view_bag->set('hook_list', HookProvider::getInstance()->getRawInstalledHooks()); |
|
109 | 109 | |
110 | - $ctrl |
|
111 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
112 | - ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
113 | - ->addInlineJavascript(' |
|
110 | + $ctrl |
|
111 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
112 | + ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
113 | + ->addInlineJavascript(' |
|
114 | 114 | jQuery(document).ready(function() { |
115 | 115 | jQuery("#'.$table_id.'").dataTable( { |
116 | 116 | '.I18N::datatablesI18N().', |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | }); |
131 | 131 | '); |
132 | 132 | |
133 | - ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
134 | - } |
|
133 | + ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
134 | + } |
|
135 | 135 | |
136 | 136 | } |
137 | 137 | \ No newline at end of file |
@@ -34,26 +34,26 @@ discard block |
||
34 | 34 | * Manage updates sent from the AdminConfig@index form. |
35 | 35 | */ |
36 | 36 | protected function update() { |
37 | - if(Auth::isAdmin()){ |
|
37 | + if (Auth::isAdmin()) { |
|
38 | 38 | $ihooks = HookProvider::getInstance()->getInstalledHooks(); |
39 | 39 | |
40 | - $module_names= Database::prepare( |
|
40 | + $module_names = Database::prepare( |
|
41 | 41 | "SELECT module_name FROM `##module` WHERE status='disabled'" |
42 | 42 | )->fetchOneColumn(); |
43 | 43 | |
44 | - if($ihooks !== null){ |
|
44 | + if ($ihooks !== null) { |
|
45 | 45 | foreach ($ihooks as $ihook => $params) { |
46 | - if(Filter::post('hook-' . $params['id']) === 'yes') { |
|
46 | + if (Filter::post('hook-'.$params['id']) === 'yes') { |
|
47 | 47 | $array_hook = explode('#', $ihook); |
48 | 48 | //Update status |
49 | - $new_status= Filter::postBool('status-' . $params['id']); |
|
50 | - if(in_array($array_hook[0], $module_names)) $new_status = false; |
|
49 | + $new_status = Filter::postBool('status-'.$params['id']); |
|
50 | + if (in_array($array_hook[0], $module_names)) $new_status = false; |
|
51 | 51 | $previous_status = $params['status']; |
52 | 52 | if ($new_status !== null) { |
53 | - $new_status= $new_status ? 'enabled' : 'disabled'; |
|
54 | - if($new_status != $previous_status){ |
|
53 | + $new_status = $new_status ? 'enabled' : 'disabled'; |
|
54 | + if ($new_status != $previous_status) { |
|
55 | 55 | $chook = new Hook($array_hook[1], $array_hook[2]); |
56 | - switch($new_status){ |
|
56 | + switch ($new_status) { |
|
57 | 57 | case 'enabled': |
58 | 58 | $chook->enable($array_hook[0]); |
59 | 59 | break; |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | $new_priority = Filter::postInteger("moduleorder-{$params['id']}"); |
71 | 71 | $previous_priority = $params['priority']; |
72 | 72 | if ($new_priority !== null) { |
73 | - if($new_priority != $previous_priority){ |
|
73 | + if ($new_priority != $previous_priority) { |
|
74 | 74 | $chook = new Hook($array_hook[1], $array_hook[2]); |
75 | 75 | $chook->setPriority($array_hook[0], $new_priority); |
76 | 76 | } |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | HookProvider::getInstance()->updateHooks(); |
93 | 93 | |
94 | 94 | $action = Filter::post('action'); |
95 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
95 | + if ($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
96 | 96 | |
97 | 97 | Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
98 | 98 | $ctrl = new PageController(); |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | ->restrictAccess(Auth::isAdmin()) |
101 | 101 | ->setPageTitle($this->module->getTitle()); |
102 | 102 | |
103 | - $table_id = 'table-installedhooks-' . Uuid::uuid4(); |
|
103 | + $table_id = 'table-installedhooks-'.Uuid::uuid4(); |
|
104 | 104 | |
105 | 105 | $view_bag = new ViewBag(); |
106 | 106 | $view_bag->set('title', $ctrl->getPageTitle()); |
@@ -47,7 +47,9 @@ discard block |
||
47 | 47 | $array_hook = explode('#', $ihook); |
48 | 48 | //Update status |
49 | 49 | $new_status= Filter::postBool('status-' . $params['id']); |
50 | - if(in_array($array_hook[0], $module_names)) $new_status = false; |
|
50 | + if(in_array($array_hook[0], $module_names)) { |
|
51 | + $new_status = false; |
|
52 | + } |
|
51 | 53 | $previous_status = $params['status']; |
52 | 54 | if ($new_status !== null) { |
53 | 55 | $new_status= $new_status ? 'enabled' : 'disabled'; |
@@ -92,7 +94,9 @@ discard block |
||
92 | 94 | HookProvider::getInstance()->updateHooks(); |
93 | 95 | |
94 | 96 | $action = Filter::post('action'); |
95 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
97 | + if($action == 'update' && Filter::checkCsrf()) { |
|
98 | + $this->update(); |
|
99 | + } |
|
96 | 100 | |
97 | 101 | Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
98 | 102 | $ctrl = new PageController(); |
@@ -32,49 +32,49 @@ discard block |
||
32 | 32 | class MiscExtensionsModule extends AbstractModule |
33 | 33 | implements HookSubscriberInterface, IndividualHeaderExtenderInterface, PageHeaderExtenderInterface, PageFooterExtenderInterface, ModuleConfigInterface |
34 | 34 | { |
35 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
36 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
35 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
36 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
37 | 37 | |
38 | - /** |
|
39 | - * {@inheritDoc} |
|
40 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
41 | - */ |
|
42 | - public function getTitle() { |
|
43 | - return I18N::translate('Miscellaneous extensions'); |
|
44 | - } |
|
38 | + /** |
|
39 | + * {@inheritDoc} |
|
40 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
41 | + */ |
|
42 | + public function getTitle() { |
|
43 | + return I18N::translate('Miscellaneous extensions'); |
|
44 | + } |
|
45 | 45 | |
46 | 46 | /** |
47 | 47 | * {@inheritDoc} |
48 | 48 | * @see \Fisharebest\Webtrees\Module\AbstractModule::getDescription() |
49 | 49 | */ |
50 | - public function getDescription() { |
|
51 | - return I18N::translate('Miscellaneous extensions for <strong>webtrees</strong>.'); |
|
52 | - } |
|
50 | + public function getDescription() { |
|
51 | + return I18N::translate('Miscellaneous extensions for <strong>webtrees</strong>.'); |
|
52 | + } |
|
53 | 53 | |
54 | - /** |
|
55 | - * {@inhericDoc} |
|
56 | - */ |
|
57 | - public function modAction($mod_action) { |
|
58 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
59 | - } |
|
54 | + /** |
|
55 | + * {@inhericDoc} |
|
56 | + */ |
|
57 | + public function modAction($mod_action) { |
|
58 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
59 | + } |
|
60 | 60 | |
61 | - /** |
|
62 | - * {@inhericDoc} |
|
63 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
64 | - */ |
|
65 | - public function getConfigLink() { |
|
66 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
67 | - } |
|
61 | + /** |
|
62 | + * {@inhericDoc} |
|
63 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
64 | + */ |
|
65 | + public function getConfigLink() { |
|
66 | + return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
67 | + } |
|
68 | 68 | |
69 | - /** |
|
70 | - * {@inheritDoc} |
|
71 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
72 | - */ |
|
69 | + /** |
|
70 | + * {@inheritDoc} |
|
71 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
72 | + */ |
|
73 | 73 | public function getSubscribedHooks() { |
74 | 74 | return array( |
75 | - 'hExtendIndiHeaderLeft' => 20, |
|
76 | - 'hPrintHeader' => 20, |
|
77 | - 'hPrintFooter' => 20 |
|
75 | + 'hExtendIndiHeaderLeft' => 20, |
|
76 | + 'hPrintHeader' => 20, |
|
77 | + 'hPrintFooter' => 20 |
|
78 | 78 | ); |
79 | 79 | } |
80 | 80 | |
@@ -89,22 +89,22 @@ discard block |
||
89 | 89 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderLeft() |
90 | 90 | */ |
91 | 91 | public function hExtendIndiHeaderLeft(IndividualController $ctrlIndi) { |
92 | - $res = ''; |
|
93 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
94 | - $titles = $dindi->getTitles(); |
|
95 | - if(count($titles)>0){ |
|
96 | - $res = ' |
|
92 | + $res = ''; |
|
93 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
94 | + $titles = $dindi->getTitles(); |
|
95 | + if(count($titles)>0){ |
|
96 | + $res = ' |
|
97 | 97 | <dl> |
98 | 98 | <dt class="label">'.I18N::translate('Titles').'</dt>'; |
99 | - foreach($titles as $title=>$props){ |
|
100 | - $res .= |
|
101 | - '<dd class="field">' . $title. ' ' . |
|
102 | - FunctionsPrint::getListFromArray($props) . |
|
103 | - '</dd>'; |
|
104 | - } |
|
105 | - $res .= '</dl>'; |
|
106 | - } |
|
107 | - return array( 'indi-header-titles' , $res); |
|
99 | + foreach($titles as $title=>$props){ |
|
100 | + $res .= |
|
101 | + '<dd class="field">' . $title. ' ' . |
|
102 | + FunctionsPrint::getListFromArray($props) . |
|
103 | + '</dd>'; |
|
104 | + } |
|
105 | + $res .= '</dl>'; |
|
106 | + } |
|
107 | + return array( 'indi-header-titles' , $res); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -118,13 +118,13 @@ discard block |
||
118 | 118 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\PageHeaderExtenderInterface::hPrintHeader() |
119 | 119 | */ |
120 | 120 | public function hPrintHeader() { |
121 | - $html = ''; |
|
122 | - if($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1){ |
|
123 | - if(Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE) && !Filter::getBool('noheader')){ |
|
124 | - $html .= $this->getSetting('MAJ_HTML_HEADER', ''); |
|
125 | - } |
|
126 | - } |
|
127 | - return $html; |
|
121 | + $html = ''; |
|
122 | + if($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1){ |
|
123 | + if(Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE) && !Filter::getBool('noheader')){ |
|
124 | + $html .= $this->getSetting('MAJ_HTML_HEADER', ''); |
|
125 | + } |
|
126 | + } |
|
127 | + return $html; |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | /** |
@@ -132,26 +132,26 @@ discard block |
||
132 | 132 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\PageFooterExtenderInterface::hPrintFooter() |
133 | 133 | */ |
134 | 134 | public function hPrintFooter() { |
135 | - $wt_tree = Globals::getTree(); |
|
136 | - $html = ''; |
|
137 | - if($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1){ |
|
138 | - $html .= '<br/>'; |
|
139 | - $html .= '<div class="center">'; |
|
140 | - $cnil_ref = $this->getSetting('MAJ_CNIL_REFERENCE', ''); |
|
141 | - if($cnil_ref != ''){ |
|
142 | - $html .= I18N::translate('This site has been notified to the French National Commission for Data protection (CNIL) and registered under number %s. ', $cnil_ref); |
|
143 | - } |
|
144 | - $html .= I18N::translate('In accordance with the French Data protection Act (<em>Loi Informatique et Libertés</em>) of January 6th, 1978, you have the right to access, modify, rectify and delete personal information that pertains to you. To exercice this right, please contact %s, and provide your name, address and a proof of your identity.', |
|
145 | - Theme::theme()->contactLink(User::find($wt_tree->getPreference('WEBMASTER_USER_ID')))); |
|
146 | - $html .= '</div>'; |
|
147 | - } |
|
135 | + $wt_tree = Globals::getTree(); |
|
136 | + $html = ''; |
|
137 | + if($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1){ |
|
138 | + $html .= '<br/>'; |
|
139 | + $html .= '<div class="center">'; |
|
140 | + $cnil_ref = $this->getSetting('MAJ_CNIL_REFERENCE', ''); |
|
141 | + if($cnil_ref != ''){ |
|
142 | + $html .= I18N::translate('This site has been notified to the French National Commission for Data protection (CNIL) and registered under number %s. ', $cnil_ref); |
|
143 | + } |
|
144 | + $html .= I18N::translate('In accordance with the French Data protection Act (<em>Loi Informatique et Libertés</em>) of January 6th, 1978, you have the right to access, modify, rectify and delete personal information that pertains to you. To exercice this right, please contact %s, and provide your name, address and a proof of your identity.', |
|
145 | + Theme::theme()->contactLink(User::find($wt_tree->getPreference('WEBMASTER_USER_ID')))); |
|
146 | + $html .= '</div>'; |
|
147 | + } |
|
148 | 148 | |
149 | - if($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1){ |
|
150 | - if(Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE) && !Filter::getBool('nofooter')){ |
|
151 | - $html .= $this->getSetting('MAJ_HTML_FOOTER', ''); |
|
152 | - } |
|
153 | - } |
|
154 | - return $html; |
|
149 | + if($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1){ |
|
150 | + if(Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE) && !Filter::getBool('nofooter')){ |
|
151 | + $html .= $this->getSetting('MAJ_HTML_FOOTER', ''); |
|
152 | + } |
|
153 | + } |
|
154 | + return $html; |
|
155 | 155 | } |
156 | 156 | |
157 | 157 | } |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
64 | 64 | */ |
65 | 65 | public function getConfigLink() { |
66 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
66 | + return 'module.php?mod='.$this->getName().'&mod_action=AdminConfig'; |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | /** |
@@ -92,19 +92,19 @@ discard block |
||
92 | 92 | $res = ''; |
93 | 93 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
94 | 94 | $titles = $dindi->getTitles(); |
95 | - if(count($titles)>0){ |
|
95 | + if (count($titles) > 0) { |
|
96 | 96 | $res = ' |
97 | 97 | <dl> |
98 | 98 | <dt class="label">'.I18N::translate('Titles').'</dt>'; |
99 | - foreach($titles as $title=>$props){ |
|
99 | + foreach ($titles as $title=>$props) { |
|
100 | 100 | $res .= |
101 | - '<dd class="field">' . $title. ' ' . |
|
102 | - FunctionsPrint::getListFromArray($props) . |
|
101 | + '<dd class="field">'.$title.' '. |
|
102 | + FunctionsPrint::getListFromArray($props). |
|
103 | 103 | '</dd>'; |
104 | 104 | } |
105 | - $res .= '</dl>'; |
|
105 | + $res .= '</dl>'; |
|
106 | 106 | } |
107 | - return array( 'indi-header-titles' , $res); |
|
107 | + return array('indi-header-titles', $res); |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | /** |
@@ -119,8 +119,8 @@ discard block |
||
119 | 119 | */ |
120 | 120 | public function hPrintHeader() { |
121 | 121 | $html = ''; |
122 | - if($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1){ |
|
123 | - if(Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE) && !Filter::getBool('noheader')){ |
|
122 | + if ($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1) { |
|
123 | + if (Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE) && !Filter::getBool('noheader')) { |
|
124 | 124 | $html .= $this->getSetting('MAJ_HTML_HEADER', ''); |
125 | 125 | } |
126 | 126 | } |
@@ -134,11 +134,11 @@ discard block |
||
134 | 134 | public function hPrintFooter() { |
135 | 135 | $wt_tree = Globals::getTree(); |
136 | 136 | $html = ''; |
137 | - if($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1){ |
|
137 | + if ($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1) { |
|
138 | 138 | $html .= '<br/>'; |
139 | 139 | $html .= '<div class="center">'; |
140 | 140 | $cnil_ref = $this->getSetting('MAJ_CNIL_REFERENCE', ''); |
141 | - if($cnil_ref != ''){ |
|
141 | + if ($cnil_ref != '') { |
|
142 | 142 | $html .= I18N::translate('This site has been notified to the French National Commission for Data protection (CNIL) and registered under number %s. ', $cnil_ref); |
143 | 143 | } |
144 | 144 | $html .= I18N::translate('In accordance with the French Data protection Act (<em>Loi Informatique et Libertés</em>) of January 6th, 1978, you have the right to access, modify, rectify and delete personal information that pertains to you. To exercice this right, please contact %s, and provide your name, address and a proof of your identity.', |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | $html .= '</div>'; |
147 | 147 | } |
148 | 148 | |
149 | - if($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1){ |
|
150 | - if(Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE) && !Filter::getBool('nofooter')){ |
|
149 | + if ($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1) { |
|
150 | + if (Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE) && !Filter::getBool('nofooter')) { |
|
151 | 151 | $html .= $this->getSetting('MAJ_HTML_FOOTER', ''); |
152 | 152 | } |
153 | 153 | } |
@@ -16,48 +16,48 @@ |
||
16 | 16 | */ |
17 | 17 | class Globals { |
18 | 18 | |
19 | - /** |
|
20 | - * Get global $WT_TREE variable. |
|
21 | - * |
|
22 | - * @return \Fisharebest\Webtrees\Tree|NULL |
|
23 | - */ |
|
24 | - public static function getTree() { |
|
25 | - global $WT_TREE; |
|
19 | + /** |
|
20 | + * Get global $WT_TREE variable. |
|
21 | + * |
|
22 | + * @return \Fisharebest\Webtrees\Tree|NULL |
|
23 | + */ |
|
24 | + public static function getTree() { |
|
25 | + global $WT_TREE; |
|
26 | 26 | |
27 | - return $WT_TREE; |
|
28 | - } |
|
27 | + return $WT_TREE; |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Check whether the visitor is a bot. |
|
32 | - * |
|
33 | - * @return boolean |
|
34 | - */ |
|
35 | - public static function isSearchSpider() { |
|
36 | - global $SEARCH_SPIDER; |
|
30 | + /** |
|
31 | + * Check whether the visitor is a bot. |
|
32 | + * |
|
33 | + * @return boolean |
|
34 | + */ |
|
35 | + public static function isSearchSpider() { |
|
36 | + global $SEARCH_SPIDER; |
|
37 | 37 | |
38 | - return $SEARCH_SPIDER; |
|
39 | - } |
|
38 | + return $SEARCH_SPIDER; |
|
39 | + } |
|
40 | 40 | |
41 | - /** |
|
42 | - * Get the current controller. |
|
43 | - * |
|
44 | - * @return \Fisharebest\Webtrees\BaseController |
|
45 | - */ |
|
46 | - public static function getController() { |
|
47 | - global $controller; |
|
41 | + /** |
|
42 | + * Get the current controller. |
|
43 | + * |
|
44 | + * @return \Fisharebest\Webtrees\BaseController |
|
45 | + */ |
|
46 | + public static function getController() { |
|
47 | + global $controller; |
|
48 | 48 | |
49 | - return $controller; |
|
50 | - } |
|
49 | + return $controller; |
|
50 | + } |
|
51 | 51 | |
52 | - /** |
|
53 | - * Get the global facts |
|
54 | - * |
|
55 | - * @return array |
|
56 | - */ |
|
57 | - public static function getGlobalFacts() { |
|
58 | - global $global_facts; |
|
52 | + /** |
|
53 | + * Get the global facts |
|
54 | + * |
|
55 | + * @return array |
|
56 | + */ |
|
57 | + public static function getGlobalFacts() { |
|
58 | + global $global_facts; |
|
59 | 59 | |
60 | - return $global_facts; |
|
61 | - } |
|
60 | + return $global_facts; |
|
61 | + } |
|
62 | 62 | |
63 | 63 | } |
64 | 64 | \ No newline at end of file |