@@ -33,155 +33,155 @@ discard block |
||
33 | 33 | */ |
34 | 34 | class CertificateController extends MvcController |
35 | 35 | { |
36 | - /** |
|
37 | - * Certificate Provider |
|
38 | - * @var CertificateProviderInterface $provider |
|
39 | - */ |
|
40 | - protected $provider; |
|
36 | + /** |
|
37 | + * Certificate Provider |
|
38 | + * @var CertificateProviderInterface $provider |
|
39 | + */ |
|
40 | + protected $provider; |
|
41 | 41 | |
42 | - /** |
|
43 | - * Constructor for Certificate controller |
|
44 | - * @param AbstractModule $module |
|
45 | - */ |
|
46 | - public function __construct(AbstractModule $module) { |
|
47 | - parent::__construct($module); |
|
48 | - |
|
49 | - $this->provider = $this->module->getProvider(); |
|
50 | - } |
|
42 | + /** |
|
43 | + * Constructor for Certificate controller |
|
44 | + * @param AbstractModule $module |
|
45 | + */ |
|
46 | + public function __construct(AbstractModule $module) { |
|
47 | + parent::__construct($module); |
|
48 | + |
|
49 | + $this->provider = $this->module->getProvider(); |
|
50 | + } |
|
51 | 51 | |
52 | 52 | |
53 | - /** |
|
54 | - * Pages |
|
55 | - */ |
|
56 | - |
|
57 | - /** |
|
58 | - * Certificate@index |
|
59 | - */ |
|
60 | - public function index() { |
|
61 | - $tree = Globals::getTree(); |
|
62 | - $controller = new PageController(); |
|
63 | - $controller |
|
64 | - ->setPageTitle(I18N::translate('Certificate')) |
|
65 | - ->restrictAccess( |
|
66 | - $this->module->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($tree) |
|
67 | - ); |
|
68 | - |
|
69 | - $cid = Filter::get('cid'); |
|
70 | - |
|
71 | - $certificate = null; |
|
72 | - if(!empty($cid) && strlen($cid) > 22){ |
|
73 | - $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
74 | - } |
|
75 | - |
|
76 | - $data = new ViewBag(); |
|
77 | - $data->set('title', $controller->getPageTitle()); |
|
78 | - |
|
79 | - $data->set('has_certif', false); |
|
80 | - if($certificate) { |
|
81 | - $controller->restrictAccess($certificate->canShow()); |
|
82 | - $data->set('title', $certificate->getTitle()); |
|
83 | - $data->set('has_certif', true); |
|
84 | - $data->set('certificate', $certificate); |
|
53 | + /** |
|
54 | + * Pages |
|
55 | + */ |
|
56 | + |
|
57 | + /** |
|
58 | + * Certificate@index |
|
59 | + */ |
|
60 | + public function index() { |
|
61 | + $tree = Globals::getTree(); |
|
62 | + $controller = new PageController(); |
|
63 | + $controller |
|
64 | + ->setPageTitle(I18N::translate('Certificate')) |
|
65 | + ->restrictAccess( |
|
66 | + $this->module->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($tree) |
|
67 | + ); |
|
68 | + |
|
69 | + $cid = Filter::get('cid'); |
|
70 | + |
|
71 | + $certificate = null; |
|
72 | + if(!empty($cid) && strlen($cid) > 22){ |
|
73 | + $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
74 | + } |
|
75 | + |
|
76 | + $data = new ViewBag(); |
|
77 | + $data->set('title', $controller->getPageTitle()); |
|
78 | + |
|
79 | + $data->set('has_certif', false); |
|
80 | + if($certificate) { |
|
81 | + $controller->restrictAccess($certificate->canShow()); |
|
82 | + $data->set('title', $certificate->getTitle()); |
|
83 | + $data->set('has_certif', true); |
|
84 | + $data->set('certificate', $certificate); |
|
85 | 85 | |
86 | - $data->set( |
|
87 | - 'url_certif_city', |
|
88 | - 'module.php?mod=' . Constants::MODULE_MAJ_CERTIF_NAME . |
|
89 | - '&mod_action=Certificate@listAll' . |
|
90 | - '&ged=' . $tree->getNameUrl() . |
|
91 | - '&city=' . Functions::encryptToSafeBase64($certificate->getCity()) |
|
92 | - ); |
|
86 | + $data->set( |
|
87 | + 'url_certif_city', |
|
88 | + 'module.php?mod=' . Constants::MODULE_MAJ_CERTIF_NAME . |
|
89 | + '&mod_action=Certificate@listAll' . |
|
90 | + '&ged=' . $tree->getNameUrl() . |
|
91 | + '&city=' . Functions::encryptToSafeBase64($certificate->getCity()) |
|
92 | + ); |
|
93 | 93 | |
94 | - $controller->addInlineJavascript(' |
|
94 | + $controller->addInlineJavascript(' |
|
95 | 95 | jQuery("#certificate-tabs").tabs(); |
96 | 96 | jQuery("#certificate-tabs").css("visibility", "visible"); |
97 | 97 | '); |
98 | 98 | |
99 | - $data->set('has_linked_indis', false); |
|
100 | - $data->set('has_linked_fams', false); |
|
99 | + $data->set('has_linked_indis', false); |
|
100 | + $data->set('has_linked_fams', false); |
|
101 | 101 | |
102 | - $linked_indis = $certificate->linkedIndividuals(); |
|
103 | - $linked_fams = $certificate->linkedFamilies(); |
|
102 | + $linked_indis = $certificate->linkedIndividuals(); |
|
103 | + $linked_fams = $certificate->linkedFamilies(); |
|
104 | 104 | |
105 | - if($linked_indis && count($linked_indis) > 0) { |
|
106 | - $data->set('has_linked_indis', true); |
|
107 | - $data->set('linked_indis', $linked_indis); |
|
108 | - } |
|
105 | + if($linked_indis && count($linked_indis) > 0) { |
|
106 | + $data->set('has_linked_indis', true); |
|
107 | + $data->set('linked_indis', $linked_indis); |
|
108 | + } |
|
109 | 109 | |
110 | - if(!empty($linked_fams)) { |
|
111 | - $data->set('has_linked_fams', true); |
|
112 | - $data->set('linked_fams', $linked_fams); |
|
113 | - } |
|
114 | - } |
|
115 | - |
|
116 | - ViewFactory::make('Certificate', $this, $controller, $data)->render(); |
|
117 | - } |
|
110 | + if(!empty($linked_fams)) { |
|
111 | + $data->set('has_linked_fams', true); |
|
112 | + $data->set('linked_fams', $linked_fams); |
|
113 | + } |
|
114 | + } |
|
115 | + |
|
116 | + ViewFactory::make('Certificate', $this, $controller, $data)->render(); |
|
117 | + } |
|
118 | 118 | |
119 | - /** |
|
120 | - * Certificate@image |
|
121 | - */ |
|
122 | - public function image() { |
|
123 | - $tree = Globals::getTree(); |
|
124 | - $cid = Filter::get('cid'); |
|
125 | - $certificate = null; |
|
126 | - if(!empty($cid)) $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
127 | - |
|
128 | - $imageBuilder = new ImageBuilder($certificate); |
|
129 | - |
|
130 | - if (!empty(Filter::get('cb'))) { |
|
131 | - $imageBuilder->setExpireOffset($imageBuilder->getExpireOffset() * 7); |
|
132 | - } |
|
133 | - |
|
134 | - $imageBuilder |
|
135 | - ->setShowWatermark(Auth::accessLevel($tree) >= $this->module->getSetting('MAJ_SHOW_NO_WATERMARK', Auth::PRIV_HIDE)) |
|
136 | - ->setFontMaxSize($this->module->getSetting('MAJ_WM_FONT_MAXSIZE', 18)) |
|
137 | - ->setFontColor($this->module->getSetting('MAJ_WM_FONT_COLOR', '#4D6DF3')) |
|
138 | - ; |
|
139 | - |
|
140 | - $imageBuilder->render(); |
|
141 | - |
|
142 | - } |
|
119 | + /** |
|
120 | + * Certificate@image |
|
121 | + */ |
|
122 | + public function image() { |
|
123 | + $tree = Globals::getTree(); |
|
124 | + $cid = Filter::get('cid'); |
|
125 | + $certificate = null; |
|
126 | + if(!empty($cid)) $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
127 | + |
|
128 | + $imageBuilder = new ImageBuilder($certificate); |
|
129 | + |
|
130 | + if (!empty(Filter::get('cb'))) { |
|
131 | + $imageBuilder->setExpireOffset($imageBuilder->getExpireOffset() * 7); |
|
132 | + } |
|
133 | + |
|
134 | + $imageBuilder |
|
135 | + ->setShowWatermark(Auth::accessLevel($tree) >= $this->module->getSetting('MAJ_SHOW_NO_WATERMARK', Auth::PRIV_HIDE)) |
|
136 | + ->setFontMaxSize($this->module->getSetting('MAJ_WM_FONT_MAXSIZE', 18)) |
|
137 | + ->setFontColor($this->module->getSetting('MAJ_WM_FONT_COLOR', '#4D6DF3')) |
|
138 | + ; |
|
139 | + |
|
140 | + $imageBuilder->render(); |
|
141 | + |
|
142 | + } |
|
143 | 143 | |
144 | - /** |
|
145 | - * Certificate@listAll |
|
146 | - */ |
|
147 | - public function listAll() { |
|
148 | - $tree = Globals::getTree(); |
|
149 | - $controller = new PageController(); |
|
150 | - $controller |
|
151 | - ->setPageTitle(I18N::translate('Certificates')) |
|
152 | - ->restrictAccess( |
|
153 | - $this->module->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($tree) |
|
154 | - ); |
|
155 | - |
|
156 | - $city = Filter::get('city'); |
|
157 | - |
|
158 | - if(!empty($city) && strlen($city) > 22){ |
|
159 | - $city = Functions::decryptFromSafeBase64($city); |
|
160 | - $controller->setPageTitle(I18N::translate('Certificates for %s', $city)); |
|
161 | - } |
|
162 | - |
|
163 | - $data = new ViewBag(); |
|
164 | - $data->set('title', $controller->getPageTitle()); |
|
165 | - $data->set('url_module', $this->module->getName()); |
|
166 | - $data->set('url_action', 'Certificate@listAll'); |
|
167 | - $data->set('url_ged', $tree->getNameUrl()); |
|
168 | - |
|
169 | - $data->set('cities', $this->provider->getCitiesList()); |
|
170 | - $data->set('selected_city', $city); |
|
171 | - |
|
172 | - $data->set('has_list', false); |
|
173 | - if(!empty($city)) { |
|
174 | - $table_id = 'table-certiflist-' . Uuid::uuid4(); |
|
144 | + /** |
|
145 | + * Certificate@listAll |
|
146 | + */ |
|
147 | + public function listAll() { |
|
148 | + $tree = Globals::getTree(); |
|
149 | + $controller = new PageController(); |
|
150 | + $controller |
|
151 | + ->setPageTitle(I18N::translate('Certificates')) |
|
152 | + ->restrictAccess( |
|
153 | + $this->module->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($tree) |
|
154 | + ); |
|
155 | + |
|
156 | + $city = Filter::get('city'); |
|
157 | + |
|
158 | + if(!empty($city) && strlen($city) > 22){ |
|
159 | + $city = Functions::decryptFromSafeBase64($city); |
|
160 | + $controller->setPageTitle(I18N::translate('Certificates for %s', $city)); |
|
161 | + } |
|
162 | + |
|
163 | + $data = new ViewBag(); |
|
164 | + $data->set('title', $controller->getPageTitle()); |
|
165 | + $data->set('url_module', $this->module->getName()); |
|
166 | + $data->set('url_action', 'Certificate@listAll'); |
|
167 | + $data->set('url_ged', $tree->getNameUrl()); |
|
168 | + |
|
169 | + $data->set('cities', $this->provider->getCitiesList()); |
|
170 | + $data->set('selected_city', $city); |
|
171 | + |
|
172 | + $data->set('has_list', false); |
|
173 | + if(!empty($city)) { |
|
174 | + $table_id = 'table-certiflist-' . Uuid::uuid4(); |
|
175 | 175 | |
176 | - $certif_list = $this->provider->getCertificatesList($city); |
|
177 | - if(!empty($certif_list)) { |
|
178 | - $data->set('has_list', true); |
|
179 | - $data->set('table_id', $table_id); |
|
180 | - $data->set('certificate_list', $certif_list); |
|
176 | + $certif_list = $this->provider->getCertificatesList($city); |
|
177 | + if(!empty($certif_list)) { |
|
178 | + $data->set('has_list', true); |
|
179 | + $data->set('table_id', $table_id); |
|
180 | + $data->set('certificate_list', $certif_list); |
|
181 | 181 | |
182 | - $controller |
|
183 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
184 | - ->addInlineJavascript(' |
|
182 | + $controller |
|
183 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
184 | + ->addInlineJavascript(' |
|
185 | 185 | jQuery.fn.dataTableExt.oSort["text-asc"] = textCompareAsc; |
186 | 186 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
187 | 187 | |
@@ -203,28 +203,28 @@ discard block |
||
203 | 203 | jQuery(".certificate-list").css("visibility", "visible"); |
204 | 204 | jQuery(".loading-image").css("display", "none"); |
205 | 205 | '); |
206 | - } |
|
207 | - } |
|
206 | + } |
|
207 | + } |
|
208 | 208 | |
209 | - ViewFactory::make('CertificatesList', $this, $controller, $data)->render(); |
|
209 | + ViewFactory::make('CertificatesList', $this, $controller, $data)->render(); |
|
210 | 210 | |
211 | - } |
|
211 | + } |
|
212 | 212 | |
213 | - /** |
|
214 | - * Certificate@autocomplete |
|
215 | - */ |
|
216 | - public function autocomplete() { |
|
217 | - $tree = Globals::getTree(); |
|
218 | - $controller = new JsonController(); |
|
219 | - |
|
220 | - $city = Filter::get('city'); |
|
221 | - $contains = Filter::get('term'); |
|
213 | + /** |
|
214 | + * Certificate@autocomplete |
|
215 | + */ |
|
216 | + public function autocomplete() { |
|
217 | + $tree = Globals::getTree(); |
|
218 | + $controller = new JsonController(); |
|
219 | + |
|
220 | + $city = Filter::get('city'); |
|
221 | + $contains = Filter::get('term'); |
|
222 | 222 | |
223 | - $controller |
|
224 | - ->restrictAccess(Auth::isEditor($tree) && !empty($city) && !empty($contains)) |
|
225 | - ->pageHeader(); |
|
223 | + $controller |
|
224 | + ->restrictAccess(Auth::isEditor($tree) && !empty($city) && !empty($contains)) |
|
225 | + ->pageHeader(); |
|
226 | 226 | |
227 | - $listCert = $this->provider->getCertificatesListBeginWith($city, $contains); |
|
228 | - $controller->encode($listCert); |
|
229 | - } |
|
227 | + $listCert = $this->provider->getCertificatesListBeginWith($city, $contains); |
|
228 | + $controller->encode($listCert); |
|
229 | + } |
|
230 | 230 | } |
231 | 231 | \ No newline at end of file |
@@ -29,75 +29,75 @@ |
||
29 | 29 | */ |
30 | 30 | class AdminConfigController extends MvcController |
31 | 31 | { |
32 | - /** |
|
33 | - * Manage updates sent from the AdminConfig@index form. |
|
34 | - */ |
|
35 | - protected function update() { |
|
32 | + /** |
|
33 | + * Manage updates sent from the AdminConfig@index form. |
|
34 | + */ |
|
35 | + protected function update() { |
|
36 | 36 | |
37 | - if(Auth::isAdmin()){ |
|
37 | + if(Auth::isAdmin()){ |
|
38 | 38 | |
39 | - $this->module->setSetting('MAJ_SHOW_CERT', Filter::post('MAJ_SHOW_CERT')); |
|
40 | - $this->module->setSetting('MAJ_SHOW_NO_WATERMARK', Filter::post('MAJ_SHOW_NO_WATERMARK')); |
|
39 | + $this->module->setSetting('MAJ_SHOW_CERT', Filter::post('MAJ_SHOW_CERT')); |
|
40 | + $this->module->setSetting('MAJ_SHOW_NO_WATERMARK', Filter::post('MAJ_SHOW_NO_WATERMARK')); |
|
41 | 41 | |
42 | - if($MAJ_WM_DEFAULT = Filter::post('MAJ_WM_DEFAULT')) { |
|
43 | - $this->module->setSetting('MAJ_WM_DEFAULT', $MAJ_WM_DEFAULT); |
|
44 | - } |
|
42 | + if($MAJ_WM_DEFAULT = Filter::post('MAJ_WM_DEFAULT')) { |
|
43 | + $this->module->setSetting('MAJ_WM_DEFAULT', $MAJ_WM_DEFAULT); |
|
44 | + } |
|
45 | 45 | |
46 | - if($MAJ_WM_FONT_MAXSIZE = Filter::postInteger('MAJ_WM_FONT_MAXSIZE')) { |
|
47 | - $this->module->setSetting('MAJ_WM_FONT_MAXSIZE', $MAJ_WM_FONT_MAXSIZE); |
|
48 | - } |
|
46 | + if($MAJ_WM_FONT_MAXSIZE = Filter::postInteger('MAJ_WM_FONT_MAXSIZE')) { |
|
47 | + $this->module->setSetting('MAJ_WM_FONT_MAXSIZE', $MAJ_WM_FONT_MAXSIZE); |
|
48 | + } |
|
49 | 49 | |
50 | - // Only accept valid color for MAJ_WM_FONT_COLOR |
|
51 | - $MAJ_WM_FONT_COLOR = Filter::post('MAJ_WM_FONT_COLOR', '#([a-fA-F0-9]{3}){1,2}'); |
|
52 | - if($MAJ_WM_FONT_COLOR) { |
|
53 | - $this->module->setSetting('MAJ_WM_FONT_COLOR', $MAJ_WM_FONT_COLOR); |
|
54 | - } |
|
50 | + // Only accept valid color for MAJ_WM_FONT_COLOR |
|
51 | + $MAJ_WM_FONT_COLOR = Filter::post('MAJ_WM_FONT_COLOR', '#([a-fA-F0-9]{3}){1,2}'); |
|
52 | + if($MAJ_WM_FONT_COLOR) { |
|
53 | + $this->module->setSetting('MAJ_WM_FONT_COLOR', $MAJ_WM_FONT_COLOR); |
|
54 | + } |
|
55 | 55 | |
56 | - // Only accept valid folders for MAJ_CERT_ROOTDIR |
|
57 | - $MAJ_CERT_ROOTDIR = preg_replace('/[\/\\\\]+/', '/', Filter::post('MAJ_CERT_ROOTDIR') . '/'); |
|
58 | - if (substr($MAJ_CERT_ROOTDIR, 0, 1) === '/') { |
|
59 | - $MAJ_CERT_ROOTDIR = substr($MAJ_CERT_ROOTDIR, 1); |
|
60 | - } |
|
56 | + // Only accept valid folders for MAJ_CERT_ROOTDIR |
|
57 | + $MAJ_CERT_ROOTDIR = preg_replace('/[\/\\\\]+/', '/', Filter::post('MAJ_CERT_ROOTDIR') . '/'); |
|
58 | + if (substr($MAJ_CERT_ROOTDIR, 0, 1) === '/') { |
|
59 | + $MAJ_CERT_ROOTDIR = substr($MAJ_CERT_ROOTDIR, 1); |
|
60 | + } |
|
61 | 61 | |
62 | - if ($MAJ_CERT_ROOTDIR) { |
|
63 | - if (is_dir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) { |
|
64 | - $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR); |
|
65 | - } elseif (File::mkdir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) { |
|
66 | - $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR); |
|
67 | - FlashMessages::addMessage(I18N::translate('The folder %s has been created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'info'); |
|
68 | - } else { |
|
69 | - FlashMessages::addMessage(I18N::translate('The folder %s does not exist, and it could not be created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'danger'); |
|
70 | - } |
|
71 | - } |
|
62 | + if ($MAJ_CERT_ROOTDIR) { |
|
63 | + if (is_dir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) { |
|
64 | + $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR); |
|
65 | + } elseif (File::mkdir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) { |
|
66 | + $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR); |
|
67 | + FlashMessages::addMessage(I18N::translate('The folder %s has been created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'info'); |
|
68 | + } else { |
|
69 | + FlashMessages::addMessage(I18N::translate('The folder %s does not exist, and it could not be created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'danger'); |
|
70 | + } |
|
71 | + } |
|
72 | 72 | |
73 | - FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->module->getTitle()), 'success'); |
|
73 | + FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->module->getTitle()), 'success'); |
|
74 | 74 | |
75 | - return; |
|
76 | - } |
|
77 | - } |
|
75 | + return; |
|
76 | + } |
|
77 | + } |
|
78 | 78 | |
79 | - /** |
|
80 | - * Pages |
|
81 | - */ |
|
79 | + /** |
|
80 | + * Pages |
|
81 | + */ |
|
82 | 82 | |
83 | - /** |
|
84 | - * AdminConfig@index |
|
85 | - */ |
|
86 | - public function index() { |
|
87 | - $action = Filter::post('action'); |
|
88 | - if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
83 | + /** |
|
84 | + * AdminConfig@index |
|
85 | + */ |
|
86 | + public function index() { |
|
87 | + $action = Filter::post('action'); |
|
88 | + if($action == 'update' && Filter::checkCsrf()) $this->update(); |
|
89 | 89 | |
90 | - Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
91 | - $ctrl = new PageController(); |
|
92 | - $ctrl |
|
93 | - ->restrictAccess(Auth::isAdmin()) |
|
94 | - ->setPageTitle($this->module->getTitle()); |
|
90 | + Theme::theme(new AdministrationTheme)->init(Globals::getTree()); |
|
91 | + $ctrl = new PageController(); |
|
92 | + $ctrl |
|
93 | + ->restrictAccess(Auth::isAdmin()) |
|
94 | + ->setPageTitle($this->module->getTitle()); |
|
95 | 95 | |
96 | - $view_bag = new ViewBag(); |
|
97 | - $view_bag->set('title', $ctrl->getPageTitle()); |
|
98 | - $view_bag->set('module', $this->module); |
|
96 | + $view_bag = new ViewBag(); |
|
97 | + $view_bag->set('title', $ctrl->getPageTitle()); |
|
98 | + $view_bag->set('module', $this->module); |
|
99 | 99 | |
100 | - ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
101 | - } |
|
100 | + ViewFactory::make('AdminConfig', $this, $ctrl, $view_bag)->render(); |
|
101 | + } |
|
102 | 102 | |
103 | 103 | } |
104 | 104 | \ No newline at end of file |
@@ -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 |
@@ -21,79 +21,79 @@ |
||
21 | 21 | * Welcome Block Module. |
22 | 22 | */ |
23 | 23 | class WelcomeBlockModule extends AbstractModule |
24 | - implements ModuleBlockInterface |
|
24 | + implements ModuleBlockInterface |
|
25 | 25 | { |
26 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
27 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
26 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
27 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
28 | 28 | |
29 | - /** |
|
30 | - * {@inhericDoc} |
|
31 | - */ |
|
32 | - public function getTitle() { |
|
33 | - return /* I18N: Name of the “WelcomeBlock” module */ I18N::translate('MyArtJaub Welcome Block'); |
|
34 | - } |
|
29 | + /** |
|
30 | + * {@inhericDoc} |
|
31 | + */ |
|
32 | + public function getTitle() { |
|
33 | + return /* I18N: Name of the “WelcomeBlock” module */ I18N::translate('MyArtJaub Welcome Block'); |
|
34 | + } |
|
35 | 35 | |
36 | - /** |
|
37 | - * {@inhericDoc} |
|
38 | - */ |
|
39 | - public function getDescription() { |
|
40 | - return /* I18N: Description of the “WelcomeBlock” module */ I18N::translate('The MyArtJaub Welcome block welcomes the visitor to the site, allows a quick login to the site, and displays statistics on visits.'); |
|
41 | - } |
|
36 | + /** |
|
37 | + * {@inhericDoc} |
|
38 | + */ |
|
39 | + public function getDescription() { |
|
40 | + return /* I18N: Description of the “WelcomeBlock” module */ I18N::translate('The MyArtJaub Welcome block welcomes the visitor to the site, allows a quick login to the site, and displays statistics on visits.'); |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * {@inhericDoc} |
|
45 | - */ |
|
46 | - public function modAction($mod_action) { |
|
47 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
48 | - } |
|
43 | + /** |
|
44 | + * {@inhericDoc} |
|
45 | + */ |
|
46 | + public function modAction($mod_action) { |
|
47 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
48 | + } |
|
49 | 49 | |
50 | - /** |
|
51 | - * {@inhericDoc} |
|
52 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::getBlock() |
|
53 | - */ |
|
50 | + /** |
|
51 | + * {@inhericDoc} |
|
52 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::getBlock() |
|
53 | + */ |
|
54 | 54 | public function getBlock($block_id, $template = true, $cfg = array()) { |
55 | - $wb_controller = new WelcomeBlockController($this); |
|
56 | - return $wb_controller->index(Globals::getController(), Globals::getTree(), $block_id, $template); |
|
57 | - } |
|
55 | + $wb_controller = new WelcomeBlockController($this); |
|
56 | + return $wb_controller->index(Globals::getController(), Globals::getTree(), $block_id, $template); |
|
57 | + } |
|
58 | 58 | |
59 | - /** |
|
60 | - * {@inhericDoc} |
|
61 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::loadAjax() |
|
62 | - */ |
|
63 | - public function loadAjax() { |
|
64 | - return false; |
|
65 | - } |
|
59 | + /** |
|
60 | + * {@inhericDoc} |
|
61 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::loadAjax() |
|
62 | + */ |
|
63 | + public function loadAjax() { |
|
64 | + return false; |
|
65 | + } |
|
66 | 66 | |
67 | - /** |
|
68 | - * {@inhericDoc} |
|
69 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isUserBlock() |
|
70 | - */ |
|
71 | - public function isUserBlock() { |
|
72 | - return false; |
|
73 | - } |
|
67 | + /** |
|
68 | + * {@inhericDoc} |
|
69 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isUserBlock() |
|
70 | + */ |
|
71 | + public function isUserBlock() { |
|
72 | + return false; |
|
73 | + } |
|
74 | 74 | |
75 | - /** |
|
76 | - * {@inhericDoc} |
|
77 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isGedcomBlock() |
|
78 | - */ |
|
79 | - public function isGedcomBlock() { |
|
80 | - return true; |
|
81 | - } |
|
75 | + /** |
|
76 | + * {@inhericDoc} |
|
77 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::isGedcomBlock() |
|
78 | + */ |
|
79 | + public function isGedcomBlock() { |
|
80 | + return true; |
|
81 | + } |
|
82 | 82 | |
83 | - /** |
|
84 | - * {@inhericDoc} |
|
85 | - * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::configureBlock() |
|
86 | - */ |
|
87 | - public function configureBlock($block_id) { |
|
88 | - $wb_controller = new WelcomeBlockController($this); |
|
89 | - try { |
|
90 | - return $wb_controller->config($block_id); |
|
91 | - } |
|
92 | - catch (MvcException $ex) { |
|
93 | - if($ex->getHttpCode() != 200) throw $ex; |
|
94 | - return; |
|
95 | - } |
|
96 | - } |
|
83 | + /** |
|
84 | + * {@inhericDoc} |
|
85 | + * @see \Fisharebest\Webtrees\Module\ModuleBlockInterface::configureBlock() |
|
86 | + */ |
|
87 | + public function configureBlock($block_id) { |
|
88 | + $wb_controller = new WelcomeBlockController($this); |
|
89 | + try { |
|
90 | + return $wb_controller->config($block_id); |
|
91 | + } |
|
92 | + catch (MvcException $ex) { |
|
93 | + if($ex->getHttpCode() != 200) throw $ex; |
|
94 | + return; |
|
95 | + } |
|
96 | + } |
|
97 | 97 | |
98 | 98 | } |
99 | 99 | |
100 | 100 | \ No newline at end of file |
@@ -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 |
@@ -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 |
@@ -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 | } |
@@ -25,86 +25,86 @@ |
||
25 | 25 | class GeoDispersionModule extends AbstractModule implements ModuleConfigInterface, DependentInterface { |
26 | 26 | |
27 | 27 | // How to update the database schema for this module |
28 | - const SCHEMA_TARGET_VERSION = 1; |
|
29 | - const SCHEMA_SETTING_NAME = 'MAJ_GEODISP_SCHEMA_VERSION'; |
|
30 | - const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\GeoDispersion\Schema'; |
|
28 | + const SCHEMA_TARGET_VERSION = 1; |
|
29 | + const SCHEMA_SETTING_NAME = 'MAJ_GEODISP_SCHEMA_VERSION'; |
|
30 | + const SCHEMA_MIGRATION_PREFIX = '\MyArtJaub\Webtrees\Module\GeoDispersion\Schema'; |
|
31 | 31 | |
32 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
33 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
32 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
33 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
34 | 34 | |
35 | - /** |
|
36 | - * GeoDispersion analysis provider |
|
37 | - * @var \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider $provider |
|
38 | - */ |
|
39 | - protected $provider; |
|
35 | + /** |
|
36 | + * GeoDispersion analysis provider |
|
37 | + * @var \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider $provider |
|
38 | + */ |
|
39 | + protected $provider; |
|
40 | 40 | |
41 | - /** |
|
42 | - * {@inhericDoc} |
|
43 | - */ |
|
44 | - public function getTitle() { |
|
45 | - return /* I18N: Name of the “Hooks” module */ I18N::translate('Geographical Dispersion'); |
|
46 | - } |
|
41 | + /** |
|
42 | + * {@inhericDoc} |
|
43 | + */ |
|
44 | + public function getTitle() { |
|
45 | + return /* I18N: Name of the “Hooks” module */ I18N::translate('Geographical Dispersion'); |
|
46 | + } |
|
47 | 47 | |
48 | - /** |
|
49 | - * {@inhericDoc} |
|
50 | - */ |
|
51 | - public function getDescription() { |
|
52 | - return /* I18N: Description of the “Hooks” module */ I18N::translate('Display the geographical dispersion of the root person’s Sosa ancestors.'); |
|
53 | - } |
|
48 | + /** |
|
49 | + * {@inhericDoc} |
|
50 | + */ |
|
51 | + public function getDescription() { |
|
52 | + return /* I18N: Description of the “Hooks” module */ I18N::translate('Display the geographical dispersion of the root person’s Sosa ancestors.'); |
|
53 | + } |
|
54 | 54 | |
55 | - /** |
|
56 | - * {@inhericDoc} |
|
57 | - */ |
|
58 | - public function modAction($mod_action) { |
|
59 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
55 | + /** |
|
56 | + * {@inhericDoc} |
|
57 | + */ |
|
58 | + public function modAction($mod_action) { |
|
59 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
60 | 60 | |
61 | - \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
62 | - } |
|
61 | + \MyArtJaub\Webtrees\Mvc\Dispatcher::getInstance()->handle($this, $mod_action); |
|
62 | + } |
|
63 | 63 | |
64 | - /** |
|
65 | - * {@inhericDoc} |
|
66 | - * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
67 | - */ |
|
68 | - public function getConfigLink() { |
|
69 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
64 | + /** |
|
65 | + * {@inhericDoc} |
|
66 | + * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
|
67 | + */ |
|
68 | + public function getConfigLink() { |
|
69 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
70 | 70 | |
71 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
72 | - } |
|
71 | + return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
72 | + } |
|
73 | 73 | |
74 | - /** |
|
75 | - * {@inhericDoc} |
|
76 | - * @see \MyArtJaub\Webtrees\Module\DependentInterface::validatePrerequisites() |
|
77 | - */ |
|
78 | - public function validatePrerequisites() { |
|
79 | - try { |
|
80 | - Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
74 | + /** |
|
75 | + * {@inhericDoc} |
|
76 | + * @see \MyArtJaub\Webtrees\Module\DependentInterface::validatePrerequisites() |
|
77 | + */ |
|
78 | + public function validatePrerequisites() { |
|
79 | + try { |
|
80 | + Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION); |
|
81 | 81 | |
82 | - return !is_null(Module::getModuleByName(Constants::MODULE_MAJ_SOSA_NAME)); |
|
83 | - } |
|
84 | - catch (\Exception $ex) { } |
|
85 | - return false; |
|
86 | - } |
|
82 | + return !is_null(Module::getModuleByName(Constants::MODULE_MAJ_SOSA_NAME)); |
|
83 | + } |
|
84 | + catch (\Exception $ex) { } |
|
85 | + return false; |
|
86 | + } |
|
87 | 87 | |
88 | 88 | /** |
89 | 89 | * Get the GeoAnalysis Provider (initialise it if not done yet). |
90 | 90 | * |
91 | 91 | * @return \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider |
92 | 92 | */ |
93 | - public function getProvider() { |
|
94 | - if(!$this->provider) { |
|
95 | - $this->provider = new GeoAnalysisProvider(Globals::getTree()); |
|
96 | - } |
|
97 | - return $this->provider; |
|
98 | - } |
|
93 | + public function getProvider() { |
|
94 | + if(!$this->provider) { |
|
95 | + $this->provider = new GeoAnalysisProvider(Globals::getTree()); |
|
96 | + } |
|
97 | + return $this->provider; |
|
98 | + } |
|
99 | 99 | |
100 | 100 | /** |
101 | 101 | * Set the GeoAnalysis Provider. |
102 | 102 | * |
103 | 103 | * @return \MyArtJaub\Webtrees\Module\GeoDispersion\Model\GeoAnalysisProvider |
104 | 104 | */ |
105 | - public function setProvider(GeoAnalysisProvider $provider) { |
|
106 | - $this->provider = $provider; |
|
107 | - } |
|
105 | + public function setProvider(GeoAnalysisProvider $provider) { |
|
106 | + $this->provider = $provider; |
|
107 | + } |
|
108 | 108 | |
109 | 109 | |
110 | 110 | } |
@@ -37,67 +37,67 @@ discard block |
||
37 | 37 | */ |
38 | 38 | class SosaListController extends MvcController |
39 | 39 | { |
40 | - /** |
|
41 | - * Sosa Provider for the controller |
|
42 | - * @var SosaProvider $sosa_provider |
|
43 | - */ |
|
44 | - protected $sosa_provider; |
|
40 | + /** |
|
41 | + * Sosa Provider for the controller |
|
42 | + * @var SosaProvider $sosa_provider |
|
43 | + */ |
|
44 | + protected $sosa_provider; |
|
45 | 45 | |
46 | - /** |
|
47 | - * Generation used for the controller |
|
48 | - * @var int $generation |
|
49 | - */ |
|
50 | - protected $generation; |
|
46 | + /** |
|
47 | + * Generation used for the controller |
|
48 | + * @var int $generation |
|
49 | + */ |
|
50 | + protected $generation; |
|
51 | 51 | |
52 | - /** |
|
53 | - * ViewBag to hold data for the controller |
|
54 | - * @var ViewBag $view_bag |
|
55 | - */ |
|
56 | - protected $view_bag; |
|
52 | + /** |
|
53 | + * ViewBag to hold data for the controller |
|
54 | + * @var ViewBag $view_bag |
|
55 | + */ |
|
56 | + protected $view_bag; |
|
57 | 57 | |
58 | - /** |
|
59 | - * {@inheritDoc} |
|
60 | - * @see \MyArtJaub\Webtrees\Mvc\Controller\MvcController::__construct(AbstractModule $module) |
|
61 | - */ |
|
62 | - public function __construct(AbstractModule $module) { |
|
63 | - parent::__construct($module); |
|
58 | + /** |
|
59 | + * {@inheritDoc} |
|
60 | + * @see \MyArtJaub\Webtrees\Mvc\Controller\MvcController::__construct(AbstractModule $module) |
|
61 | + */ |
|
62 | + public function __construct(AbstractModule $module) { |
|
63 | + parent::__construct($module); |
|
64 | 64 | |
65 | - $this->sosa_provider = new SosaProvider(Globals::getTree(), Auth::user()); |
|
65 | + $this->sosa_provider = new SosaProvider(Globals::getTree(), Auth::user()); |
|
66 | 66 | |
67 | - $this->generation = Filter::getInteger('gen'); |
|
67 | + $this->generation = Filter::getInteger('gen'); |
|
68 | 68 | |
69 | - $this->view_bag = new ViewBag(); |
|
70 | - $this->view_bag->set('generation', $this->generation); |
|
71 | - $this->view_bag->set('max_gen', $this->sosa_provider->getLastGeneration()); |
|
72 | - $this->view_bag->set('is_setup', $this->sosa_provider->isSetup() && $this->view_bag->get('max_gen', 0)> 0); |
|
69 | + $this->view_bag = new ViewBag(); |
|
70 | + $this->view_bag->set('generation', $this->generation); |
|
71 | + $this->view_bag->set('max_gen', $this->sosa_provider->getLastGeneration()); |
|
72 | + $this->view_bag->set('is_setup', $this->sosa_provider->isSetup() && $this->view_bag->get('max_gen', 0)> 0); |
|
73 | 73 | |
74 | - } |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * Pages |
|
79 | - */ |
|
77 | + /** |
|
78 | + * Pages |
|
79 | + */ |
|
80 | 80 | |
81 | - /** |
|
82 | - * SosaList@index |
|
83 | - */ |
|
84 | - public function index() { |
|
85 | - $wt_tree = Globals::getTree(); |
|
86 | - $controller = new PageController(); |
|
87 | - $controller |
|
88 | - ->setPageTitle(I18N::translate('Sosa Ancestors')); |
|
81 | + /** |
|
82 | + * SosaList@index |
|
83 | + */ |
|
84 | + public function index() { |
|
85 | + $wt_tree = Globals::getTree(); |
|
86 | + $controller = new PageController(); |
|
87 | + $controller |
|
88 | + ->setPageTitle(I18N::translate('Sosa Ancestors')); |
|
89 | 89 | |
90 | - $this->view_bag->set('title', $controller->getPageTitle()); |
|
90 | + $this->view_bag->set('title', $controller->getPageTitle()); |
|
91 | 91 | |
92 | - if($this->view_bag->get('is_setup', false)) { |
|
93 | - $this->view_bag->set('has_sosa', $this->generation > 0 && $this->sosa_provider->getSosaCountAtGeneration($this->generation) > 0); |
|
94 | - $this->view_bag->set('url_module', $this->module->getName()); |
|
95 | - $this->view_bag->set('url_action', 'SosaList'); |
|
96 | - $this->view_bag->set('url_ged', $wt_tree->getNameUrl()); |
|
97 | - $this->view_bag->set('min_gen', 1); |
|
92 | + if($this->view_bag->get('is_setup', false)) { |
|
93 | + $this->view_bag->set('has_sosa', $this->generation > 0 && $this->sosa_provider->getSosaCountAtGeneration($this->generation) > 0); |
|
94 | + $this->view_bag->set('url_module', $this->module->getName()); |
|
95 | + $this->view_bag->set('url_action', 'SosaList'); |
|
96 | + $this->view_bag->set('url_ged', $wt_tree->getNameUrl()); |
|
97 | + $this->view_bag->set('min_gen', 1); |
|
98 | 98 | |
99 | - if($this->view_bag->get('has_sosa', false)) { |
|
100 | - $controller->addInlineJavascript(' |
|
99 | + if($this->view_bag->get('has_sosa', false)) { |
|
100 | + $controller->addInlineJavascript(' |
|
101 | 101 | jQuery("#sosalist-tabs").tabs(); |
102 | 102 | jQuery("#sosalist-tabs").css("visibility", "visible"); |
103 | 103 | |
@@ -151,43 +151,43 @@ discard block |
||
151 | 151 | ); |
152 | 152 | |
153 | 153 | '); |
154 | - } |
|
155 | - } |
|
154 | + } |
|
155 | + } |
|
156 | 156 | |
157 | - ViewFactory::make('SosaList', $this, $controller, $this->view_bag)->render(); |
|
158 | - } |
|
157 | + ViewFactory::make('SosaList', $this, $controller, $this->view_bag)->render(); |
|
158 | + } |
|
159 | 159 | |
160 | 160 | |
161 | - /** |
|
162 | - * SosaList@missing |
|
163 | - */ |
|
164 | - public function missing() { |
|
165 | - $wt_tree = Globals::getTree(); |
|
166 | - $controller = new PageController(); |
|
167 | - $controller |
|
168 | - ->setPageTitle(I18N::translate('Missing Ancestors')); |
|
161 | + /** |
|
162 | + * SosaList@missing |
|
163 | + */ |
|
164 | + public function missing() { |
|
165 | + $wt_tree = Globals::getTree(); |
|
166 | + $controller = new PageController(); |
|
167 | + $controller |
|
168 | + ->setPageTitle(I18N::translate('Missing Ancestors')); |
|
169 | 169 | |
170 | - $this->view_bag->set('title', $controller->getPageTitle()); |
|
170 | + $this->view_bag->set('title', $controller->getPageTitle()); |
|
171 | 171 | |
172 | - if($this->view_bag->get('is_setup', false)) { |
|
173 | - $this->view_bag->set('url_module', $this->module->getName()); |
|
174 | - $this->view_bag->set('url_action', 'SosaList@missing'); |
|
175 | - $this->view_bag->set('url_ged', $wt_tree->getNameUrl()); |
|
176 | - $this->view_bag->set('min_gen', 2); |
|
172 | + if($this->view_bag->get('is_setup', false)) { |
|
173 | + $this->view_bag->set('url_module', $this->module->getName()); |
|
174 | + $this->view_bag->set('url_action', 'SosaList@missing'); |
|
175 | + $this->view_bag->set('url_ged', $wt_tree->getNameUrl()); |
|
176 | + $this->view_bag->set('min_gen', 2); |
|
177 | 177 | |
178 | - $missing_list = $this->sosa_provider->getMissingSosaListAtGeneration($this->generation); |
|
179 | - $this->view_bag->set('has_missing', $this->generation > 0 && count($missing_list) > 0); |
|
178 | + $missing_list = $this->sosa_provider->getMissingSosaListAtGeneration($this->generation); |
|
179 | + $this->view_bag->set('has_missing', $this->generation > 0 && count($missing_list) > 0); |
|
180 | 180 | |
181 | - $perc_sosa = Functions::safeDivision($this->sosa_provider->getSosaCountAtGeneration($this->generation), pow(2, $this->generation -1)); |
|
182 | - $this->view_bag->set('perc_sosa', $perc_sosa); |
|
181 | + $perc_sosa = Functions::safeDivision($this->sosa_provider->getSosaCountAtGeneration($this->generation), pow(2, $this->generation -1)); |
|
182 | + $this->view_bag->set('perc_sosa', $perc_sosa); |
|
183 | 183 | |
184 | - if($this->view_bag->get('has_missing', false)) { |
|
185 | - $table_id = 'table-sosa-missing-' . Uuid::uuid4(); |
|
186 | - $this->view_bag->set('table_id', $table_id); |
|
184 | + if($this->view_bag->get('has_missing', false)) { |
|
185 | + $table_id = 'table-sosa-missing-' . Uuid::uuid4(); |
|
186 | + $this->view_bag->set('table_id', $table_id); |
|
187 | 187 | |
188 | - $controller |
|
189 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
190 | - ->addInlineJavascript(' |
|
188 | + $controller |
|
189 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
190 | + ->addInlineJavascript(' |
|
191 | 191 | jQuery.fn.dataTableExt.oSort["text-asc"] = textCompareAsc; |
192 | 192 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
193 | 193 | |
@@ -239,76 +239,76 @@ discard block |
||
239 | 239 | jQuery(".loading-image").css("display", "none"); |
240 | 240 | '); |
241 | 241 | |
242 | - $unique_indis = array(); |
|
243 | - $sum_missing_different = 0; |
|
244 | - $sum_missing_different_without_hidden = 0; |
|
245 | - foreach($missing_list as $num => $missing_tab) { |
|
246 | - if(isset($unique_indis[$missing_tab['indi']])) { |
|
247 | - unset($missing_list[$num]); |
|
248 | - continue; |
|
249 | - } |
|
250 | - $sum_missing_different += !$missing_tab['has_father'] + !$missing_tab['has_mother']; |
|
251 | - $person = Individual::getInstance($missing_tab['indi'], $wt_tree); |
|
252 | - if (!$person || !$person->canShowName()) { |
|
253 | - unset($missing_list[$num]); |
|
254 | - continue; |
|
255 | - } |
|
256 | - $sum_missing_different_without_hidden += !$missing_tab['has_father'] + !$missing_tab['has_mother']; |
|
257 | - $unique_indis[$person->getXref()] = true; |
|
258 | - $missing_tab['indi'] = $person; |
|
259 | - $missing_list[$num] = $missing_tab; |
|
260 | - } |
|
261 | - $this->view_bag->set('missing_list', $missing_list); |
|
262 | - $this->view_bag->set('missing_diff_count', $sum_missing_different); |
|
263 | - $this->view_bag->set('missing_hidden', $sum_missing_different - $sum_missing_different_without_hidden); |
|
264 | - $perc_sosa_potential = Functions::safeDivision($this->sosa_provider->getSosaCountAtGeneration($this->generation - 1), pow(2, $this->generation-2)); |
|
265 | - $this->view_bag->set('perc_sosa_potential', $perc_sosa_potential); |
|
266 | - } |
|
267 | - } |
|
242 | + $unique_indis = array(); |
|
243 | + $sum_missing_different = 0; |
|
244 | + $sum_missing_different_without_hidden = 0; |
|
245 | + foreach($missing_list as $num => $missing_tab) { |
|
246 | + if(isset($unique_indis[$missing_tab['indi']])) { |
|
247 | + unset($missing_list[$num]); |
|
248 | + continue; |
|
249 | + } |
|
250 | + $sum_missing_different += !$missing_tab['has_father'] + !$missing_tab['has_mother']; |
|
251 | + $person = Individual::getInstance($missing_tab['indi'], $wt_tree); |
|
252 | + if (!$person || !$person->canShowName()) { |
|
253 | + unset($missing_list[$num]); |
|
254 | + continue; |
|
255 | + } |
|
256 | + $sum_missing_different_without_hidden += !$missing_tab['has_father'] + !$missing_tab['has_mother']; |
|
257 | + $unique_indis[$person->getXref()] = true; |
|
258 | + $missing_tab['indi'] = $person; |
|
259 | + $missing_list[$num] = $missing_tab; |
|
260 | + } |
|
261 | + $this->view_bag->set('missing_list', $missing_list); |
|
262 | + $this->view_bag->set('missing_diff_count', $sum_missing_different); |
|
263 | + $this->view_bag->set('missing_hidden', $sum_missing_different - $sum_missing_different_without_hidden); |
|
264 | + $perc_sosa_potential = Functions::safeDivision($this->sosa_provider->getSosaCountAtGeneration($this->generation - 1), pow(2, $this->generation-2)); |
|
265 | + $this->view_bag->set('perc_sosa_potential', $perc_sosa_potential); |
|
266 | + } |
|
267 | + } |
|
268 | 268 | |
269 | - ViewFactory::make('SosaListMissing', $this, $controller, $this->view_bag)->render(); |
|
270 | - } |
|
269 | + ViewFactory::make('SosaListMissing', $this, $controller, $this->view_bag)->render(); |
|
270 | + } |
|
271 | 271 | |
272 | - /** |
|
273 | - * SosaList@sosalist |
|
274 | - */ |
|
275 | - public function sosalist() { |
|
272 | + /** |
|
273 | + * SosaList@sosalist |
|
274 | + */ |
|
275 | + public function sosalist() { |
|
276 | 276 | |
277 | - $type = Filter::get('type', 'indi|fam', null); |
|
277 | + $type = Filter::get('type', 'indi|fam', null); |
|
278 | 278 | |
279 | - $controller = new AjaxController(); |
|
280 | - $controller->restrictAccess($this->generation > 0 || !is_null($type)); |
|
279 | + $controller = new AjaxController(); |
|
280 | + $controller->restrictAccess($this->generation > 0 || !is_null($type)); |
|
281 | 281 | |
282 | - switch ($type){ |
|
283 | - case 'indi': |
|
284 | - $this->renderSosaListIndi($controller); |
|
285 | - break; |
|
286 | - case 'fam': |
|
287 | - $this->renderFamSosaListIndi($controller); |
|
288 | - break; |
|
289 | - default: |
|
290 | - break; |
|
291 | - } |
|
282 | + switch ($type){ |
|
283 | + case 'indi': |
|
284 | + $this->renderSosaListIndi($controller); |
|
285 | + break; |
|
286 | + case 'fam': |
|
287 | + $this->renderFamSosaListIndi($controller); |
|
288 | + break; |
|
289 | + default: |
|
290 | + break; |
|
291 | + } |
|
292 | 292 | |
293 | - } |
|
293 | + } |
|
294 | 294 | |
295 | - /** |
|
296 | - * Render the Ajax response for the sortable table of Sosa individuals |
|
297 | - * @param AjaxController $controller |
|
298 | - */ |
|
299 | - protected function renderSosaListIndi(AjaxController $controller) { |
|
300 | - $wt_tree = Globals::getTree(); |
|
301 | - $listSosa = $this->sosa_provider->getSosaListAtGeneration($this->generation); |
|
302 | - $this->view_bag->set('has_sosa', false); |
|
295 | + /** |
|
296 | + * Render the Ajax response for the sortable table of Sosa individuals |
|
297 | + * @param AjaxController $controller |
|
298 | + */ |
|
299 | + protected function renderSosaListIndi(AjaxController $controller) { |
|
300 | + $wt_tree = Globals::getTree(); |
|
301 | + $listSosa = $this->sosa_provider->getSosaListAtGeneration($this->generation); |
|
302 | + $this->view_bag->set('has_sosa', false); |
|
303 | 303 | |
304 | - if(count($listSosa) > 0) { |
|
305 | - $this->view_bag->set('has_sosa', true); |
|
306 | - $table_id = 'table-sosa-indi-' . Uuid::uuid4(); |
|
307 | - $this->view_bag->set('table_id', $table_id); |
|
304 | + if(count($listSosa) > 0) { |
|
305 | + $this->view_bag->set('has_sosa', true); |
|
306 | + $table_id = 'table-sosa-indi-' . Uuid::uuid4(); |
|
307 | + $this->view_bag->set('table_id', $table_id); |
|
308 | 308 | |
309 | - $controller |
|
310 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
311 | - ->addInlineJavascript(' |
|
309 | + $controller |
|
310 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
311 | + ->addInlineJavascript(' |
|
312 | 312 | jQuery.fn.dataTableExt.oSort["text-asc"] = textCompareAsc; |
313 | 313 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
314 | 314 | |
@@ -375,95 +375,95 @@ discard block |
||
375 | 375 | jQuery("#btn-toggle-statistics-'.$table_id.'").click(); |
376 | 376 | '); |
377 | 377 | |
378 | - $stats = new Stats($wt_tree); |
|
378 | + $stats = new Stats($wt_tree); |
|
379 | 379 | |
380 | - // Bad data can cause "longest life" to be huge, blowing memory limits |
|
381 | - $max_age = min($wt_tree->getPreference('MAX_ALIVE_AGE'), $stats->LongestLifeAge()) + 1; |
|
382 | - // Inititialise chart data |
|
383 | - $deat_by_age = array(); |
|
384 | - for ($age = 0; $age <= $max_age; $age++) { |
|
385 | - $deat_by_age[$age] = ''; |
|
386 | - } |
|
387 | - $birt_by_decade = array(); |
|
388 | - $deat_by_decade = array(); |
|
389 | - for ($year = 1550; $year < 2030; $year += 10) { |
|
390 | - $birt_by_decade[$year] = ''; |
|
391 | - $deat_by_decade[$year] = ''; |
|
392 | - } |
|
380 | + // Bad data can cause "longest life" to be huge, blowing memory limits |
|
381 | + $max_age = min($wt_tree->getPreference('MAX_ALIVE_AGE'), $stats->LongestLifeAge()) + 1; |
|
382 | + // Inititialise chart data |
|
383 | + $deat_by_age = array(); |
|
384 | + for ($age = 0; $age <= $max_age; $age++) { |
|
385 | + $deat_by_age[$age] = ''; |
|
386 | + } |
|
387 | + $birt_by_decade = array(); |
|
388 | + $deat_by_decade = array(); |
|
389 | + for ($year = 1550; $year < 2030; $year += 10) { |
|
390 | + $birt_by_decade[$year] = ''; |
|
391 | + $deat_by_decade[$year] = ''; |
|
392 | + } |
|
393 | 393 | |
394 | - $unique_indis = array(); // Don't double-count indis with multiple names. |
|
395 | - $nb_displayed = 0; |
|
394 | + $unique_indis = array(); // Don't double-count indis with multiple names. |
|
395 | + $nb_displayed = 0; |
|
396 | 396 | |
397 | - Individual::load($wt_tree, $listSosa); |
|
398 | - foreach($listSosa as $sosa => $pid) { |
|
399 | - $person = Individual::getInstance($pid, $wt_tree); |
|
400 | - if (!$person || !$person->canShowName()) { |
|
401 | - unset($listSosa[$sosa]); |
|
402 | - continue; |
|
403 | - } |
|
404 | - $nb_displayed++; |
|
405 | - if ($birth_dates=$person->getAllBirthDates()) { |
|
406 | - if ( |
|
407 | - FunctionsPrint::isDateWithinChartsRange($birth_dates[0]) && |
|
408 | - !isset($unique_indis[$person->getXref()]) |
|
409 | - ) { |
|
410 | - $birt_by_decade[(int)($birth_dates[0]->gregorianYear()/10)*10] .= $person->getSex(); |
|
411 | - } |
|
412 | - } |
|
413 | - else { |
|
414 | - $birth_dates[0]=new Date(''); |
|
415 | - } |
|
416 | - if ($death_dates = $person->getAllDeathDates()) { |
|
417 | - if ( |
|
418 | - FunctionsPrint::isDateWithinChartsRange($death_dates[0]) && |
|
419 | - !isset($unique_indis[$person->getXref()]) |
|
420 | - ) { |
|
421 | - $deat_by_decade[(int) ($death_dates[0]->gregorianYear() / 10) * 10] .= $person->getSex(); |
|
422 | - } |
|
423 | - } |
|
424 | - else { |
|
425 | - $death_dates[0] = new Date(''); |
|
426 | - } |
|
427 | - $age = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
428 | - if (!isset($unique_indis[$person->getXref()]) && $age >= 0 && $age <= $max_age) { |
|
429 | - $deat_by_age[$age] .= $person->getSex(); |
|
430 | - } |
|
431 | - $listSosa[$sosa] = $person; |
|
432 | - $unique_indis[$person->getXref()] = true; |
|
433 | - } |
|
434 | - $this->view_bag->set('sosa_list', $listSosa); |
|
397 | + Individual::load($wt_tree, $listSosa); |
|
398 | + foreach($listSosa as $sosa => $pid) { |
|
399 | + $person = Individual::getInstance($pid, $wt_tree); |
|
400 | + if (!$person || !$person->canShowName()) { |
|
401 | + unset($listSosa[$sosa]); |
|
402 | + continue; |
|
403 | + } |
|
404 | + $nb_displayed++; |
|
405 | + if ($birth_dates=$person->getAllBirthDates()) { |
|
406 | + if ( |
|
407 | + FunctionsPrint::isDateWithinChartsRange($birth_dates[0]) && |
|
408 | + !isset($unique_indis[$person->getXref()]) |
|
409 | + ) { |
|
410 | + $birt_by_decade[(int)($birth_dates[0]->gregorianYear()/10)*10] .= $person->getSex(); |
|
411 | + } |
|
412 | + } |
|
413 | + else { |
|
414 | + $birth_dates[0]=new Date(''); |
|
415 | + } |
|
416 | + if ($death_dates = $person->getAllDeathDates()) { |
|
417 | + if ( |
|
418 | + FunctionsPrint::isDateWithinChartsRange($death_dates[0]) && |
|
419 | + !isset($unique_indis[$person->getXref()]) |
|
420 | + ) { |
|
421 | + $deat_by_decade[(int) ($death_dates[0]->gregorianYear() / 10) * 10] .= $person->getSex(); |
|
422 | + } |
|
423 | + } |
|
424 | + else { |
|
425 | + $death_dates[0] = new Date(''); |
|
426 | + } |
|
427 | + $age = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
428 | + if (!isset($unique_indis[$person->getXref()]) && $age >= 0 && $age <= $max_age) { |
|
429 | + $deat_by_age[$age] .= $person->getSex(); |
|
430 | + } |
|
431 | + $listSosa[$sosa] = $person; |
|
432 | + $unique_indis[$person->getXref()] = true; |
|
433 | + } |
|
434 | + $this->view_bag->set('sosa_list', $listSosa); |
|
435 | 435 | |
436 | - $this->view_bag->set('sosa_count', count($listSosa)); |
|
437 | - $this->view_bag->set('sosa_theo', pow(2, $this->generation-1)); |
|
438 | - $this->view_bag->set('sosa_ratio', Functions::safeDivision($this->view_bag->get('sosa_count'), $this->view_bag->get('sosa_theo'))); |
|
436 | + $this->view_bag->set('sosa_count', count($listSosa)); |
|
437 | + $this->view_bag->set('sosa_theo', pow(2, $this->generation-1)); |
|
438 | + $this->view_bag->set('sosa_ratio', Functions::safeDivision($this->view_bag->get('sosa_count'), $this->view_bag->get('sosa_theo'))); |
|
439 | 439 | |
440 | - $this->view_bag->set('sosa_hidden', $this->view_bag->get('sosa_count') - $nb_displayed); |
|
440 | + $this->view_bag->set('sosa_hidden', $this->view_bag->get('sosa_count') - $nb_displayed); |
|
441 | 441 | |
442 | - $this->view_bag->set('chart_births', FunctionsPrintLists::chartByDecade($birt_by_decade, I18N::translate('Decade of birth'))); |
|
443 | - $this->view_bag->set('chart_deaths', FunctionsPrintLists::chartByDecade($deat_by_decade, I18N::translate('Decade of death'))); |
|
444 | - $this->view_bag->set('chart_ages', FunctionsPrintLists::chartByAge($deat_by_age, I18N::translate('Age related to death year'))); |
|
445 | - } |
|
442 | + $this->view_bag->set('chart_births', FunctionsPrintLists::chartByDecade($birt_by_decade, I18N::translate('Decade of birth'))); |
|
443 | + $this->view_bag->set('chart_deaths', FunctionsPrintLists::chartByDecade($deat_by_decade, I18N::translate('Decade of death'))); |
|
444 | + $this->view_bag->set('chart_ages', FunctionsPrintLists::chartByAge($deat_by_age, I18N::translate('Age related to death year'))); |
|
445 | + } |
|
446 | 446 | |
447 | - ViewFactory::make('SosaListIndi', $this, $controller, $this->view_bag)->render(); |
|
448 | - } |
|
447 | + ViewFactory::make('SosaListIndi', $this, $controller, $this->view_bag)->render(); |
|
448 | + } |
|
449 | 449 | |
450 | - /** |
|
451 | - * Render the Ajax response for the sortable table of Sosa family |
|
452 | - * @param AjaxController $controller |
|
453 | - */ |
|
454 | - protected function renderFamSosaListIndi(AjaxController $controller) { |
|
455 | - $wt_tree = Globals::getTree(); |
|
456 | - $listFamSosa = $this->sosa_provider->getFamilySosaListAtGeneration($this->generation);; |
|
457 | - $this->view_bag->set('has_sosa', false); |
|
450 | + /** |
|
451 | + * Render the Ajax response for the sortable table of Sosa family |
|
452 | + * @param AjaxController $controller |
|
453 | + */ |
|
454 | + protected function renderFamSosaListIndi(AjaxController $controller) { |
|
455 | + $wt_tree = Globals::getTree(); |
|
456 | + $listFamSosa = $this->sosa_provider->getFamilySosaListAtGeneration($this->generation);; |
|
457 | + $this->view_bag->set('has_sosa', false); |
|
458 | 458 | |
459 | - if(count($listFamSosa) > 0) { |
|
460 | - $this->view_bag->set('has_sosa', true); |
|
461 | - $table_id = 'table-sosa-fam-' . Uuid::uuid4(); |
|
462 | - $this->view_bag->set('table_id', $table_id); |
|
459 | + if(count($listFamSosa) > 0) { |
|
460 | + $this->view_bag->set('has_sosa', true); |
|
461 | + $table_id = 'table-sosa-fam-' . Uuid::uuid4(); |
|
462 | + $this->view_bag->set('table_id', $table_id); |
|
463 | 463 | |
464 | - $controller |
|
465 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
466 | - ->addInlineJavascript(' |
|
464 | + $controller |
|
465 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
466 | + ->addInlineJavascript(' |
|
467 | 467 | jQuery.fn.dataTableExt.oSort["text-asc"] = textCompareAsc; |
468 | 468 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
469 | 469 | |
@@ -527,67 +527,67 @@ discard block |
||
527 | 527 | jQuery("#btn-toggle-statistics-'.$table_id.'").click(); |
528 | 528 | '); |
529 | 529 | |
530 | - $stats = new Stats($wt_tree); |
|
531 | - $max_age = max($stats->oldestMarriageMaleAge(), $stats->oldestMarriageFemaleAge()) + 1; |
|
530 | + $stats = new Stats($wt_tree); |
|
531 | + $max_age = max($stats->oldestMarriageMaleAge(), $stats->oldestMarriageFemaleAge()) + 1; |
|
532 | 532 | |
533 | - //-- init chart data |
|
534 | - $marr_by_age = array(); |
|
535 | - for ($age=0; $age<=$max_age; $age++) { |
|
536 | - $marr_by_age[$age] = ''; |
|
537 | - } |
|
538 | - $birt_by_decade = array(); |
|
539 | - $marr_by_decade = array(); |
|
540 | - for ($year=1550; $year<2030; $year+=10) { |
|
541 | - $birt_by_decade[$year] = ''; |
|
542 | - $marr_by_decade[$year] = ''; |
|
543 | - } |
|
533 | + //-- init chart data |
|
534 | + $marr_by_age = array(); |
|
535 | + for ($age=0; $age<=$max_age; $age++) { |
|
536 | + $marr_by_age[$age] = ''; |
|
537 | + } |
|
538 | + $birt_by_decade = array(); |
|
539 | + $marr_by_decade = array(); |
|
540 | + for ($year=1550; $year<2030; $year+=10) { |
|
541 | + $birt_by_decade[$year] = ''; |
|
542 | + $marr_by_decade[$year] = ''; |
|
543 | + } |
|
544 | 544 | |
545 | - foreach($listFamSosa as $sosa => $fid) { |
|
546 | - $sfamily = Family::getInstance($fid, $wt_tree); |
|
547 | - if(!$sfamily || !$sfamily->canShow()) { |
|
548 | - unset($listFamSosa[$sosa]); |
|
549 | - continue; |
|
550 | - } |
|
551 | - $mdate=$sfamily->getMarriageDate(); |
|
545 | + foreach($listFamSosa as $sosa => $fid) { |
|
546 | + $sfamily = Family::getInstance($fid, $wt_tree); |
|
547 | + if(!$sfamily || !$sfamily->canShow()) { |
|
548 | + unset($listFamSosa[$sosa]); |
|
549 | + continue; |
|
550 | + } |
|
551 | + $mdate=$sfamily->getMarriageDate(); |
|
552 | 552 | |
553 | - if( ($husb = $sfamily->getHusband()) && |
|
554 | - ($hdate = $husb->getBirthDate()) && |
|
555 | - $hdate->isOK() && $mdate->isOK()) { |
|
556 | - if (FunctionsPrint::isDateWithinChartsRange($hdate)) { |
|
557 | - $birt_by_decade[(int) ($hdate->gregorianYear() / 10) * 10] .= $husb->getSex(); |
|
558 | - } |
|
559 | - $hage = Date::getAge($hdate, $mdate, 0); |
|
560 | - if ($hage >= 0 && $hage <= $max_age) { |
|
561 | - $marr_by_age[$hage] .= $husb->getSex(); |
|
562 | - } |
|
563 | - } |
|
553 | + if( ($husb = $sfamily->getHusband()) && |
|
554 | + ($hdate = $husb->getBirthDate()) && |
|
555 | + $hdate->isOK() && $mdate->isOK()) { |
|
556 | + if (FunctionsPrint::isDateWithinChartsRange($hdate)) { |
|
557 | + $birt_by_decade[(int) ($hdate->gregorianYear() / 10) * 10] .= $husb->getSex(); |
|
558 | + } |
|
559 | + $hage = Date::getAge($hdate, $mdate, 0); |
|
560 | + if ($hage >= 0 && $hage <= $max_age) { |
|
561 | + $marr_by_age[$hage] .= $husb->getSex(); |
|
562 | + } |
|
563 | + } |
|
564 | 564 | |
565 | - if(($wife = $sfamily->getWife()) && |
|
566 | - ($wdate=$wife->getBirthDate()) && |
|
567 | - $wdate->isOK() && $mdate->isOK()) { |
|
568 | - if (FunctionsPrint::isDateWithinChartsRange($wdate)) { |
|
569 | - $birt_by_decade[(int) ($wdate->gregorianYear() / 10) * 10] .= $wife->getSex(); |
|
570 | - } |
|
571 | - $wage = Date::getAge($wdate, $mdate, 0); |
|
572 | - if ($wage >= 0 && $wage <= $max_age) { |
|
573 | - $marr_by_age[$wage] .= $wife->getSex(); |
|
574 | - } |
|
575 | - } |
|
565 | + if(($wife = $sfamily->getWife()) && |
|
566 | + ($wdate=$wife->getBirthDate()) && |
|
567 | + $wdate->isOK() && $mdate->isOK()) { |
|
568 | + if (FunctionsPrint::isDateWithinChartsRange($wdate)) { |
|
569 | + $birt_by_decade[(int) ($wdate->gregorianYear() / 10) * 10] .= $wife->getSex(); |
|
570 | + } |
|
571 | + $wage = Date::getAge($wdate, $mdate, 0); |
|
572 | + if ($wage >= 0 && $wage <= $max_age) { |
|
573 | + $marr_by_age[$wage] .= $wife->getSex(); |
|
574 | + } |
|
575 | + } |
|
576 | 576 | |
577 | - if ($mdate->isOK() && FunctionsPrint::isDateWithinChartsRange($mdate) && $husb && $wife) { |
|
578 | - $marr_by_decade[(int) ($mdate->gregorianYear() / 10) * 10] .= $husb->getSex() . $wife->getSex(); |
|
579 | - } |
|
577 | + if ($mdate->isOK() && FunctionsPrint::isDateWithinChartsRange($mdate) && $husb && $wife) { |
|
578 | + $marr_by_decade[(int) ($mdate->gregorianYear() / 10) * 10] .= $husb->getSex() . $wife->getSex(); |
|
579 | + } |
|
580 | 580 | |
581 | - $listFamSosa[$sosa] = $sfamily; |
|
582 | - } |
|
583 | - $this->view_bag->set('sosa_list', $listFamSosa); |
|
581 | + $listFamSosa[$sosa] = $sfamily; |
|
582 | + } |
|
583 | + $this->view_bag->set('sosa_list', $listFamSosa); |
|
584 | 584 | |
585 | - $this->view_bag->set('chart_births', FunctionsPrintLists::chartByDecade($birt_by_decade, I18N::translate('Decade of birth'))); |
|
586 | - $this->view_bag->set('chart_marriages', FunctionsPrintLists::chartByDecade($marr_by_decade, I18N::translate('Decade of marriage'))); |
|
587 | - $this->view_bag->set('chart_ages', FunctionsPrintLists::chartByAge($marr_by_age, I18N::translate('Age in year of marriage'))); |
|
588 | - } |
|
585 | + $this->view_bag->set('chart_births', FunctionsPrintLists::chartByDecade($birt_by_decade, I18N::translate('Decade of birth'))); |
|
586 | + $this->view_bag->set('chart_marriages', FunctionsPrintLists::chartByDecade($marr_by_decade, I18N::translate('Decade of marriage'))); |
|
587 | + $this->view_bag->set('chart_ages', FunctionsPrintLists::chartByAge($marr_by_age, I18N::translate('Age in year of marriage'))); |
|
588 | + } |
|
589 | 589 | |
590 | - ViewFactory::make('SosaListFam', $this, $controller, $this->view_bag)->render(); |
|
591 | - } |
|
590 | + ViewFactory::make('SosaListFam', $this, $controller, $this->view_bag)->render(); |
|
591 | + } |
|
592 | 592 | |
593 | 593 | } |
594 | 594 | \ No newline at end of file |