@@ -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 |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | if (($fact->getDate() || $fact->getPlace()) && $fact->canShow()) { |
71 | 71 | switch ($style) { |
72 | 72 | case 10: |
73 | - return '<i>'.$fact->getLabel().' '. \MyArtJaub\Webtrees\Functions\FunctionsPrint::formatFactDateShort($fact) .' '. \MyArtJaub\Webtrees\Functions\FunctionsPrint::formatFactPlaceShort($fact, '%1') .'</i>'; |
|
73 | + return '<i>'.$fact->getLabel().' '. \MyArtJaub\Webtrees\Functions\FunctionsPrint::formatFactDateShort($fact) .' '. \MyArtJaub\Webtrees\Functions\FunctionsPrint::formatFactPlaceShort($fact, '%1') .'</i>'; |
|
74 | 74 | default: |
75 | 75 | return $this->gedcomrecord->formatFirstMajorFact($facts, $style); |
76 | 76 | } |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | public function canDisplayIsSourced($access_level = null){ |
89 | 89 | if(!$this->gedcomrecord->canShow($access_level)) return false; |
90 | 90 | if($access_level === null ) |
91 | - $access_level = \Fisharebest\Webtrees\Auth::accessLevel($this->gedcomrecord->getTree()); |
|
91 | + $access_level = \Fisharebest\Webtrees\Auth::accessLevel($this->gedcomrecord->getTree()); |
|
92 | 92 | |
93 | 93 | $global_facts = Globals::getGlobalFacts(); |
94 | 94 | if (isset($global_facts['SOUR'])) { |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * @return int Level of sources |
128 | 128 | */ |
129 | 129 | public function isFactSourced($eventslist){ |
130 | - if(empty($eventslist)) return 0; |
|
130 | + if(empty($eventslist)) return 0; |
|
131 | 131 | $isSourced=0; |
132 | 132 | $facts = $this->gedcomrecord->getFacts($eventslist); |
133 | 133 | foreach($facts as $fact){ |
@@ -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 |
|
23 | - */ |
|
24 | - public static function getTree() { |
|
25 | - global $WT_TREE; |
|
19 | + /** |
|
20 | + * Get global $WT_TREE variable. |
|
21 | + * |
|
22 | + * @return \Fisharebest\Webtrees\Tree |
|
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 | } |
@@ -23,8 +23,8 @@ discard block |
||
23 | 23 | * {@inhericDoc} |
24 | 24 | * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent() |
25 | 25 | */ |
26 | - protected function renderContent() { |
|
27 | - ?> |
|
26 | + protected function renderContent() { |
|
27 | + ?> |
|
28 | 28 | <div id="maj-sosa-stats-page"> |
29 | 29 | <h2><?php echo $this->data->get('title'); ?></h2> |
30 | 30 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | <?php } ?> |
37 | 37 | |
38 | 38 | <?php if($this->data->get('is_setup')) { |
39 | - $general_stats = $this->data->get('general_stats'); ?> |
|
39 | + $general_stats = $this->data->get('general_stats'); ?> |
|
40 | 40 | <h3><?php echo I18N::translate('General statistics'); ?></h3> |
41 | 41 | <div class="maj-table"> |
42 | 42 | <div class="maj-row"> |
@@ -140,13 +140,13 @@ discard block |
||
140 | 140 | <div class="maj-row"> |
141 | 141 | <div class="label"><?= I18N::translate('%s times', I18N::number($count)); ?></div> |
142 | 142 | <div class="value"><?php |
143 | - echo implode( |
|
144 | - I18N::$list_separator, |
|
145 | - array_map(function(Individual $indi) { |
|
146 | - return '<a href="'. $indi->getHtmlUrl(). '">'. $indi->getFullName() . ' ' . $indi->getSexImage() . '</a>'; |
|
147 | - }, $indis) |
|
148 | - ); |
|
149 | - ?></div> |
|
143 | + echo implode( |
|
144 | + I18N::$list_separator, |
|
145 | + array_map(function(Individual $indi) { |
|
146 | + return '<a href="'. $indi->getHtmlUrl(). '">'. $indi->getFullName() . ' ' . $indi->getSexImage() . '</a>'; |
|
147 | + }, $indis) |
|
148 | + ); |
|
149 | + ?></div> |
|
150 | 150 | </div> |
151 | 151 | <?php } ?> |
152 | 152 | </div> |
@@ -162,6 +162,6 @@ discard block |
||
162 | 162 | <?php } else { ?> |
163 | 163 | <div class="center warning"><?php echo I18N::translate('No Sosa root individual has been defined.'); ?></div> |
164 | 164 | <?php } |
165 | - } |
|
165 | + } |
|
166 | 166 | |
167 | 167 | } |
168 | 168 | \ No newline at end of file |
@@ -27,229 +27,229 @@ |
||
27 | 27 | */ |
28 | 28 | class SosaStatsController extends MvcController |
29 | 29 | { |
30 | - /** |
|
31 | - * Sosa Provider for the controller |
|
32 | - * @var SosaProvider $sosa_provider |
|
33 | - */ |
|
34 | - protected $sosa_provider; |
|
30 | + /** |
|
31 | + * Sosa Provider for the controller |
|
32 | + * @var SosaProvider $sosa_provider |
|
33 | + */ |
|
34 | + protected $sosa_provider; |
|
35 | 35 | |
36 | - /** |
|
37 | - * Constructor for SosaStatsController |
|
38 | - * @param AbstractModule $module |
|
39 | - */ |
|
40 | - public function __construct(AbstractModule $module) { |
|
41 | - parent::__construct($module); |
|
36 | + /** |
|
37 | + * Constructor for SosaStatsController |
|
38 | + * @param AbstractModule $module |
|
39 | + */ |
|
40 | + public function __construct(AbstractModule $module) { |
|
41 | + parent::__construct($module); |
|
42 | 42 | |
43 | - $this->sosa_provider = new SosaProvider(Globals::getTree(), Auth::user()); |
|
44 | - } |
|
43 | + $this->sosa_provider = new SosaProvider(Globals::getTree(), Auth::user()); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Pages |
|
48 | - */ |
|
46 | + /** |
|
47 | + * Pages |
|
48 | + */ |
|
49 | 49 | |
50 | - /** |
|
51 | - * SosaStats@index |
|
52 | - */ |
|
53 | - public function index() { |
|
54 | - $wt_tree = Globals::getTree(); |
|
55 | - $controller = new PageController(); |
|
56 | - $controller |
|
57 | - ->setPageTitle(I18N::translate('Sosa Statistics')) |
|
58 | - ->addInlineJavascript('$(".help_tooltip").tooltip();') |
|
59 | - ; |
|
50 | + /** |
|
51 | + * SosaStats@index |
|
52 | + */ |
|
53 | + public function index() { |
|
54 | + $wt_tree = Globals::getTree(); |
|
55 | + $controller = new PageController(); |
|
56 | + $controller |
|
57 | + ->setPageTitle(I18N::translate('Sosa Statistics')) |
|
58 | + ->addInlineJavascript('$(".help_tooltip").tooltip();') |
|
59 | + ; |
|
60 | 60 | |
61 | - $view_bag = new ViewBag(); |
|
62 | - $view_bag->set('title', $controller->getPageTitle()); |
|
63 | - $view_bag->set('is_setup', false); |
|
61 | + $view_bag = new ViewBag(); |
|
62 | + $view_bag->set('title', $controller->getPageTitle()); |
|
63 | + $view_bag->set('is_setup', false); |
|
64 | 64 | |
65 | - if($this->sosa_provider->isSetup()) { |
|
66 | - $view_bag->set('is_setup', true); |
|
65 | + if($this->sosa_provider->isSetup()) { |
|
66 | + $view_bag->set('is_setup', true); |
|
67 | 67 | |
68 | - $view_bag->set('root_indi', $this->sosa_provider->getRootIndi()); |
|
68 | + $view_bag->set('root_indi', $this->sosa_provider->getRootIndi()); |
|
69 | 69 | |
70 | - $sosaCount = $this->sosa_provider->getSosaCount(); |
|
71 | - $diffSosaCount = $this->sosa_provider->getDifferentSosaCount(); |
|
70 | + $sosaCount = $this->sosa_provider->getSosaCount(); |
|
71 | + $diffSosaCount = $this->sosa_provider->getDifferentSosaCount(); |
|
72 | 72 | |
73 | - $general_stats = array( |
|
74 | - 'sosa_count' => $sosaCount, |
|
75 | - 'distinct_count' => $diffSosaCount, |
|
76 | - 'sosa_rate' => Functions::safeDivision($diffSosaCount, $this->sosa_provider->getTotalIndividuals()), |
|
77 | - 'pedi_collapse' => 1 - Functions::safeDivision($diffSosaCount, $sosaCount), |
|
78 | - 'mean_gen_time' => $this->sosa_provider->getMeanGenerationTime() |
|
79 | - ); |
|
80 | - $view_bag->set('general_stats', $general_stats); |
|
73 | + $general_stats = array( |
|
74 | + 'sosa_count' => $sosaCount, |
|
75 | + 'distinct_count' => $diffSosaCount, |
|
76 | + 'sosa_rate' => Functions::safeDivision($diffSosaCount, $this->sosa_provider->getTotalIndividuals()), |
|
77 | + 'pedi_collapse' => 1 - Functions::safeDivision($diffSosaCount, $sosaCount), |
|
78 | + 'mean_gen_time' => $this->sosa_provider->getMeanGenerationTime() |
|
79 | + ); |
|
80 | + $view_bag->set('general_stats', $general_stats); |
|
81 | 81 | |
82 | - $stats_gen = $this->sosa_provider->getStatisticsByGeneration(); |
|
83 | - $view_bag->set('missinganc_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaList@missing&ged='.$wt_tree->getNameUrl().'&gen='); |
|
84 | - $view_bag->set('sosaanc_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaList&ged='.$wt_tree->getNameUrl().'&gen='); |
|
82 | + $stats_gen = $this->sosa_provider->getStatisticsByGeneration(); |
|
83 | + $view_bag->set('missinganc_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaList@missing&ged='.$wt_tree->getNameUrl().'&gen='); |
|
84 | + $view_bag->set('sosaanc_url', 'module.php?mod='.$this->module->getName().'&mod_action=SosaList&ged='.$wt_tree->getNameUrl().'&gen='); |
|
85 | 85 | |
86 | - $gen_theoretical=1; |
|
87 | - $total_theoretical=0; |
|
88 | - $prev_diff=0; |
|
89 | - $prev_known=0.5; |
|
90 | - $gen_equiv=0; |
|
91 | - $generation_stats = array(); |
|
86 | + $gen_theoretical=1; |
|
87 | + $total_theoretical=0; |
|
88 | + $prev_diff=0; |
|
89 | + $prev_known=0.5; |
|
90 | + $gen_equiv=0; |
|
91 | + $generation_stats = array(); |
|
92 | 92 | |
93 | - foreach($stats_gen as $gen => $tab){ |
|
94 | - $genY1= I18N::translate('-'); |
|
95 | - $genY2= I18N::translate('-'); |
|
96 | - if($tab['firstBirth']>0) $genY1=$tab['firstBirth']; |
|
97 | - if($tab['lastBirth']>0) $genY2=$tab['lastBirth']; |
|
98 | - $total_theoretical += $gen_theoretical; |
|
99 | - $perc_sosa_count_theor = Functions::safeDivision($tab['sosaCount'], $gen_theoretical); |
|
100 | - $gen_equiv += $perc_sosa_count_theor; |
|
101 | - $missing=2*$prev_known - $tab['sosaCount']; |
|
102 | - $gen_diff=$tab['diffSosaTotalCount']-$prev_diff; |
|
93 | + foreach($stats_gen as $gen => $tab){ |
|
94 | + $genY1= I18N::translate('-'); |
|
95 | + $genY2= I18N::translate('-'); |
|
96 | + if($tab['firstBirth']>0) $genY1=$tab['firstBirth']; |
|
97 | + if($tab['lastBirth']>0) $genY2=$tab['lastBirth']; |
|
98 | + $total_theoretical += $gen_theoretical; |
|
99 | + $perc_sosa_count_theor = Functions::safeDivision($tab['sosaCount'], $gen_theoretical); |
|
100 | + $gen_equiv += $perc_sosa_count_theor; |
|
101 | + $missing=2*$prev_known - $tab['sosaCount']; |
|
102 | + $gen_diff=$tab['diffSosaTotalCount']-$prev_diff; |
|
103 | 103 | |
104 | - $generation_stats[$gen] = array( |
|
105 | - 'gen_min_birth' => $genY1, |
|
106 | - 'gen_max_birth' => $genY2, |
|
107 | - 'theoretical' => $gen_theoretical, |
|
108 | - 'known' => $tab['sosaCount'], |
|
109 | - 'perc_known' => $perc_sosa_count_theor, |
|
110 | - 'missing' => $missing, |
|
111 | - 'perc_missing' => 1-Functions::safeDivision($tab['sosaCount'], 2*$prev_known), |
|
112 | - 'total_known' => $tab['sosaTotalCount'], |
|
113 | - 'perc_total_known' => Functions::safeDivision($tab['sosaTotalCount'], $total_theoretical), |
|
114 | - 'different' => $gen_diff, |
|
115 | - 'perc_different' => Functions::safeDivision($gen_diff, $tab['sosaCount']), |
|
116 | - 'total_different' => $tab['diffSosaTotalCount'], |
|
117 | - 'pedi_collapse' => 1 - Functions::safeDivision($tab['diffSosaTotalCount'], $tab['sosaTotalCount']) |
|
118 | - ); |
|
104 | + $generation_stats[$gen] = array( |
|
105 | + 'gen_min_birth' => $genY1, |
|
106 | + 'gen_max_birth' => $genY2, |
|
107 | + 'theoretical' => $gen_theoretical, |
|
108 | + 'known' => $tab['sosaCount'], |
|
109 | + 'perc_known' => $perc_sosa_count_theor, |
|
110 | + 'missing' => $missing, |
|
111 | + 'perc_missing' => 1-Functions::safeDivision($tab['sosaCount'], 2*$prev_known), |
|
112 | + 'total_known' => $tab['sosaTotalCount'], |
|
113 | + 'perc_total_known' => Functions::safeDivision($tab['sosaTotalCount'], $total_theoretical), |
|
114 | + 'different' => $gen_diff, |
|
115 | + 'perc_different' => Functions::safeDivision($gen_diff, $tab['sosaCount']), |
|
116 | + 'total_different' => $tab['diffSosaTotalCount'], |
|
117 | + 'pedi_collapse' => 1 - Functions::safeDivision($tab['diffSosaTotalCount'], $tab['sosaTotalCount']) |
|
118 | + ); |
|
119 | 119 | |
120 | - $gen_theoretical = $gen_theoretical * 2; |
|
121 | - $prev_known=$tab['sosaCount']; |
|
122 | - $prev_diff=$tab['diffSosaTotalCount']; |
|
123 | - } |
|
120 | + $gen_theoretical = $gen_theoretical * 2; |
|
121 | + $prev_known=$tab['sosaCount']; |
|
122 | + $prev_diff=$tab['diffSosaTotalCount']; |
|
123 | + } |
|
124 | 124 | |
125 | - $view_bag->set('generation_stats', $generation_stats); |
|
126 | - $view_bag->set('equivalent_gen', $gen_equiv); |
|
125 | + $view_bag->set('generation_stats', $generation_stats); |
|
126 | + $view_bag->set('equivalent_gen', $gen_equiv); |
|
127 | 127 | |
128 | - $top10multiancestors = $this->sosa_provider->getTopMultiSosaAncestorsNoTies(10); |
|
129 | - $top10ancestors = array(); |
|
130 | - if($top10multiancestors !== null && count($top10multiancestors)) { |
|
131 | - foreach($top10multiancestors as $pid => $count) { |
|
132 | - $indi = Individual::getInstance($pid, $wt_tree); |
|
133 | - if($indi !== null && $indi->canShowName()) { |
|
134 | - array_key_exists($count, $top10ancestors) ? |
|
135 | - $top10ancestors[$count][] = $indi: |
|
136 | - $top10ancestors[$count] = array($count => $indi); |
|
137 | - } |
|
138 | - } |
|
139 | - } |
|
140 | - $view_bag->set('top10multiancestors', $top10ancestors); |
|
128 | + $top10multiancestors = $this->sosa_provider->getTopMultiSosaAncestorsNoTies(10); |
|
129 | + $top10ancestors = array(); |
|
130 | + if($top10multiancestors !== null && count($top10multiancestors)) { |
|
131 | + foreach($top10multiancestors as $pid => $count) { |
|
132 | + $indi = Individual::getInstance($pid, $wt_tree); |
|
133 | + if($indi !== null && $indi->canShowName()) { |
|
134 | + array_key_exists($count, $top10ancestors) ? |
|
135 | + $top10ancestors[$count][] = $indi: |
|
136 | + $top10ancestors[$count] = array($count => $indi); |
|
137 | + } |
|
138 | + } |
|
139 | + } |
|
140 | + $view_bag->set('top10multiancestors', $top10ancestors); |
|
141 | 141 | |
142 | - $view_bag->set('chart_img_g2', $this->htmlAncestorDispersionG2()); |
|
143 | - $view_bag->set('chart_img_g3', $this->htmlAncestorDispersionG3()); |
|
142 | + $view_bag->set('chart_img_g2', $this->htmlAncestorDispersionG2()); |
|
143 | + $view_bag->set('chart_img_g3', $this->htmlAncestorDispersionG3()); |
|
144 | 144 | |
145 | - } |
|
145 | + } |
|
146 | 146 | |
147 | - ViewFactory::make('SosaStats', $this, $controller, $view_bag)->render(); |
|
148 | - } |
|
147 | + ViewFactory::make('SosaStats', $this, $controller, $view_bag)->render(); |
|
148 | + } |
|
149 | 149 | |
150 | - /** |
|
151 | - * Returns HTML code for a graph showing the dispersion of ancestors across father & mother |
|
152 | - * @return string HTML code |
|
153 | - */ |
|
154 | - private function htmlAncestorDispersionG2() |
|
155 | - { |
|
156 | - $ancestorsDispGen2 = $this->sosa_provider->getAncestorDispersionForGen(2); |
|
157 | - if(count($ancestorsDispGen2) == 0) return; |
|
150 | + /** |
|
151 | + * Returns HTML code for a graph showing the dispersion of ancestors across father & mother |
|
152 | + * @return string HTML code |
|
153 | + */ |
|
154 | + private function htmlAncestorDispersionG2() |
|
155 | + { |
|
156 | + $ancestorsDispGen2 = $this->sosa_provider->getAncestorDispersionForGen(2); |
|
157 | + if(count($ancestorsDispGen2) == 0) return; |
|
158 | 158 | |
159 | - $size = '600x300'; |
|
159 | + $size = '600x300'; |
|
160 | 160 | |
161 | - $total = array_sum($ancestorsDispGen2); |
|
162 | - $father_count = array_key_exists(1, $ancestorsDispGen2) ? $ancestorsDispGen2[1] : 0; |
|
163 | - $father = array ( |
|
164 | - 'color' => '84beff', |
|
165 | - 'count' => $father_count, |
|
166 | - 'perc' => Functions::safeDivision($father_count, $total), |
|
167 | - 'name' => \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fat') |
|
168 | - ); |
|
169 | - $mother_count = array_key_exists(2, $ancestorsDispGen2) ? $ancestorsDispGen2[2] : 0; |
|
170 | - $mother = array ( |
|
171 | - 'color' => 'ffd1dc', |
|
172 | - 'count' => $mother_count, |
|
173 | - 'perc' => Functions::safeDivision($mother_count, $total), |
|
174 | - 'name' => \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('mot') |
|
175 | - ); |
|
176 | - $shared_count = array_key_exists(-1, $ancestorsDispGen2) ? $ancestorsDispGen2[-1] : 0; |
|
177 | - $shared = array ( |
|
178 | - 'color' => '777777', |
|
179 | - 'count' => $shared_count, |
|
180 | - 'perc' => Functions::safeDivision($shared_count, $total), |
|
181 | - 'name' => I18N::translate('Shared') |
|
182 | - ); |
|
161 | + $total = array_sum($ancestorsDispGen2); |
|
162 | + $father_count = array_key_exists(1, $ancestorsDispGen2) ? $ancestorsDispGen2[1] : 0; |
|
163 | + $father = array ( |
|
164 | + 'color' => '84beff', |
|
165 | + 'count' => $father_count, |
|
166 | + 'perc' => Functions::safeDivision($father_count, $total), |
|
167 | + 'name' => \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fat') |
|
168 | + ); |
|
169 | + $mother_count = array_key_exists(2, $ancestorsDispGen2) ? $ancestorsDispGen2[2] : 0; |
|
170 | + $mother = array ( |
|
171 | + 'color' => 'ffd1dc', |
|
172 | + 'count' => $mother_count, |
|
173 | + 'perc' => Functions::safeDivision($mother_count, $total), |
|
174 | + 'name' => \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('mot') |
|
175 | + ); |
|
176 | + $shared_count = array_key_exists(-1, $ancestorsDispGen2) ? $ancestorsDispGen2[-1] : 0; |
|
177 | + $shared = array ( |
|
178 | + 'color' => '777777', |
|
179 | + 'count' => $shared_count, |
|
180 | + 'perc' => Functions::safeDivision($shared_count, $total), |
|
181 | + 'name' => I18N::translate('Shared') |
|
182 | + ); |
|
183 | 183 | |
184 | - $chd = $this->arrayToExtendedEncoding(array(4095 * $father['perc'], 4095 * $shared['perc'], 4095 * $mother['perc'])); |
|
185 | - $chart_title = I18N::translate('Known Sosa ancestors\' dispersion'); |
|
186 | - $chl = |
|
187 | - $father['name'] . ' - ' . I18N::percentage($father['perc'], 1) . '|' . |
|
188 | - $shared['name'] . ' - ' . I18N::percentage($shared['perc'], 1) . '|' . |
|
189 | - $mother['name'] . ' - ' . I18N::percentage($mother['perc'], 1); |
|
190 | - return "<img src=\"https://chart.googleapis.com/chart?cht=p&chp=1.5708&chd=e:{$chd}&chs={$size}&chco={$father['color']},{$shared['color']},{$mother['color']}&chf=bg,s,ffffff00&chl={$chl}\" alt=\"" . $chart_title . "\" title=\"" . $chart_title . "\" />"; |
|
191 | - } |
|
184 | + $chd = $this->arrayToExtendedEncoding(array(4095 * $father['perc'], 4095 * $shared['perc'], 4095 * $mother['perc'])); |
|
185 | + $chart_title = I18N::translate('Known Sosa ancestors\' dispersion'); |
|
186 | + $chl = |
|
187 | + $father['name'] . ' - ' . I18N::percentage($father['perc'], 1) . '|' . |
|
188 | + $shared['name'] . ' - ' . I18N::percentage($shared['perc'], 1) . '|' . |
|
189 | + $mother['name'] . ' - ' . I18N::percentage($mother['perc'], 1); |
|
190 | + return "<img src=\"https://chart.googleapis.com/chart?cht=p&chp=1.5708&chd=e:{$chd}&chs={$size}&chco={$father['color']},{$shared['color']},{$mother['color']}&chf=bg,s,ffffff00&chl={$chl}\" alt=\"" . $chart_title . "\" title=\"" . $chart_title . "\" />"; |
|
191 | + } |
|
192 | 192 | |
193 | - /** |
|
194 | - * Returns HTML code for a graph showing the dispersion of ancestors across grand-parents |
|
195 | - * @return string HTML code |
|
196 | - */ |
|
197 | - private function htmlAncestorDispersionG3() |
|
198 | - { |
|
199 | - $ancestorsDispGen2 = $this->sosa_provider->getAncestorDispersionForGen(3); |
|
193 | + /** |
|
194 | + * Returns HTML code for a graph showing the dispersion of ancestors across grand-parents |
|
195 | + * @return string HTML code |
|
196 | + */ |
|
197 | + private function htmlAncestorDispersionG3() |
|
198 | + { |
|
199 | + $ancestorsDispGen2 = $this->sosa_provider->getAncestorDispersionForGen(3); |
|
200 | 200 | |
201 | - $size = '700x300'; |
|
201 | + $size = '700x300'; |
|
202 | 202 | |
203 | - $color_motmot = 'ffd1dc'; |
|
204 | - $color_motfat = 'b998a0'; |
|
205 | - $color_fatfat = '577292'; |
|
206 | - $color_fatmot = '84beff'; |
|
207 | - $color_shared = '777777'; |
|
203 | + $color_motmot = 'ffd1dc'; |
|
204 | + $color_motfat = 'b998a0'; |
|
205 | + $color_fatfat = '577292'; |
|
206 | + $color_fatmot = '84beff'; |
|
207 | + $color_shared = '777777'; |
|
208 | 208 | |
209 | - $total_fatfat = array_key_exists(1, $ancestorsDispGen2) ? $ancestorsDispGen2[1] : 0; |
|
210 | - $total_fatmot = array_key_exists(2, $ancestorsDispGen2) ? $ancestorsDispGen2[2] : 0; |
|
211 | - $total_motfat = array_key_exists(4, $ancestorsDispGen2) ? $ancestorsDispGen2[4] : 0; |
|
212 | - $total_motmot = array_key_exists(8, $ancestorsDispGen2) ? $ancestorsDispGen2[8] : 0; |
|
213 | - $total_sha = array_key_exists(-1, $ancestorsDispGen2) ? $ancestorsDispGen2[-1] : 0; |
|
214 | - $total = $total_fatfat + $total_fatmot + $total_motfat+ $total_motmot + $total_sha; |
|
209 | + $total_fatfat = array_key_exists(1, $ancestorsDispGen2) ? $ancestorsDispGen2[1] : 0; |
|
210 | + $total_fatmot = array_key_exists(2, $ancestorsDispGen2) ? $ancestorsDispGen2[2] : 0; |
|
211 | + $total_motfat = array_key_exists(4, $ancestorsDispGen2) ? $ancestorsDispGen2[4] : 0; |
|
212 | + $total_motmot = array_key_exists(8, $ancestorsDispGen2) ? $ancestorsDispGen2[8] : 0; |
|
213 | + $total_sha = array_key_exists(-1, $ancestorsDispGen2) ? $ancestorsDispGen2[-1] : 0; |
|
214 | + $total = $total_fatfat + $total_fatmot + $total_motfat+ $total_motmot + $total_sha; |
|
215 | 215 | |
216 | - $chd = $this->arrayToExtendedEncoding(array( |
|
217 | - 4095 * Functions::safeDivision($total_fatfat, $total), |
|
218 | - 4095 * Functions::safeDivision($total_fatmot, $total), |
|
219 | - 4095 * Functions::safeDivision($total_sha, $total), |
|
220 | - 4095 * Functions::safeDivision($total_motfat, $total), |
|
221 | - 4095 * Functions::safeDivision($total_motmot, $total) |
|
222 | - )); |
|
223 | - $chart_title = I18N::translate('Known Sosa ancestors\' dispersion - G3'); |
|
224 | - $chl = |
|
225 | - \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fatfat') . ' - ' . I18N::percentage(Functions::safeDivision($total_fatfat, $total), 1) . '|' . |
|
226 | - \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fatmot') . ' - ' . I18N::percentage(Functions::safeDivision($total_fatmot, $total), 1) . '|' . |
|
227 | - I18N::translate('Shared') . ' - ' . I18N::percentage(Functions::safeDivision($total_sha, $total), 1) . '|' . |
|
228 | - \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('motfat') . ' - ' . I18N::percentage(Functions::safeDivision($total_motfat, $total), 1) . '|' . |
|
229 | - \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('motmot') . ' - ' . I18N::percentage(Functions::safeDivision($total_motmot, $total), 1); |
|
230 | - return "<img src=\"https://chart.googleapis.com/chart?cht=p&chp=1.5708&chd=e:{$chd}&chs={$size}&chco={$color_fatfat},{$color_fatmot},{$color_shared},{$color_motfat},{$color_motmot}&chf=bg,s,ffffff00&chl={$chl}\" alt=\"" . $chart_title . "\" title=\"" . $chart_title . "\" />"; |
|
231 | - } |
|
216 | + $chd = $this->arrayToExtendedEncoding(array( |
|
217 | + 4095 * Functions::safeDivision($total_fatfat, $total), |
|
218 | + 4095 * Functions::safeDivision($total_fatmot, $total), |
|
219 | + 4095 * Functions::safeDivision($total_sha, $total), |
|
220 | + 4095 * Functions::safeDivision($total_motfat, $total), |
|
221 | + 4095 * Functions::safeDivision($total_motmot, $total) |
|
222 | + )); |
|
223 | + $chart_title = I18N::translate('Known Sosa ancestors\' dispersion - G3'); |
|
224 | + $chl = |
|
225 | + \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fatfat') . ' - ' . I18N::percentage(Functions::safeDivision($total_fatfat, $total), 1) . '|' . |
|
226 | + \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('fatmot') . ' - ' . I18N::percentage(Functions::safeDivision($total_fatmot, $total), 1) . '|' . |
|
227 | + I18N::translate('Shared') . ' - ' . I18N::percentage(Functions::safeDivision($total_sha, $total), 1) . '|' . |
|
228 | + \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('motfat') . ' - ' . I18N::percentage(Functions::safeDivision($total_motfat, $total), 1) . '|' . |
|
229 | + \Fisharebest\Webtrees\Functions\Functions::getRelationshipNameFromPath('motmot') . ' - ' . I18N::percentage(Functions::safeDivision($total_motmot, $total), 1); |
|
230 | + return "<img src=\"https://chart.googleapis.com/chart?cht=p&chp=1.5708&chd=e:{$chd}&chs={$size}&chco={$color_fatfat},{$color_fatmot},{$color_shared},{$color_motfat},{$color_motmot}&chf=bg,s,ffffff00&chl={$chl}\" alt=\"" . $chart_title . "\" title=\"" . $chart_title . "\" />"; |
|
231 | + } |
|
232 | 232 | |
233 | - /** |
|
234 | - * Convert an array to Google Chart encoding |
|
235 | - * @param arrat $a Array to encode |
|
236 | - * @return string |
|
237 | - */ |
|
238 | - private function arrayToExtendedEncoding($a) { |
|
239 | - $xencoding = WT_GOOGLE_CHART_ENCODING; |
|
233 | + /** |
|
234 | + * Convert an array to Google Chart encoding |
|
235 | + * @param arrat $a Array to encode |
|
236 | + * @return string |
|
237 | + */ |
|
238 | + private function arrayToExtendedEncoding($a) { |
|
239 | + $xencoding = WT_GOOGLE_CHART_ENCODING; |
|
240 | 240 | |
241 | - $encoding = ''; |
|
242 | - foreach ($a as $value) { |
|
243 | - if ($value < 0) { |
|
244 | - $value = 0; |
|
245 | - } |
|
246 | - $first = (int) ($value / 64); |
|
247 | - $second = $value % 64; |
|
248 | - $encoding .= $xencoding[(int) $first] . $xencoding[(int) $second]; |
|
249 | - } |
|
241 | + $encoding = ''; |
|
242 | + foreach ($a as $value) { |
|
243 | + if ($value < 0) { |
|
244 | + $value = 0; |
|
245 | + } |
|
246 | + $first = (int) ($value / 64); |
|
247 | + $second = $value % 64; |
|
248 | + $encoding .= $xencoding[(int) $first] . $xencoding[(int) $second]; |
|
249 | + } |
|
250 | 250 | |
251 | - return $encoding; |
|
252 | - } |
|
251 | + return $encoding; |
|
252 | + } |
|
253 | 253 | |
254 | 254 | |
255 | 255 | } |
256 | 256 | \ No newline at end of file |
@@ -129,11 +129,11 @@ discard block |
||
129 | 129 | * @return string Encryption key |
130 | 130 | */ |
131 | 131 | protected static function getBase64EncryptionKey() { |
132 | - $key = 'STANDARDKEYIFNOSERVER'; |
|
133 | - if(!empty(Filter::server('SERVER_NAME')) && !empty(Filter::server('SERVER_SOFTWARE'))) |
|
134 | - $key = md5(Filter::server('SERVER_NAME').Filter::server('SERVER_SOFTWARE')); |
|
132 | + $key = 'STANDARDKEYIFNOSERVER'; |
|
133 | + if(!empty(Filter::server('SERVER_NAME')) && !empty(Filter::server('SERVER_SOFTWARE'))) |
|
134 | + $key = md5(Filter::server('SERVER_NAME').Filter::server('SERVER_SOFTWARE')); |
|
135 | 135 | |
136 | - return $key; |
|
136 | + return $key; |
|
137 | 137 | } |
138 | 138 | |
139 | 139 | /** |
@@ -172,20 +172,20 @@ discard block |
||
172 | 172 | throw new \InvalidArgumentException('The encrypted value is not in correct base64 format.'); |
173 | 173 | |
174 | 174 | if (mb_strlen($encrypted, '8bit') < (SODIUM_CRYPTO_SECRETBOX_NONCEBYTES + SODIUM_CRYPTO_SECRETBOX_MACBYTES)) |
175 | - throw new \InvalidArgumentException('The encrypted value does not contain enough characters for the key.'); |
|
175 | + throw new \InvalidArgumentException('The encrypted value does not contain enough characters for the key.'); |
|
176 | 176 | |
177 | - $nonce = mb_substr($encrypted, 0, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, '8bit'); |
|
178 | - $ciphertext = mb_substr($encrypted, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, null, '8bit'); |
|
177 | + $nonce = mb_substr($encrypted, 0, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, '8bit'); |
|
178 | + $ciphertext = mb_substr($encrypted, SODIUM_CRYPTO_SECRETBOX_NONCEBYTES, null, '8bit'); |
|
179 | 179 | |
180 | - $decrypted = sodium_crypto_secretbox_open($ciphertext, $nonce, self::getBase64EncryptionKey()); |
|
180 | + $decrypted = sodium_crypto_secretbox_open($ciphertext, $nonce, self::getBase64EncryptionKey()); |
|
181 | 181 | |
182 | - if($decrypted === false) { |
|
183 | - throw new \InvalidArgumentException('The message has been tampered with in transit.'); |
|
184 | - } |
|
182 | + if($decrypted === false) { |
|
183 | + throw new \InvalidArgumentException('The message has been tampered with in transit.'); |
|
184 | + } |
|
185 | 185 | |
186 | - //sodium_memzero($encrypted); // Requires PHP 7.2 |
|
186 | + //sodium_memzero($encrypted); // Requires PHP 7.2 |
|
187 | 187 | |
188 | - return $decrypted; |
|
188 | + return $decrypted; |
|
189 | 189 | } |
190 | 190 | |
191 | 191 | /** |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | */ |
197 | 197 | public static function encodeFileSystemToUtf8($string){ |
198 | 198 | if (strtoupper(substr(php_uname('s'), 0, 7)) === 'WINDOWS') { |
199 | - return iconv('cp1252', 'utf-8//IGNORE',$string); |
|
199 | + return iconv('cp1252', 'utf-8//IGNORE',$string); |
|
200 | 200 | } |
201 | 201 | return $string; |
202 | 202 | } |
@@ -261,20 +261,20 @@ discard block |
||
261 | 261 | * @return boolean|string Is supported? |
262 | 262 | */ |
263 | 263 | public static function isImageTypeSupported($reqtype) { |
264 | - $supportByGD = array('jpg'=>'jpeg', 'jpeg'=>'jpeg', 'gif'=>'gif', 'png'=>'png'); |
|
265 | - $reqtype = strtolower($reqtype); |
|
264 | + $supportByGD = array('jpg'=>'jpeg', 'jpeg'=>'jpeg', 'gif'=>'gif', 'png'=>'png'); |
|
265 | + $reqtype = strtolower($reqtype); |
|
266 | 266 | |
267 | - if (empty($supportByGD[$reqtype])) { |
|
268 | - return false; |
|
269 | - } |
|
267 | + if (empty($supportByGD[$reqtype])) { |
|
268 | + return false; |
|
269 | + } |
|
270 | 270 | |
271 | - $type = $supportByGD[$reqtype]; |
|
271 | + $type = $supportByGD[$reqtype]; |
|
272 | 272 | |
273 | - if (function_exists('imagecreatefrom'.$type) && function_exists('image'.$type)) { |
|
274 | - return $type; |
|
275 | - } |
|
273 | + if (function_exists('imagecreatefrom'.$type) && function_exists('image'.$type)) { |
|
274 | + return $type; |
|
275 | + } |
|
276 | 276 | |
277 | - return false; |
|
277 | + return false; |
|
278 | 278 | } |
279 | 279 | |
280 | 280 | } |