@@ -34,26 +34,26 @@ |
||
| 34 | 34 | protected $fact; |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Contructor for the decorator |
|
| 38 | - * |
|
| 39 | - * @param \Fisharebest\Webtrees\Fact $fact_in The Fact to extend |
|
| 40 | - */ |
|
| 37 | + * Contructor for the decorator |
|
| 38 | + * |
|
| 39 | + * @param \Fisharebest\Webtrees\Fact $fact_in The Fact to extend |
|
| 40 | + */ |
|
| 41 | 41 | public function __construct(\Fisharebest\Webtrees\Fact $fact_in){ |
| 42 | 42 | $this->fact = $fact_in; |
| 43 | 43 | } |
| 44 | 44 | |
| 45 | 45 | /** |
| 46 | - * Check if a fact has a date and is sourced |
|
| 47 | - * Values: |
|
| 48 | - * - 0, if no date is found for the fact |
|
| 49 | - * - -1, if the date is not precise |
|
| 50 | - * - -2, if the date is precise, but no source is found |
|
| 51 | - * - 1, if the date is precise, and a source is found |
|
| 52 | - * - 2, if the date is precise, a source exists, and is supported by a certificate (requires _ACT usage) |
|
| 53 | - * - 3, if the date is precise, a source exists, and the certificate supporting the fact is within an acceptable range of date |
|
| 54 | - * |
|
| 55 | - * @return int Level of sources |
|
| 56 | - */ |
|
| 46 | + * Check if a fact has a date and is sourced |
|
| 47 | + * Values: |
|
| 48 | + * - 0, if no date is found for the fact |
|
| 49 | + * - -1, if the date is not precise |
|
| 50 | + * - -2, if the date is precise, but no source is found |
|
| 51 | + * - 1, if the date is precise, and a source is found |
|
| 52 | + * - 2, if the date is precise, a source exists, and is supported by a certificate (requires _ACT usage) |
|
| 53 | + * - 3, if the date is precise, a source exists, and the certificate supporting the fact is within an acceptable range of date |
|
| 54 | + * |
|
| 55 | + * @return int Level of sources |
|
| 56 | + */ |
|
| 57 | 57 | public function isSourced(){ |
| 58 | 58 | $isSourced=0; |
| 59 | 59 | $date = $this->fact->getDate(); |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | * |
| 39 | 39 | * @param \Fisharebest\Webtrees\Fact $fact_in The Fact to extend |
| 40 | 40 | */ |
| 41 | - public function __construct(\Fisharebest\Webtrees\Fact $fact_in){ |
|
| 41 | + public function __construct(\Fisharebest\Webtrees\Fact $fact_in) { |
|
| 42 | 42 | $this->fact = $fact_in; |
| 43 | 43 | } |
| 44 | 44 | |
@@ -54,22 +54,22 @@ discard block |
||
| 54 | 54 | * |
| 55 | 55 | * @return int Level of sources |
| 56 | 56 | */ |
| 57 | - public function isSourced(){ |
|
| 58 | - $isSourced=0; |
|
| 57 | + public function isSourced() { |
|
| 58 | + $isSourced = 0; |
|
| 59 | 59 | $date = $this->fact->getDate(); |
| 60 | - if($date->isOK()) { |
|
| 61 | - $isSourced=-1; |
|
| 62 | - if($date->qual1=='' && $date->minimumJulianDay() == $date->maximumJulianDay()){ |
|
| 63 | - $isSourced=-2; |
|
| 60 | + if ($date->isOK()) { |
|
| 61 | + $isSourced = -1; |
|
| 62 | + if ($date->qual1 == '' && $date->minimumJulianDay() == $date->maximumJulianDay()) { |
|
| 63 | + $isSourced = -2; |
|
| 64 | 64 | $citations = $this->fact->getCitations(); |
| 65 | - foreach($citations as $citation){ |
|
| 66 | - $isSourced=max($isSourced, 1); |
|
| 67 | - if(preg_match('/3 _ACT (.*)/', $citation) ){ |
|
| 68 | - $isSourced=max($isSourced, 2); |
|
| 65 | + foreach ($citations as $citation) { |
|
| 66 | + $isSourced = max($isSourced, 1); |
|
| 67 | + if (preg_match('/3 _ACT (.*)/', $citation)) { |
|
| 68 | + $isSourced = max($isSourced, 2); |
|
| 69 | 69 | preg_match_all("/4 DATE (.*)/", $citation, $datessource, PREG_SET_ORDER); |
| 70 | - foreach($datessource as $daterec){ |
|
| 70 | + foreach ($datessource as $daterec) { |
|
| 71 | 71 | $datesource = new Date($daterec[1]); |
| 72 | - if(abs($datesource->julianDay() - $date->julianDay()) < self::DATE_PRECISION_MARGIN){ |
|
| 72 | + if (abs($datesource->julianDay() - $date->julianDay()) < self::DATE_PRECISION_MARGIN) { |
|
| 73 | 73 | $isSourced = max($isSourced, 3); //If this level increases, do not forget to change the constant MAX_IS_SOURCED_LEVEL |
| 74 | 74 | } |
| 75 | 75 | } |
@@ -24,16 +24,16 @@ discard block |
||
| 24 | 24 | * {@inhericDoc} |
| 25 | 25 | * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent() |
| 26 | 26 | */ |
| 27 | - protected function renderContent() { |
|
| 28 | - /** @var \Fisharebest\Webtrees\Individual $indi */ |
|
| 29 | - $indi = $this->data->get('indi'); |
|
| 27 | + protected function renderContent() { |
|
| 28 | + /** @var \Fisharebest\Webtrees\Individual $indi */ |
|
| 29 | + $indi = $this->data->get('indi'); |
|
| 30 | 30 | |
| 31 | - /** @var \Fisharebest\Webtrees\Tree $tree */ |
|
| 32 | - $tree = $this->data->get('tree'); |
|
| 31 | + /** @var \Fisharebest\Webtrees\Tree $tree */ |
|
| 32 | + $tree = $this->data->get('tree'); |
|
| 33 | 33 | |
| 34 | - //Welcome section - gedcom title, date, statistics - based on gedcom_block |
|
| 35 | - $content = |
|
| 36 | - '<table> |
|
| 34 | + //Welcome section - gedcom title, date, statistics - based on gedcom_block |
|
| 35 | + $content = |
|
| 36 | + '<table> |
|
| 37 | 37 | <tr> |
| 38 | 38 | <td> |
| 39 | 39 | <a href="pedigree.php?rootid=' . $indi->getXref() . '&ged=' . $tree->getNameUrl() . '"> |
@@ -46,50 +46,50 @@ discard block |
||
| 46 | 46 | </a> |
| 47 | 47 | </td>'; |
| 48 | 48 | |
| 49 | - if (Site::getPreference('USE_REGISTRATION_MODULE') && !Auth::check()) { |
|
| 50 | - $content .= ' |
|
| 49 | + if (Site::getPreference('USE_REGISTRATION_MODULE') && !Auth::check()) { |
|
| 50 | + $content .= ' |
|
| 51 | 51 | <td> |
| 52 | 52 | <a href="' . WT_LOGIN_URL . '?action=register"> |
| 53 | 53 | <i class="icon-user_add"></i><br>'.I18N::translate('Request a new user account').' |
| 54 | 54 | </a> |
| 55 | 55 | </td>'; |
| 56 | - } |
|
| 57 | - $content .= ' |
|
| 56 | + } |
|
| 57 | + $content .= ' |
|
| 58 | 58 | </tr> |
| 59 | 59 | </table>'; |
| 60 | 60 | |
| 61 | - // Piwik Statistics |
|
| 62 | - if ($this->data->get('piwik_enabled', false)){ |
|
| 63 | - $content .= ' |
|
| 61 | + // Piwik Statistics |
|
| 62 | + if ($this->data->get('piwik_enabled', false)){ |
|
| 63 | + $content .= ' |
|
| 64 | 64 | <div class="center"> |
| 65 | 65 | <div id="piwik_stats"> |
| 66 | 66 | <i class="icon-loading-small"></i> ' . I18N::translate('Retrieving Piwik statistics...') . ' |
| 67 | 67 | </div> |
| 68 | 68 | </div>'; |
| 69 | - } |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | - $content .= '<hr />'; |
|
| 71 | + $content .= '<hr />'; |
|
| 72 | 72 | |
| 73 | - // Login section - based on login_block |
|
| 74 | - if (Auth::check()) { |
|
| 75 | - $content .= ' |
|
| 73 | + // Login section - based on login_block |
|
| 74 | + if (Auth::check()) { |
|
| 75 | + $content .= ' |
|
| 76 | 76 | <div class="center"> |
| 77 | 77 | <form method="post" action="logout.php" name="logoutform" onsubmit="return true;"> |
| 78 | 78 | <br>' . |
| 79 | - I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">' . Auth::user()->getRealNameHtml() . '</a>') . |
|
| 80 | - '<br><br> |
|
| 79 | + I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">' . Auth::user()->getRealNameHtml() . '</a>') . |
|
| 80 | + '<br><br> |
|
| 81 | 81 | <input type="submit" value="'.I18N::translate('sign out').'"> |
| 82 | 82 | <br><br> |
| 83 | 83 | </form> |
| 84 | 84 | </div>'; |
| 85 | - } else { |
|
| 86 | - $content .= ' |
|
| 85 | + } else { |
|
| 86 | + $content .= ' |
|
| 87 | 87 | <div id="maj-login-box"> |
| 88 | 88 | <form id="maj-login-form" name="maj-login-form" method="post" action="'.WT_LOGIN_URL.'"> |
| 89 | 89 | <input type="hidden" name="action" value="login"> |
| 90 | 90 | <div> |
| 91 | 91 | <label for="maj-username">'. I18N::translate('Username'). |
| 92 | - '<input type="text" id="maj-username" name="username" class="formField"> |
|
| 92 | + '<input type="text" id="maj-username" name="username" class="formField"> |
|
| 93 | 93 | </label> |
| 94 | 94 | </div> |
| 95 | 95 | <div> |
@@ -103,17 +103,17 @@ discard block |
||
| 103 | 103 | <div> |
| 104 | 104 | <a href="#" id="maj-passwd_click">'. I18N::translate('Request a new password').'</a> |
| 105 | 105 | </div>'; |
| 106 | - if (Site::getPreference('USE_REGISTRATION_MODULE')) { |
|
| 107 | - $content.= ' |
|
| 106 | + if (Site::getPreference('USE_REGISTRATION_MODULE')) { |
|
| 107 | + $content.= ' |
|
| 108 | 108 | <div> |
| 109 | 109 | <a href="'.WT_LOGIN_URL.'?action=register">'. I18N::translate('Request a new user account').'</a> |
| 110 | 110 | </div>'; |
| 111 | - } |
|
| 112 | - $content.= ' |
|
| 111 | + } |
|
| 112 | + $content.= ' |
|
| 113 | 113 | </form>'; // close "login-form" |
| 114 | 114 | |
| 115 | - // hidden New Password block |
|
| 116 | - $content.= ' |
|
| 115 | + // hidden New Password block |
|
| 116 | + $content.= ' |
|
| 117 | 117 | <div id="maj-new_passwd"> |
| 118 | 118 | <form id="maj-new_passwd_form" name="new_passwd_form" action="'.WT_LOGIN_URL.'" method="post"> |
| 119 | 119 | <input type="hidden" name="time" value=""> |
@@ -130,10 +130,10 @@ discard block |
||
| 130 | 130 | </form> |
| 131 | 131 | </div> |
| 132 | 132 | </div>';//"login-box" |
| 133 | - } |
|
| 133 | + } |
|
| 134 | 134 | |
| 135 | - return $content; |
|
| 136 | - } |
|
| 135 | + return $content; |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | 138 | |
| 139 | 139 | } |
@@ -36,20 +36,20 @@ discard block |
||
| 36 | 36 | '<table> |
| 37 | 37 | <tr> |
| 38 | 38 | <td> |
| 39 | - <a href="pedigree.php?rootid=' . $indi->getXref() . '&ged=' . $tree->getNameUrl() . '"> |
|
| 40 | - <i class="icon-pedigree"></i><br>' . I18N::translate('Default chart') . ' |
|
| 39 | + <a href="pedigree.php?rootid=' . $indi->getXref().'&ged='.$tree->getNameUrl().'"> |
|
| 40 | + <i class="icon-pedigree"></i><br>' . I18N::translate('Default chart').' |
|
| 41 | 41 | </a> |
| 42 | 42 | </td> |
| 43 | 43 | <td> |
| 44 | - <a href="individual.php?pid=' . $indi->getXref() . '&ged=' . $tree->getNameUrl() . '"> |
|
| 45 | - <i class="icon-indis"></i><br>' . I18N::translate('Default individual') . ' |
|
| 44 | + <a href="individual.php?pid=' . $indi->getXref().'&ged='.$tree->getNameUrl().'"> |
|
| 45 | + <i class="icon-indis"></i><br>' . I18N::translate('Default individual').' |
|
| 46 | 46 | </a> |
| 47 | 47 | </td>'; |
| 48 | 48 | |
| 49 | 49 | if (Site::getPreference('USE_REGISTRATION_MODULE') && !Auth::check()) { |
| 50 | 50 | $content .= ' |
| 51 | 51 | <td> |
| 52 | - <a href="' . WT_LOGIN_URL . '?action=register"> |
|
| 52 | + <a href="' . WT_LOGIN_URL.'?action=register"> |
|
| 53 | 53 | <i class="icon-user_add"></i><br>'.I18N::translate('Request a new user account').' |
| 54 | 54 | </a> |
| 55 | 55 | </td>'; |
@@ -59,16 +59,16 @@ discard block |
||
| 59 | 59 | </table>'; |
| 60 | 60 | |
| 61 | 61 | // Piwik Statistics |
| 62 | - if ($this->data->get('piwik_enabled', false)){ |
|
| 62 | + if ($this->data->get('piwik_enabled', false)) { |
|
| 63 | 63 | $content .= ' |
| 64 | 64 | <div class="center"> |
| 65 | 65 | <div id="piwik_stats"> |
| 66 | - <i class="icon-loading-small"></i> ' . I18N::translate('Retrieving Piwik statistics...') . ' |
|
| 66 | + <i class="icon-loading-small"></i> ' . I18N::translate('Retrieving Piwik statistics...').' |
|
| 67 | 67 | </div> |
| 68 | 68 | </div>'; |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | - $content .= '<hr />'; |
|
| 71 | + $content .= '<hr />'; |
|
| 72 | 72 | |
| 73 | 73 | // Login section - based on login_block |
| 74 | 74 | if (Auth::check()) { |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | <div class="center"> |
| 77 | 77 | <form method="post" action="logout.php" name="logoutform" onsubmit="return true;"> |
| 78 | 78 | <br>' . |
| 79 | - I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">' . Auth::user()->getRealNameHtml() . '</a>') . |
|
| 79 | + I18N::translate('You are signed in as %s.', '<a href="edituser.php" class="name2">'.Auth::user()->getRealNameHtml().'</a>'). |
|
| 80 | 80 | '<br><br> |
| 81 | 81 | <input type="submit" value="'.I18N::translate('sign out').'"> |
| 82 | 82 | <br><br> |
@@ -98,34 +98,34 @@ discard block |
||
| 98 | 98 | </label> |
| 99 | 99 | </div> |
| 100 | 100 | <div> |
| 101 | - <input type="submit" value="'. I18N::translate('sign in'). '"> |
|
| 101 | + <input type="submit" value="'. I18N::translate('sign in').'"> |
|
| 102 | 102 | </div> |
| 103 | 103 | <div> |
| 104 | 104 | <a href="#" id="maj-passwd_click">'. I18N::translate('Request a new password').'</a> |
| 105 | 105 | </div>'; |
| 106 | 106 | if (Site::getPreference('USE_REGISTRATION_MODULE')) { |
| 107 | - $content.= ' |
|
| 107 | + $content .= ' |
|
| 108 | 108 | <div> |
| 109 | - <a href="'.WT_LOGIN_URL.'?action=register">'. I18N::translate('Request a new user account').'</a> |
|
| 109 | + <a href="'.WT_LOGIN_URL.'?action=register">'.I18N::translate('Request a new user account').'</a> |
|
| 110 | 110 | </div>'; |
| 111 | 111 | } |
| 112 | - $content.= ' |
|
| 112 | + $content .= ' |
|
| 113 | 113 | </form>'; // close "login-form" |
| 114 | 114 | |
| 115 | 115 | // hidden New Password block |
| 116 | - $content.= ' |
|
| 116 | + $content .= ' |
|
| 117 | 117 | <div id="maj-new_passwd"> |
| 118 | 118 | <form id="maj-new_passwd_form" name="new_passwd_form" action="'.WT_LOGIN_URL.'" method="post"> |
| 119 | 119 | <input type="hidden" name="time" value=""> |
| 120 | 120 | <input type="hidden" name="action" value="requestpw"> |
| 121 | 121 | <h4>'. I18N::translate('Lost password request').'</h4> |
| 122 | 122 | <div> |
| 123 | - <label for="maj-new_passwd_username">'. I18N::translate('Username or email address') . ' |
|
| 123 | + <label for="maj-new_passwd_username">'. I18N::translate('Username or email address').' |
|
| 124 | 124 | <input type="text" id="maj-new_passwd_username" name="new_passwd_username" value=""> |
| 125 | 125 | </label> |
| 126 | 126 | </div> |
| 127 | 127 | <div> |
| 128 | - <input type="submit" value="'. I18N::translate('Continue'). '"> |
|
| 128 | + <input type="submit" value="'. I18N::translate('Continue').'"> |
|
| 129 | 129 | </div> |
| 130 | 130 | </form> |
| 131 | 131 | </div> |
@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
| 64 | 64 | */ |
| 65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
| 66 | - if($ctrlIndi){ |
|
| 66 | + if ($ctrlIndi) { |
|
| 67 | 67 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
| 68 | 68 | if ($dindi->canDisplayIsSourced()) |
| 69 | 69 | return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
@@ -87,19 +87,19 @@ discard block |
||
| 87 | 87 | * {@inheritDoc} |
| 88 | 88 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNamePrepend() |
| 89 | 89 | */ |
| 90 | - public function hRecordNamePrepend(GedcomRecord $grec, $size){ } |
|
| 90 | + public function hRecordNamePrepend(GedcomRecord $grec, $size) { } |
|
| 91 | 91 | |
| 92 | 92 | /** |
| 93 | 93 | * {@inheritDoc} |
| 94 | 94 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
| 95 | 95 | */ |
| 96 | - public function hRecordNameAppend(GedcomRecord $grec, $size = 'small'){ |
|
| 96 | + public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') { |
|
| 97 | 97 | $html = ''; |
| 98 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
| 98 | + if ($grec instanceof \Fisharebest\Webtrees\Individual) { |
|
| 99 | 99 | $dindi = new Individual($grec); |
| 100 | 100 | $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
| 101 | 101 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
| 102 | - if($grec->isDead()) |
|
| 102 | + if ($grec->isDead()) |
|
| 103 | 103 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
| 104 | 104 | } |
| 105 | 105 | return $html; |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | * {@inheritDoc} |
| 118 | 118 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::hasSidebarContent() |
| 119 | 119 | */ |
| 120 | - public function hasSidebarContent(){ |
|
| 120 | + public function hasSidebarContent() { |
|
| 121 | 121 | return true; |
| 122 | 122 | } |
| 123 | 123 | |
@@ -147,24 +147,24 @@ discard block |
||
| 147 | 147 | echo ' |
| 148 | 148 | <table class="issourcedtable"> |
| 149 | 149 | <tr> |
| 150 | - <td class="slabel"> ' . GedcomTag::getLabel('INDI') . '</td> |
|
| 150 | + <td class="slabel"> ' . GedcomTag::getLabel('INDI').'</td> |
|
| 151 | 151 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1).'</td> |
| 152 | 152 | </tr> |
| 153 | 153 | <tr> |
| 154 | - <td class="slabel">' . GedcomTag::getLabel('BIRT') . '</td> |
|
| 154 | + <td class="slabel">' . GedcomTag::getLabel('BIRT').'</td> |
|
| 155 | 155 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1).'</td> |
| 156 | 156 | </tr>'; |
| 157 | 157 | |
| 158 | 158 | $fams = $root->getSpouseFamilies(); |
| 159 | - ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
| 160 | - foreach($fams as $fam){ |
|
| 159 | + ($ct = count($fams)) > 1 ? $nb = 1 : $nb = ' '; |
|
| 160 | + foreach ($fams as $fam) { |
|
| 161 | 161 | $dfam = new Family($fam); |
| 162 | 162 | echo ' |
| 163 | 163 | <tr> |
| 164 | 164 | <td class="slabel right"> |
| 165 | - <a href="' . $fam->getHtmlUrl() . '"> '. GedcomTag::getLabel('MARR'); |
|
| 166 | - if($ct > 1){ |
|
| 167 | - echo ' ',$nb; |
|
| 165 | + <a href="' . $fam->getHtmlUrl().'"> '.GedcomTag::getLabel('MARR'); |
|
| 166 | + if ($ct > 1) { |
|
| 167 | + echo ' ', $nb; |
|
| 168 | 168 | $nb++; |
| 169 | 169 | } |
| 170 | 170 | echo ' </a> |
@@ -173,10 +173,10 @@ discard block |
||
| 173 | 173 | </tr>'; |
| 174 | 174 | } |
| 175 | 175 | |
| 176 | - if( $root->isDead() ) |
|
| 176 | + if ($root->isDead()) |
|
| 177 | 177 | echo ' |
| 178 | 178 | <tr> |
| 179 | - <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
|
| 179 | + <td class="slabel">' . GedcomTag::getLabel('DEAT').'</td> |
|
| 180 | 180 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
| 181 | 181 | </tr>'; |
| 182 | 182 | |
@@ -65,8 +65,9 @@ discard block |
||
| 65 | 65 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
| 66 | 66 | if($ctrlIndi){ |
| 67 | 67 | $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
| 68 | - if ($dindi->canDisplayIsSourced()) |
|
| 69 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 68 | + if ($dindi->canDisplayIsSourced()) { |
|
| 69 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 70 | + } |
|
| 70 | 71 | } |
| 71 | 72 | return ''; |
| 72 | 73 | } |
@@ -99,8 +100,9 @@ discard block |
||
| 99 | 100 | $dindi = new Individual($grec); |
| 100 | 101 | $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
| 101 | 102 | $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
| 102 | - if($grec->isDead()) |
|
| 103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
| 103 | + if($grec->isDead()) { |
|
| 104 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
| 105 | + } |
|
| 104 | 106 | } |
| 105 | 107 | return $html; |
| 106 | 108 | } |
@@ -173,12 +175,13 @@ discard block |
||
| 173 | 175 | </tr>'; |
| 174 | 176 | } |
| 175 | 177 | |
| 176 | - if( $root->isDead() ) |
|
| 177 | - echo ' |
|
| 178 | + if( $root->isDead() ) { |
|
| 179 | + echo ' |
|
| 178 | 180 | <tr> |
| 179 | 181 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
| 180 | 182 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
| 181 | 183 | </tr>'; |
| 184 | + } |
|
| 182 | 185 | |
| 183 | 186 | echo '</table>'; |
| 184 | 187 | } |
@@ -30,29 +30,29 @@ discard block |
||
| 30 | 30 | class IsSourcedModule extends AbstractModule |
| 31 | 31 | implements ModuleSidebarInterface, HookSubscriberInterface, IndividualHeaderExtenderInterface, RecordNameTextExtenderInterface |
| 32 | 32 | { |
| 33 | - /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 34 | - const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 33 | + /** @var string For custom modules - link for support, upgrades, etc. */ |
|
| 34 | + const CUSTOM_WEBSITE = 'https://github.com/jon48/webtrees-lib'; |
|
| 35 | 35 | |
| 36 | - /** |
|
| 37 | - * {@inheritDoc} |
|
| 38 | - * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 39 | - */ |
|
| 40 | - public function getTitle() { |
|
| 41 | - return I18N::translate('Sourced events'); |
|
| 42 | - } |
|
| 36 | + /** |
|
| 37 | + * {@inheritDoc} |
|
| 38 | + * @see \Fisharebest\Webtrees\Module\AbstractModule::getTitle() |
|
| 39 | + */ |
|
| 40 | + public function getTitle() { |
|
| 41 | + return I18N::translate('Sourced events'); |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | 44 | /** |
| 45 | 45 | * {@inheritDoc} |
| 46 | 46 | * @see \Fisharebest\Webtrees\Module\AbstractModule::getDescription() |
| 47 | 47 | */ |
| 48 | - public function getDescription() { |
|
| 49 | - return I18N::translate('Indicate if events related to an record are sourced.'); |
|
| 50 | - } |
|
| 48 | + public function getDescription() { |
|
| 49 | + return I18N::translate('Indicate if events related to an record are sourced.'); |
|
| 50 | + } |
|
| 51 | 51 | |
| 52 | - /** |
|
| 53 | - * {@inheritDoc} |
|
| 54 | - * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
| 55 | - */ |
|
| 52 | + /** |
|
| 53 | + * {@inheritDoc} |
|
| 54 | + * @see \MyArtJaub\Webtrees\Hook\HookSubscriberInterface::getSubscribedHooks() |
|
| 55 | + */ |
|
| 56 | 56 | public function getSubscribedHooks() { |
| 57 | 57 | return array( |
| 58 | 58 | 'hExtendIndiHeaderIcons' => 10, |
@@ -65,12 +65,12 @@ discard block |
||
| 65 | 65 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons() |
| 66 | 66 | */ |
| 67 | 67 | public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) { |
| 68 | - if($ctrlIndi){ |
|
| 69 | - $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
| 70 | - if ($dindi->canDisplayIsSourced()) |
|
| 71 | - return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 72 | - } |
|
| 73 | - return ''; |
|
| 68 | + if($ctrlIndi){ |
|
| 69 | + $dindi = new Individual($ctrlIndi->getSignificantIndividual()); |
|
| 70 | + if ($dindi->canDisplayIsSourced()) |
|
| 71 | + return FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, 'large'); |
|
| 72 | + } |
|
| 73 | + return ''; |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | /** |
@@ -96,15 +96,15 @@ discard block |
||
| 96 | 96 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend() |
| 97 | 97 | */ |
| 98 | 98 | public function hRecordNameAppend(GedcomRecord $grec, $size = 'small'){ |
| 99 | - $html = ''; |
|
| 100 | - if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
| 101 | - $dindi = new Individual($grec); |
|
| 102 | - $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
|
| 103 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
|
| 104 | - if($grec->isDead()) |
|
| 105 | - $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
| 106 | - } |
|
| 107 | - return $html; |
|
| 99 | + $html = ''; |
|
| 100 | + if($grec instanceof \Fisharebest\Webtrees\Individual){ |
|
| 101 | + $dindi = new Individual($grec); |
|
| 102 | + $html .= FunctionsPrint::formatIsSourcedIcon('R', $dindi->isSourced(), 'INDI', 1, $size); |
|
| 103 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1, $size); |
|
| 104 | + if($grec->isDead()) |
|
| 105 | + $html .= FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1, $size); |
|
| 106 | + } |
|
| 107 | + return $html; |
|
| 108 | 108 | } |
| 109 | 109 | |
| 110 | 110 | /** |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::defaultSidebarOrder() |
| 113 | 113 | */ |
| 114 | 114 | public function defaultSidebarOrder() { |
| 115 | - return 15; |
|
| 115 | + return 15; |
|
| 116 | 116 | } |
| 117 | 117 | |
| 118 | 118 | /** |
@@ -120,7 +120,7 @@ discard block |
||
| 120 | 120 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::hasSidebarContent() |
| 121 | 121 | */ |
| 122 | 122 | public function hasSidebarContent(){ |
| 123 | - return true; |
|
| 123 | + return true; |
|
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | /** |
@@ -128,7 +128,7 @@ discard block |
||
| 128 | 128 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarAjaxContent() |
| 129 | 129 | */ |
| 130 | 130 | public function getSidebarAjaxContent() { |
| 131 | - return ''; |
|
| 131 | + return ''; |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
@@ -136,15 +136,15 @@ discard block |
||
| 136 | 136 | * @see \Fisharebest\Webtrees\Module\ModuleSidebarInterface::getSidebarContent() |
| 137 | 137 | */ |
| 138 | 138 | public function getSidebarContent() { |
| 139 | - ob_start(); |
|
| 140 | - $root = Globals::getController()->getSignificantIndividual(); |
|
| 141 | - if ($root) { |
|
| 142 | - $dindi = new Individual($root); |
|
| 139 | + ob_start(); |
|
| 140 | + $root = Globals::getController()->getSignificantIndividual(); |
|
| 141 | + if ($root) { |
|
| 142 | + $dindi = new Individual($root); |
|
| 143 | 143 | |
| 144 | - if (!$dindi->canDisplayIsSourced()) { |
|
| 145 | - echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
| 146 | - } else { |
|
| 147 | - echo ' |
|
| 144 | + if (!$dindi->canDisplayIsSourced()) { |
|
| 145 | + echo '<div class="error">', I18N::translate('This information is private and cannot be shown.'), '</div>'; |
|
| 146 | + } else { |
|
| 147 | + echo ' |
|
| 148 | 148 | <table class="issourcedtable"> |
| 149 | 149 | <tr> |
| 150 | 150 | <td class="slabel"> ' . GedcomTag::getLabel('INDI') . '</td> |
@@ -155,35 +155,35 @@ discard block |
||
| 155 | 155 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isBirthSourced(), 'BIRT', 1).'</td> |
| 156 | 156 | </tr>'; |
| 157 | 157 | |
| 158 | - $fams = $root->getSpouseFamilies(); |
|
| 159 | - ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
| 160 | - foreach($fams as $fam){ |
|
| 161 | - $dfam = new Family($fam); |
|
| 162 | - echo ' |
|
| 158 | + $fams = $root->getSpouseFamilies(); |
|
| 159 | + ($ct = count($fams)) > 1 ? $nb=1 : $nb=' '; |
|
| 160 | + foreach($fams as $fam){ |
|
| 161 | + $dfam = new Family($fam); |
|
| 162 | + echo ' |
|
| 163 | 163 | <tr> |
| 164 | 164 | <td class="slabel right"> |
| 165 | 165 | <a href="' . $fam->getHtmlUrl() . '"> '. GedcomTag::getLabel('MARR'); |
| 166 | - if($ct > 1){ |
|
| 167 | - echo ' ',$nb; |
|
| 168 | - $nb++; |
|
| 169 | - } |
|
| 170 | - echo ' </a> |
|
| 166 | + if($ct > 1){ |
|
| 167 | + echo ' ',$nb; |
|
| 168 | + $nb++; |
|
| 169 | + } |
|
| 170 | + echo ' </a> |
|
| 171 | 171 | </td> |
| 172 | 172 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dfam->isMarriageSourced(), 'MARR', 1).'</td> |
| 173 | 173 | </tr>'; |
| 174 | - } |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | - if( $root->isDead() ) |
|
| 177 | - echo ' |
|
| 176 | + if( $root->isDead() ) |
|
| 177 | + echo ' |
|
| 178 | 178 | <tr> |
| 179 | 179 | <td class="slabel">' . GedcomTag::getLabel('DEAT') . '</td> |
| 180 | 180 | <td class="svalue">' . FunctionsPrint::formatIsSourcedIcon('E', $dindi->isDeathSourced(), 'DEAT', 1).'</td> |
| 181 | 181 | </tr>'; |
| 182 | 182 | |
| 183 | - echo '</table>'; |
|
| 184 | - } |
|
| 185 | - } |
|
| 186 | - return ob_get_clean(); |
|
| 183 | + echo '</table>'; |
|
| 184 | + } |
|
| 185 | + } |
|
| 186 | + return ob_get_clean(); |
|
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | |
@@ -31,11 +31,11 @@ discard block |
||
| 31 | 31 | * {@inhericDoc} |
| 32 | 32 | * @see \MyArtJaub\Webtrees\Mvc\View\AbstractView::renderContent() |
| 33 | 33 | */ |
| 34 | - protected function renderContent() { |
|
| 34 | + protected function renderContent() { |
|
| 35 | 35 | |
| 36 | - if($this->data->get('has_sosa', false)) { |
|
| 37 | - $table_id = $this->data->get('table_id'); |
|
| 38 | - ?> |
|
| 36 | + if($this->data->get('has_sosa', false)) { |
|
| 37 | + $table_id = $this->data->get('table_id'); |
|
| 38 | + ?> |
|
| 39 | 39 | |
| 40 | 40 | <div id="sosa-indi-list" class="sosa-list"> |
| 41 | 41 | <table id="<?= $table_id ?>"> |
@@ -177,67 +177,67 @@ discard block |
||
| 177 | 177 | <tbody> |
| 178 | 178 | |
| 179 | 179 | <?php foreach($this->data->get('sosa_list') as $sosa => $person) { |
| 180 | - /** @var \Fisharebest\Webtrees\Individual $person */ |
|
| 181 | - if ($person->isPendingAddtion()) { |
|
| 182 | - $class = ' class="new"'; |
|
| 183 | - } elseif ($person->isPendingDeletion()) { |
|
| 184 | - $class = ' class="old"'; |
|
| 185 | - } else { |
|
| 186 | - $class = ''; |
|
| 187 | - } |
|
| 188 | - $dperson = new \MyArtJaub\Webtrees\Individual($person); |
|
| 189 | - ?> |
|
| 180 | + /** @var \Fisharebest\Webtrees\Individual $person */ |
|
| 181 | + if ($person->isPendingAddtion()) { |
|
| 182 | + $class = ' class="new"'; |
|
| 183 | + } elseif ($person->isPendingDeletion()) { |
|
| 184 | + $class = ' class="old"'; |
|
| 185 | + } else { |
|
| 186 | + $class = ''; |
|
| 187 | + } |
|
| 188 | + $dperson = new \MyArtJaub\Webtrees\Individual($person); |
|
| 189 | + ?> |
|
| 190 | 190 | <tr <?= $class ?>> |
| 191 | 191 | <td class="transparent"><?= $sosa ?></td> |
| 192 | 192 | <td hidden><?= $person->getXref() ?></td> |
| 193 | 193 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?> |
| 194 | 194 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
| 195 | 195 | <?php foreach ($person->getAllNames() as $num=>$name) { |
| 196 | - if ($name['type']=='NAME') { |
|
| 197 | - $title=''; |
|
| 198 | - } else { |
|
| 199 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
| 200 | - } |
|
| 201 | - if ($num==$person->getPrimaryName()) { |
|
| 202 | - $class=' class="name2"'; |
|
| 203 | - $sex_image=$person->getSexImage(); |
|
| 204 | - } else { |
|
| 205 | - $class=''; |
|
| 206 | - $sex_image=''; |
|
| 207 | - } ?> |
|
| 196 | + if ($name['type']=='NAME') { |
|
| 197 | + $title=''; |
|
| 198 | + } else { |
|
| 199 | + $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
| 200 | + } |
|
| 201 | + if ($num==$person->getPrimaryName()) { |
|
| 202 | + $class=' class="name2"'; |
|
| 203 | + $sex_image=$person->getSexImage(); |
|
| 204 | + } else { |
|
| 205 | + $class=''; |
|
| 206 | + $sex_image=''; |
|
| 207 | + } ?> |
|
| 208 | 208 | <a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>"> |
| 209 | 209 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
| 210 | 210 | </a> |
| 211 | 211 | <?= $sex_image; |
| 212 | - echo implode(' ', |
|
| 213 | - \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
| 214 | - ->get('hRecordNameAppend') |
|
| 215 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
| 216 | - ?> |
|
| 212 | + echo implode(' ', |
|
| 213 | + \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
|
| 214 | + ->get('hRecordNameAppend') |
|
| 215 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
| 216 | + ?> |
|
| 217 | 217 | <br/> |
| 218 | 218 | <?php } |
| 219 | - echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
| 220 | - ?> |
|
| 219 | + echo $person->getPrimaryParentsNames('parents details1', 'none'); |
|
| 220 | + ?> |
|
| 221 | 221 | </td> |
| 222 | 222 | <td hidden data-sort="<?= Filter::escapeHtml($surn_givn) ?>"></td> |
| 223 | 223 | <?php $birth_dates = $person->getAllBirthDates(); ?> |
| 224 | 224 | <td data-sort="<?= $person->getEstimatedBirthDate()->julianDay() ?>"> |
| 225 | 225 | <?php foreach ($birth_dates as $n => $birth_date) { |
| 226 | - if ($n > 0) { ?><br/><?php } ?> |
|
| 226 | + if ($n > 0) { ?><br/><?php } ?> |
|
| 227 | 227 | <?php echo $birth_date->display(true); |
| 228 | - } ?> |
|
| 228 | + } ?> |
|
| 229 | 229 | </td> |
| 230 | 230 | <td> |
| 231 | 231 | <?php foreach ($person->getAllBirthPlaces() as $n => $birth_place) { |
| 232 | - $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
| 233 | - if ($n > 0) { ?><br><?php } ?> |
|
| 232 | + $tmp = new \Fisharebest\Webtrees\Place($birth_place, $person->getTree()); |
|
| 233 | + if ($n > 0) { ?><br><?php } ?> |
|
| 234 | 234 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
| 235 | 235 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
| 236 | 236 | </a> |
| 237 | 237 | <?php } ?> |
| 238 | 238 | </td> |
| 239 | 239 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
| 240 | - $isBSourced = $dperson->isBirthSourced(); ?> |
|
| 240 | + $isBSourced = $dperson->isBirthSourced(); ?> |
|
| 241 | 241 | <td data-sort="<?= $isBSourced ?>"><?= FunctionsPrint::formatIsSourcedIcon('E', $isBSourced, 'BIRT', 1, 'medium') ?></td> |
| 242 | 242 | <?php } else { ?> |
| 243 | 243 | <td> </td> |
@@ -245,63 +245,63 @@ discard block |
||
| 245 | 245 | <?php $death_dates = $person->getAllDeathDates(); ?> |
| 246 | 246 | <td data-sort="<?= $person->getEstimatedDeathDate()->julianDay() ?>"> |
| 247 | 247 | <?php foreach ($death_dates as $num => $death_date) { |
| 248 | - if ($num) { ?><br/><?php } ?> |
|
| 248 | + if ($num) { ?><br/><?php } ?> |
|
| 249 | 249 | <?php echo $death_date->display(true); |
| 250 | - } ?> |
|
| 250 | + } ?> |
|
| 251 | 251 | </td> |
| 252 | 252 | <?php if (isset($birth_dates[0]) && isset($death_dates[0])) { |
| 253 | - $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
| 254 | - $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
| 255 | - } else { |
|
| 256 | - $age_at_death = ''; |
|
| 257 | - $age_at_death_sort = PHP_INT_MAX; |
|
| 258 | - } ?> |
|
| 253 | + $age_at_death = Date::getAge($birth_dates[0], $death_dates[0], 0); |
|
| 254 | + $age_at_death_sort = Date::getAge($birth_dates[0], $death_dates[0], 2); |
|
| 255 | + } else { |
|
| 256 | + $age_at_death = ''; |
|
| 257 | + $age_at_death_sort = PHP_INT_MAX; |
|
| 258 | + } ?> |
|
| 259 | 259 | <td class="center" data-sort="<?= $age_at_death_sort ?>"><?= $age_at_death ?></td> |
| 260 | 260 | <td> |
| 261 | 261 | <?php foreach ($person->getAllDeathPlaces() as $n => $death_place) { |
| 262 | - $tmp = new Place($death_place, $person->getTree()); |
|
| 263 | - if ($n) { ?><br><?php } ?> |
|
| 262 | + $tmp = new Place($death_place, $person->getTree()); |
|
| 263 | + if ($n) { ?><br><?php } ?> |
|
| 264 | 264 | <a href="'<?= $tmp->getURL() ?>" title="<?= strip_tags($tmp->getFullName()) ?>"> |
| 265 | 265 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($tmp->getShortName()) ?> |
| 266 | 266 | </a> |
| 267 | 267 | <?php } ?> |
| 268 | 268 | </td> |
| 269 | 269 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
| 270 | - if($person->isDead()) { |
|
| 271 | - $isDSourced = $dperson->isDeathSourced(); ?> |
|
| 270 | + if($person->isDead()) { |
|
| 271 | + $isDSourced = $dperson->isDeathSourced(); ?> |
|
| 272 | 272 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
| 273 | 273 | <?php } else { ?> |
| 274 | 274 | <td data-sort="-99"> </td> |
| 275 | 275 | <?php } |
| 276 | - } else { ?> |
|
| 276 | + } else { ?> |
|
| 277 | 277 | <td> </td> |
| 278 | 278 | <?php } ?> |
| 279 | 279 | <td hidden><?= $person->getSex() ?></td> |
| 280 | 280 | <td hidden> |
| 281 | 281 | <?php if (!$person->canShow() || Date::compare($person->getEstimatedBirthDate(), new Date(date('Y') - 100)) > 0) { |
| 282 | - echo 'Y100'; |
|
| 283 | - } else { |
|
| 284 | - echo 'YES'; |
|
| 285 | - } ?> |
|
| 282 | + echo 'Y100'; |
|
| 283 | + } else { |
|
| 284 | + echo 'YES'; |
|
| 285 | + } ?> |
|
| 286 | 286 | </td> |
| 287 | 287 | <td hidden> |
| 288 | 288 | <?php if (isset($death_dates[0]) && Date::compare($death_dates[0], new Date(date('Y') - 100)) > 0) { |
| 289 | - echo 'Y100'; |
|
| 290 | - } elseif ($person->isDead()) { |
|
| 291 | - echo 'YES'; |
|
| 292 | - } else { |
|
| 293 | - echo 'N'; |
|
| 294 | - } ?> |
|
| 289 | + echo 'Y100'; |
|
| 290 | + } elseif ($person->isDead()) { |
|
| 291 | + echo 'YES'; |
|
| 292 | + } else { |
|
| 293 | + echo 'N'; |
|
| 294 | + } ?> |
|
| 295 | 295 | </td> |
| 296 | 296 | <td hidden> |
| 297 | 297 | <?php if (!$person->getChildFamilies()) { |
| 298 | - echo 'R'; |
|
| 298 | + echo 'R'; |
|
| 299 | 299 | } // roots |
| 300 | 300 | elseif (!$person->isDead() && $person->getNumberOfChildren() < 1) { |
| 301 | - echo 'L'; |
|
| 301 | + echo 'L'; |
|
| 302 | 302 | } // leaves |
| 303 | 303 | else { |
| 304 | - echo ' '; |
|
| 304 | + echo ' '; |
|
| 305 | 305 | } ?> |
| 306 | 306 | </td> |
| 307 | 307 | </tr> |
@@ -312,12 +312,12 @@ discard block |
||
| 312 | 312 | <th class="ui-state-default" colspan="15"> |
| 313 | 313 | <div class="center"> |
| 314 | 314 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
| 315 | - I18N::number($this->data->get('sosa_count')), |
|
| 316 | - I18N::number($this->data->get('sosa_theo')), |
|
| 317 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
| 318 | - ) ?> |
|
| 315 | + I18N::number($this->data->get('sosa_count')), |
|
| 316 | + I18N::number($this->data->get('sosa_theo')), |
|
| 317 | + I18N::percentage($this->data->get('sosa_ratio'),2) |
|
| 318 | + ) ?> |
|
| 319 | 319 | <?php if($this->data->get('sosa_hidden') > 0) { |
| 320 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
| 320 | + echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
| 321 | 321 | } ?> |
| 322 | 322 | </div> |
| 323 | 323 | </th> |
@@ -351,8 +351,8 @@ discard block |
||
| 351 | 351 | </div> |
| 352 | 352 | </div> |
| 353 | 353 | <?php |
| 354 | - } |
|
| 355 | - } |
|
| 354 | + } |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | 357 | } |
| 358 | 358 | |
| 359 | 359 | \ No newline at end of file |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | protected function renderContent() { |
| 35 | 35 | |
| 36 | - if($this->data->get('has_sosa', false)) { |
|
| 36 | + if ($this->data->get('has_sosa', false)) { |
|
| 37 | 37 | $table_id = $this->data->get('table_id'); |
| 38 | 38 | ?> |
| 39 | 39 | |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | </thead> |
| 177 | 177 | <tbody> |
| 178 | 178 | |
| 179 | - <?php foreach($this->data->get('sosa_list') as $sosa => $person) { |
|
| 179 | + <?php foreach ($this->data->get('sosa_list') as $sosa => $person) { |
|
| 180 | 180 | /** @var \Fisharebest\Webtrees\Individual $person */ |
| 181 | 181 | if ($person->isPendingAddtion()) { |
| 182 | 182 | $class = ' class="new"'; |
@@ -193,17 +193,17 @@ discard block |
||
| 193 | 193 | <?php list($surn_givn, $givn_surn) = FunctionsPrintLists::sortableNames($person); ?> |
| 194 | 194 | <td colspan="2" data-sort="<?= Filter::escapeHtml($givn_surn) ?>"> |
| 195 | 195 | <?php foreach ($person->getAllNames() as $num=>$name) { |
| 196 | - if ($name['type']=='NAME') { |
|
| 197 | - $title=''; |
|
| 196 | + if ($name['type'] == 'NAME') { |
|
| 197 | + $title = ''; |
|
| 198 | 198 | } else { |
| 199 | - $title='title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
| 199 | + $title = 'title="'.strip_tags(GedcomTag::getLabel($name['type'], $person)).'"'; |
|
| 200 | 200 | } |
| 201 | - if ($num==$person->getPrimaryName()) { |
|
| 202 | - $class=' class="name2"'; |
|
| 203 | - $sex_image=$person->getSexImage(); |
|
| 201 | + if ($num == $person->getPrimaryName()) { |
|
| 202 | + $class = ' class="name2"'; |
|
| 203 | + $sex_image = $person->getSexImage(); |
|
| 204 | 204 | } else { |
| 205 | - $class=''; |
|
| 206 | - $sex_image=''; |
|
| 205 | + $class = ''; |
|
| 206 | + $sex_image = ''; |
|
| 207 | 207 | } ?> |
| 208 | 208 | <a <?= $title.' '.$class; ?> href="<?= $person->getHtmlUrl() ?>"> |
| 209 | 209 | <?= \Fisharebest\Webtrees\Functions\FunctionsPrint::highlightSearchHits($name['full']) ?> |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | echo implode(' ', |
| 213 | 213 | \MyArtJaub\Webtrees\Hook\HookProvider::getInstance() |
| 214 | 214 | ->get('hRecordNameAppend') |
| 215 | - ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
| 215 | + ->executeOnlyFor(array(Constants::MODULE_MAJ_SOSA_NAME), $person, 'smaller')); |
|
| 216 | 216 | ?> |
| 217 | 217 | <br/> |
| 218 | 218 | <?php } |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | <?php } ?> |
| 268 | 268 | </td> |
| 269 | 269 | <?php if (ModuleManager::getInstance()->isOperational(Constants::MODULE_MAJ_ISSOURCED_NAME)) { |
| 270 | - if($person->isDead()) { |
|
| 270 | + if ($person->isDead()) { |
|
| 271 | 271 | $isDSourced = $dperson->isDeathSourced(); ?> |
| 272 | 272 | <td data-sort=<?= $isDSourced ?>><?= FunctionsPrint::formatIsSourcedIcon('E', $isDSourced, 'DEAT', 1, 'medium') ?></td> |
| 273 | 273 | <?php } else { ?> |
@@ -314,10 +314,10 @@ discard block |
||
| 314 | 314 | <?= I18N::translate('Number of Sosa ancestors: %1$s known / %2$s theoretical (%3$s)', |
| 315 | 315 | I18N::number($this->data->get('sosa_count')), |
| 316 | 316 | I18N::number($this->data->get('sosa_theo')), |
| 317 | - I18N::percentage($this->data->get('sosa_ratio'),2) |
|
| 317 | + I18N::percentage($this->data->get('sosa_ratio'), 2) |
|
| 318 | 318 | ) ?> |
| 319 | - <?php if($this->data->get('sosa_hidden') > 0) { |
|
| 320 | - echo '['. I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
| 319 | + <?php if ($this->data->get('sosa_hidden') > 0) { |
|
| 320 | + echo '['.I18N::translate('%s hidden', I18N::number($this->data->get('sosa_hidden'))).']'; |
|
| 321 | 321 | } ?> |
| 322 | 322 | </div> |
| 323 | 323 | </th> |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | <button type="button" class="ui-state-default btn-toggle-parents"> |
| 330 | 330 | <?= I18N::translate('Show parents') ?> |
| 331 | 331 | </button> |
| 332 | - <button id="btn-toggle-statistics-<?= $table_id ;?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
| 332 | + <button id="btn-toggle-statistics-<?= $table_id; ?>" type="button" class="ui-state-default btn-toggle-statistics"> |
|
| 333 | 333 | <?= I18N::translate('Show statistics charts') ?> |
| 334 | 334 | </button> |
| 335 | 335 | </div> |
@@ -1,13 +1,13 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * webtrees-lib: MyArtJaub library for webtrees |
|
| 4 | - * |
|
| 5 | - * @package MyArtJaub\Webtrees |
|
| 6 | - * @subpackage Hook |
|
| 7 | - * @author Jonathan Jaubart <[email protected]> |
|
| 8 | - * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
| 9 | - * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
| 10 | - */ |
|
| 3 | + * webtrees-lib: MyArtJaub library for webtrees |
|
| 4 | + * |
|
| 5 | + * @package MyArtJaub\Webtrees |
|
| 6 | + * @subpackage Hook |
|
| 7 | + * @author Jonathan Jaubart <[email protected]> |
|
| 8 | + * @copyright Copyright (c) 2011-2016, Jonathan Jaubart |
|
| 9 | + * @license http://www.gnu.org/licenses/gpl.html GNU General Public License, version 3 |
|
| 10 | + */ |
|
| 11 | 11 | namespace MyArtJaub\Webtrees\Hook; |
| 12 | 12 | |
| 13 | 13 | use Fisharebest\Webtrees\Database; |
@@ -137,17 +137,17 @@ discard block |
||
| 137 | 137 | * @return array Results of the hook executions |
| 138 | 138 | */ |
| 139 | 139 | public function executeOnlyFor(array $module_names) { |
| 140 | - $result = array(); |
|
| 141 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 142 | - $params = func_get_args(); |
|
| 143 | - array_shift($params); |
|
| 144 | - foreach ($module_names as $module_name) { |
|
| 145 | - if($module = Module::getModuleByName($module_name)) { |
|
| 146 | - $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
|
| 147 | - } |
|
| 148 | - } |
|
| 149 | - } |
|
| 150 | - return $result; |
|
| 140 | + $result = array(); |
|
| 141 | + if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 142 | + $params = func_get_args(); |
|
| 143 | + array_shift($params); |
|
| 144 | + foreach ($module_names as $module_name) { |
|
| 145 | + if($module = Module::getModuleByName($module_name)) { |
|
| 146 | + $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
|
| 147 | + } |
|
| 148 | + } |
|
| 149 | + } |
|
| 150 | + return $result; |
|
| 151 | 151 | } |
| 152 | 152 | |
| 153 | 153 | /** |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @param string $hook_function_in Hook function to be subscribed or executed |
| 32 | 32 | * @param string $hook_context_in Hook context to be subscribed or executed |
| 33 | 33 | */ |
| 34 | - public function __construct($hook_function_in, $hook_context_in = 'all'){ |
|
| 34 | + public function __construct($hook_function_in, $hook_context_in = 'all') { |
|
| 35 | 35 | $this->hook_function = $hook_function_in; |
| 36 | 36 | $this->hook_context = $hook_context_in; |
| 37 | 37 | } |
@@ -47,8 +47,8 @@ discard block |
||
| 47 | 47 | * |
| 48 | 48 | * @param string $hsubscriber Name of the subscriber module |
| 49 | 49 | */ |
| 50 | - public function subscribe($hsubscriber){ |
|
| 51 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 50 | + public function subscribe($hsubscriber) { |
|
| 51 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 52 | 52 | Database::prepare( |
| 53 | 53 | "INSERT IGNORE INTO `##maj_hooks` (majh_hook_function, majh_hook_context, majh_module_name)". |
| 54 | 54 | " VALUES (?, ?, ?)" |
@@ -62,8 +62,8 @@ discard block |
||
| 62 | 62 | * @param string $hsubscriber Name of the subscriber module |
| 63 | 63 | * @param int $priority Priority of execution |
| 64 | 64 | */ |
| 65 | - public function setPriority($hsubscriber, $priority){ |
|
| 66 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 65 | + public function setPriority($hsubscriber, $priority) { |
|
| 66 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 67 | 67 | Database::prepare( |
| 68 | 68 | "UPDATE `##maj_hooks`". |
| 69 | 69 | " SET majh_module_priority=?". |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | * |
| 80 | 80 | * @param string $hsubscriber Name of the subscriber module |
| 81 | 81 | */ |
| 82 | - public function enable($hsubscriber){ |
|
| 83 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 82 | + public function enable($hsubscriber) { |
|
| 83 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 84 | 84 | Database::prepare( |
| 85 | 85 | "UPDATE `##maj_hooks`". |
| 86 | 86 | " SET majh_status='enabled'". |
@@ -96,8 +96,8 @@ discard block |
||
| 96 | 96 | * |
| 97 | 97 | * @param string $hsubscriber Name of the subscriber module |
| 98 | 98 | */ |
| 99 | - public function disable($hsubscriber){ |
|
| 100 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 99 | + public function disable($hsubscriber) { |
|
| 100 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 101 | 101 | Database::prepare( |
| 102 | 102 | "UPDATE `##maj_hooks`". |
| 103 | 103 | " SET majh_status='disabled'". |
@@ -113,8 +113,8 @@ discard block |
||
| 113 | 113 | * |
| 114 | 114 | * @param string $hsubscriber Name of the subscriber module |
| 115 | 115 | */ |
| 116 | - public function remove($hsubscriber){ |
|
| 117 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 116 | + public function remove($hsubscriber) { |
|
| 117 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 118 | 118 | Database::prepare( |
| 119 | 119 | "DELETE FROM `##maj_hooks`". |
| 120 | 120 | " WHERE majh_hook_function=?". |
@@ -138,11 +138,11 @@ discard block |
||
| 138 | 138 | */ |
| 139 | 139 | public function executeOnlyFor(array $module_names) { |
| 140 | 140 | $result = array(); |
| 141 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 141 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 142 | 142 | $params = func_get_args(); |
| 143 | 143 | array_shift($params); |
| 144 | 144 | foreach ($module_names as $module_name) { |
| 145 | - if($module = Module::getModuleByName($module_name)) { |
|
| 145 | + if ($module = Module::getModuleByName($module_name)) { |
|
| 146 | 146 | $result[] = call_user_func_array(array($module, $this->hook_function), $params); |
| 147 | 147 | } |
| 148 | 148 | } |
@@ -156,17 +156,17 @@ discard block |
||
| 156 | 156 | * |
| 157 | 157 | * @return array Results of the hook executions |
| 158 | 158 | */ |
| 159 | - public function execute(){ |
|
| 159 | + public function execute() { |
|
| 160 | 160 | $result = array(); |
| 161 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 161 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 162 | 162 | $params = func_get_args(); |
| 163 | 163 | $sqlquery = ''; |
| 164 | 164 | $sqlparams = array($this->hook_function); |
| 165 | - if($this->hook_context != 'all') { |
|
| 165 | + if ($this->hook_context != 'all') { |
|
| 166 | 166 | $sqlparams = array($this->hook_function, $this->hook_context); |
| 167 | 167 | $sqlquery = " OR majh_hook_context=?"; |
| 168 | 168 | } |
| 169 | - $module_names=Database::prepare( |
|
| 169 | + $module_names = Database::prepare( |
|
| 170 | 170 | "SELECT majh_module_name AS module, majh_module_priority AS priority FROM `##maj_hooks`". |
| 171 | 171 | " WHERE majh_hook_function = ? AND (majh_hook_context='all'".$sqlquery.") AND majh_status='enabled'". |
| 172 | 172 | " ORDER BY majh_module_priority ASC, module ASC" |
@@ -183,15 +183,15 @@ discard block |
||
| 183 | 183 | * |
| 184 | 184 | * @return int Number of active modules |
| 185 | 185 | */ |
| 186 | - public function getNumberActiveModules(){ |
|
| 187 | - if(HookProvider::getInstance()->isModuleOperational()){ |
|
| 186 | + public function getNumberActiveModules() { |
|
| 187 | + if (HookProvider::getInstance()->isModuleOperational()) { |
|
| 188 | 188 | $sqlquery = ''; |
| 189 | 189 | $sqlparams = array($this->hook_function); |
| 190 | - if($this->hook_context != 'all') { |
|
| 190 | + if ($this->hook_context != 'all') { |
|
| 191 | 191 | $sqlparams = array($this->hook_function, $this->hook_context); |
| 192 | 192 | $sqlquery = " OR majh_hook_context=?"; |
| 193 | 193 | } |
| 194 | - $module_names=Database::prepare( |
|
| 194 | + $module_names = Database::prepare( |
|
| 195 | 195 | "SELECT majh_module_name AS modules FROM `##maj_hooks`". |
| 196 | 196 | " WHERE majh_hook_function = ? AND (majh_hook_context='all'".$sqlquery.") AND majh_status='enabled'" |
| 197 | 197 | )->execute($sqlparams)->fetchOneColumn(); |
@@ -205,8 +205,8 @@ discard block |
||
| 205 | 205 | * |
| 206 | 206 | * @return bool True is active modules exist, false otherwise |
| 207 | 207 | */ |
| 208 | - public function hasAnyActiveModule(){ |
|
| 209 | - return ($this->getNumberActiveModules()>0); |
|
| 208 | + public function hasAnyActiveModule() { |
|
| 209 | + return ($this->getNumberActiveModules() > 0); |
|
| 210 | 210 | } |
| 211 | 211 | |
| 212 | 212 | } |
@@ -15,66 +15,66 @@ |
||
| 15 | 15 | */ |
| 16 | 16 | abstract class AbstractView { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * Reference controller |
|
| 20 | - * @var \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 21 | - */ |
|
| 22 | - protected $ctrl; |
|
| 18 | + /** |
|
| 19 | + * Reference controller |
|
| 20 | + * @var \Fisharebest\Webtrees\Controller\BaseController $ctrl |
|
| 21 | + */ |
|
| 22 | + protected $ctrl; |
|
| 23 | 23 | |
| 24 | - /** |
|
| 25 | - * Structure containing the data of the view |
|
| 26 | - * @var ViewBag $data |
|
| 27 | - */ |
|
| 28 | - protected $data; |
|
| 24 | + /** |
|
| 25 | + * Structure containing the data of the view |
|
| 26 | + * @var ViewBag $data |
|
| 27 | + */ |
|
| 28 | + protected $data; |
|
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * Constructor |
|
| 32 | - * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl Controller |
|
| 33 | - * @param ViewBag $data ViewBag holding view data |
|
| 34 | - */ |
|
| 35 | - public function __construct(\Fisharebest\Webtrees\Controller\BaseController $ctrl, ViewBag $data) { |
|
| 36 | - $this->ctrl = $ctrl; |
|
| 37 | - $this->data = $data; |
|
| 38 | - } |
|
| 30 | + /** |
|
| 31 | + * Constructor |
|
| 32 | + * @param \Fisharebest\Webtrees\Controller\BaseController $ctrl Controller |
|
| 33 | + * @param ViewBag $data ViewBag holding view data |
|
| 34 | + */ |
|
| 35 | + public function __construct(\Fisharebest\Webtrees\Controller\BaseController $ctrl, ViewBag $data) { |
|
| 36 | + $this->ctrl = $ctrl; |
|
| 37 | + $this->data = $data; |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Render the view to the page, including header. |
|
| 42 | - * |
|
| 43 | - * @throws \Exception |
|
| 44 | - */ |
|
| 45 | - public function render() { |
|
| 46 | - global $controller; |
|
| 40 | + /** |
|
| 41 | + * Render the view to the page, including header. |
|
| 42 | + * |
|
| 43 | + * @throws \Exception |
|
| 44 | + */ |
|
| 45 | + public function render() { |
|
| 46 | + global $controller; |
|
| 47 | 47 | |
| 48 | - if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 48 | + if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 49 | 49 | |
| 50 | 50 | $controller = $this->ctrl; |
| 51 | - $this->ctrl->pageHeader(); |
|
| 51 | + $this->ctrl->pageHeader(); |
|
| 52 | 52 | |
| 53 | - echo $this->renderContent(); |
|
| 54 | - } |
|
| 53 | + echo $this->renderContent(); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * Render the view to the page, without any header |
|
| 58 | - */ |
|
| 59 | - public function renderPartial() { |
|
| 60 | - echo $this->getHtmlPartial(); |
|
| 61 | - } |
|
| 56 | + /** |
|
| 57 | + * Render the view to the page, without any header |
|
| 58 | + */ |
|
| 59 | + public function renderPartial() { |
|
| 60 | + echo $this->getHtmlPartial(); |
|
| 61 | + } |
|
| 62 | 62 | |
| 63 | - /** |
|
| 64 | - * Return the HTML code generated by the view, without any header |
|
| 65 | - */ |
|
| 66 | - public function getHtmlPartial() { |
|
| 67 | - ob_start(); |
|
| 68 | - $html_render = $this->renderContent(); |
|
| 69 | - $html_buffer = ob_get_clean(); |
|
| 63 | + /** |
|
| 64 | + * Return the HTML code generated by the view, without any header |
|
| 65 | + */ |
|
| 66 | + public function getHtmlPartial() { |
|
| 67 | + ob_start(); |
|
| 68 | + $html_render = $this->renderContent(); |
|
| 69 | + $html_buffer = ob_get_clean(); |
|
| 70 | 70 | |
| 71 | - return empty($html_render) ? $html_buffer : $html_render; |
|
| 72 | - } |
|
| 71 | + return empty($html_render) ? $html_buffer : $html_render; |
|
| 72 | + } |
|
| 73 | 73 | |
| 74 | - /** |
|
| 75 | - * Abstract method containing the details of the view. |
|
| 76 | - */ |
|
| 77 | - abstract protected function renderContent(); |
|
| 74 | + /** |
|
| 75 | + * Abstract method containing the details of the view. |
|
| 76 | + */ |
|
| 77 | + abstract protected function renderContent(); |
|
| 78 | 78 | |
| 79 | 79 | } |
| 80 | 80 | |
| 81 | 81 | \ No newline at end of file |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | public function render() { |
| 46 | 46 | global $controller; |
| 47 | 47 | |
| 48 | - if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 48 | + if (!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 49 | 49 | |
| 50 | 50 | $controller = $this->ctrl; |
| 51 | 51 | $this->ctrl->pageHeader(); |
@@ -45,7 +45,9 @@ |
||
| 45 | 45 | public function render() { |
| 46 | 46 | global $controller; |
| 47 | 47 | |
| 48 | - if(!$this->ctrl) throw new \Exception('Controller not initialised'); |
|
| 48 | + if(!$this->ctrl) { |
|
| 49 | + throw new \Exception('Controller not initialised'); |
|
| 50 | + } |
|
| 49 | 51 | |
| 50 | 52 | $controller = $this->ctrl; |
| 51 | 53 | $this->ctrl->pageHeader(); |
@@ -86,9 +86,12 @@ discard block |
||
| 86 | 86 | * @return boolean |
| 87 | 87 | */ |
| 88 | 88 | public function canDisplayIsSourced($access_level = null){ |
| 89 | - if(!$this->gedcomrecord->canShow($access_level)) return false; |
|
| 90 | - if($access_level === null ) |
|
| 91 | - $access_level = \Fisharebest\Webtrees\Auth::accessLevel($this->gedcomrecord->getTree()); |
|
| 89 | + if(!$this->gedcomrecord->canShow($access_level)) { |
|
| 90 | + return false; |
|
| 91 | + } |
|
| 92 | + if($access_level === null ) { |
|
| 93 | + $access_level = \Fisharebest\Webtrees\Auth::accessLevel($this->gedcomrecord->getTree()); |
|
| 94 | + } |
|
| 92 | 95 | |
| 93 | 96 | $global_facts = Globals::getGlobalFacts(); |
| 94 | 97 | if (isset($global_facts['SOUR'])) { |
@@ -108,7 +111,9 @@ discard block |
||
| 108 | 111 | * @return int Level of sources |
| 109 | 112 | */ |
| 110 | 113 | public function isSourced(){ |
| 111 | - if($this->_issourced !== null) return $this->_issourced; |
|
| 114 | + if($this->_issourced !== null) { |
|
| 115 | + return $this->_issourced; |
|
| 116 | + } |
|
| 112 | 117 | $this->_issourced=-1; |
| 113 | 118 | $sourcesfacts = $this->gedcomrecord->getFacts('SOUR'); |
| 114 | 119 | foreach($sourcesfacts as $sourcefact){ |
@@ -127,7 +132,9 @@ discard block |
||
| 127 | 132 | * @return int Level of sources |
| 128 | 133 | */ |
| 129 | 134 | public function isFactSourced($eventslist){ |
| 130 | - if(empty($eventslist)) return 0; |
|
| 135 | + if(empty($eventslist)) { |
|
| 136 | + return 0; |
|
| 137 | + } |
|
| 131 | 138 | $isSourced=0; |
| 132 | 139 | $facts = $this->gedcomrecord->getFacts($eventslist); |
| 133 | 140 | foreach($facts as $fact){ |
@@ -137,8 +144,7 @@ discard block |
||
| 137 | 144 | if($tmpIsSourced != 0) { |
| 138 | 145 | if($isSourced==0) { |
| 139 | 146 | $isSourced = $tmpIsSourced; |
| 140 | - } |
|
| 141 | - else{ |
|
| 147 | + } else{ |
|
| 142 | 148 | $isSourced = max($isSourced, $tmpIsSourced); |
| 143 | 149 | } |
| 144 | 150 | } |
@@ -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){ |
@@ -23,14 +23,14 @@ discard block |
||
| 23 | 23 | protected $gedcomrecord; |
| 24 | 24 | |
| 25 | 25 | /** @var bool Is the GedcomRecord sourced (cache) */ |
| 26 | - protected $_issourced=null; |
|
| 26 | + protected $_issourced = null; |
|
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Contructor for the decorator |
| 30 | 30 | * |
| 31 | 31 | * @param \Fisharebest\Webtrees\GedcomRecord $gedcomrecord_in The GedcomRecord to extend |
| 32 | 32 | */ |
| 33 | - public function __construct(\Fisharebest\Webtrees\GedcomRecord $gedcomrecord_in){ |
|
| 33 | + public function __construct(\Fisharebest\Webtrees\GedcomRecord $gedcomrecord_in) { |
|
| 34 | 34 | $this->gedcomrecord = $gedcomrecord_in; |
| 35 | 35 | } |
| 36 | 36 | |
@@ -39,7 +39,7 @@ discard block |
||
| 39 | 39 | * |
| 40 | 40 | * @return \Fisharebest\Webtrees\GedcomRecord Embedded gedcom record |
| 41 | 41 | */ |
| 42 | - public function getDerivedRecord(){ |
|
| 42 | + public function getDerivedRecord() { |
|
| 43 | 43 | return $this->gedcomrecord; |
| 44 | 44 | } |
| 45 | 45 | |
@@ -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 | } |
@@ -85,9 +85,9 @@ discard block |
||
| 85 | 85 | * @param int $access_level |
| 86 | 86 | * @return boolean |
| 87 | 87 | */ |
| 88 | - public function canDisplayIsSourced($access_level = null){ |
|
| 89 | - if(!$this->gedcomrecord->canShow($access_level)) return false; |
|
| 90 | - if($access_level === null ) |
|
| 88 | + public function canDisplayIsSourced($access_level = null) { |
|
| 89 | + if (!$this->gedcomrecord->canShow($access_level)) return false; |
|
| 90 | + if ($access_level === null) |
|
| 91 | 91 | $access_level = \Fisharebest\Webtrees\Auth::accessLevel($this->gedcomrecord->getTree()); |
| 92 | 92 | |
| 93 | 93 | $global_facts = Globals::getGlobalFacts(); |
@@ -107,14 +107,14 @@ discard block |
||
| 107 | 107 | * |
| 108 | 108 | * @return int Level of sources |
| 109 | 109 | */ |
| 110 | - public function isSourced(){ |
|
| 111 | - if($this->_issourced !== null) return $this->_issourced; |
|
| 112 | - $this->_issourced=-1; |
|
| 110 | + public function isSourced() { |
|
| 111 | + if ($this->_issourced !== null) return $this->_issourced; |
|
| 112 | + $this->_issourced = -1; |
|
| 113 | 113 | $sourcesfacts = $this->gedcomrecord->getFacts('SOUR'); |
| 114 | - foreach($sourcesfacts as $sourcefact){ |
|
| 115 | - $this->_issourced=max($this->_issourced, 1); |
|
| 116 | - if($sourcefact->getAttribute('_ACT')){ |
|
| 117 | - $this->_issourced=max($this->_issourced, 2); |
|
| 114 | + foreach ($sourcesfacts as $sourcefact) { |
|
| 115 | + $this->_issourced = max($this->_issourced, 1); |
|
| 116 | + if ($sourcefact->getAttribute('_ACT')) { |
|
| 117 | + $this->_issourced = max($this->_issourced, 2); |
|
| 118 | 118 | } |
| 119 | 119 | } |
| 120 | 120 | return $this->_issourced; |
@@ -126,19 +126,19 @@ discard block |
||
| 126 | 126 | * @param string $eventslist |
| 127 | 127 | * @return int Level of sources |
| 128 | 128 | */ |
| 129 | - public function isFactSourced($eventslist){ |
|
| 130 | - if(empty($eventslist)) return 0; |
|
| 131 | - $isSourced=0; |
|
| 129 | + public function isFactSourced($eventslist) { |
|
| 130 | + if (empty($eventslist)) return 0; |
|
| 131 | + $isSourced = 0; |
|
| 132 | 132 | $facts = $this->gedcomrecord->getFacts($eventslist); |
| 133 | - foreach($facts as $fact){ |
|
| 134 | - if($isSourced < Fact::MAX_IS_SOURCED_LEVEL){ |
|
| 133 | + foreach ($facts as $fact) { |
|
| 134 | + if ($isSourced < Fact::MAX_IS_SOURCED_LEVEL) { |
|
| 135 | 135 | $dfact = new Fact($fact); |
| 136 | 136 | $tmpIsSourced = $dfact->isSourced(); |
| 137 | - if($tmpIsSourced != 0) { |
|
| 138 | - if($isSourced==0) { |
|
| 139 | - $isSourced = $tmpIsSourced; |
|
| 137 | + if ($tmpIsSourced != 0) { |
|
| 138 | + if ($isSourced == 0) { |
|
| 139 | + $isSourced = $tmpIsSourced; |
|
| 140 | 140 | } |
| 141 | - else{ |
|
| 141 | + else { |
|
| 142 | 142 | $isSourced = max($isSourced, $tmpIsSourced); |
| 143 | 143 | } |
| 144 | 144 | } |
@@ -36,58 +36,58 @@ discard block |
||
| 36 | 36 | */ |
| 37 | 37 | class AdminConfigController extends MvcController |
| 38 | 38 | { |
| 39 | - /** |
|
| 40 | - * GeoAnalysis Provider |
|
| 41 | - * @var GeoAnalysisProvider $provider |
|
| 42 | - */ |
|
| 43 | - protected $provider; |
|
| 39 | + /** |
|
| 40 | + * GeoAnalysis Provider |
|
| 41 | + * @var GeoAnalysisProvider $provider |
|
| 42 | + */ |
|
| 43 | + protected $provider; |
|
| 44 | 44 | |
| 45 | - /** |
|
| 46 | - * Constructor for Admin Config controller |
|
| 47 | - * @param AbstractModule $module |
|
| 48 | - */ |
|
| 49 | - public function __construct(AbstractModule $module) { |
|
| 50 | - parent::__construct($module); |
|
| 45 | + /** |
|
| 46 | + * Constructor for Admin Config controller |
|
| 47 | + * @param AbstractModule $module |
|
| 48 | + */ |
|
| 49 | + public function __construct(AbstractModule $module) { |
|
| 50 | + parent::__construct($module); |
|
| 51 | 51 | |
| 52 | - $this->provider = $this->module->getProvider(); |
|
| 53 | - } |
|
| 52 | + $this->provider = $this->module->getProvider(); |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - /** |
|
| 56 | - * Pages |
|
| 57 | - */ |
|
| 55 | + /** |
|
| 56 | + * Pages |
|
| 57 | + */ |
|
| 58 | 58 | |
| 59 | - /** |
|
| 60 | - * AdminConfig@index |
|
| 61 | - */ |
|
| 62 | - public function index() { |
|
| 63 | - $wt_tree = Globals::getTree(); |
|
| 64 | - Theme::theme(new AdministrationTheme)->init($wt_tree); |
|
| 65 | - $controller = new PageController(); |
|
| 66 | - $controller |
|
| 67 | - ->restrictAccess(Auth::isManager($wt_tree)) |
|
| 68 | - ->setPageTitle($this->module->getTitle()); |
|
| 59 | + /** |
|
| 60 | + * AdminConfig@index |
|
| 61 | + */ |
|
| 62 | + public function index() { |
|
| 63 | + $wt_tree = Globals::getTree(); |
|
| 64 | + Theme::theme(new AdministrationTheme)->init($wt_tree); |
|
| 65 | + $controller = new PageController(); |
|
| 66 | + $controller |
|
| 67 | + ->restrictAccess(Auth::isManager($wt_tree)) |
|
| 68 | + ->setPageTitle($this->module->getTitle()); |
|
| 69 | 69 | |
| 70 | - $data = new ViewBag(); |
|
| 71 | - $data->set('title', $controller->getPageTitle()); |
|
| 72 | - $data->set('tree', $wt_tree); |
|
| 70 | + $data = new ViewBag(); |
|
| 71 | + $data->set('title', $controller->getPageTitle()); |
|
| 72 | + $data->set('tree', $wt_tree); |
|
| 73 | 73 | |
| 74 | - $data->set('root_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig'); |
|
| 74 | + $data->set('root_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig'); |
|
| 75 | 75 | |
| 76 | - $table_id = 'table-geoanalysis-' . Uuid::uuid4(); |
|
| 77 | - $data->set('table_id', $table_id); |
|
| 76 | + $table_id = 'table-geoanalysis-' . Uuid::uuid4(); |
|
| 77 | + $data->set('table_id', $table_id); |
|
| 78 | 78 | |
| 79 | - $other_trees = array(); |
|
| 80 | - foreach (Tree::getAll() as $tree) { |
|
| 81 | - if($tree->getTreeId() != $wt_tree->getTreeId()) $other_trees[] = $tree; |
|
| 82 | - } |
|
| 83 | - $data->set('other_trees', $other_trees); |
|
| 79 | + $other_trees = array(); |
|
| 80 | + foreach (Tree::getAll() as $tree) { |
|
| 81 | + if($tree->getTreeId() != $wt_tree->getTreeId()) $other_trees[] = $tree; |
|
| 82 | + } |
|
| 83 | + $data->set('other_trees', $other_trees); |
|
| 84 | 84 | |
| 85 | - $data->set('places_hierarchy', $this->provider->getPlacesHierarchy()); |
|
| 85 | + $data->set('places_hierarchy', $this->provider->getPlacesHierarchy()); |
|
| 86 | 86 | |
| 87 | - $controller |
|
| 88 | - ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
| 89 | - ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
| 90 | - ->addInlineJavascript(' |
|
| 87 | + $controller |
|
| 88 | + ->addExternalJavascript(WT_JQUERY_DATATABLES_JS_URL) |
|
| 89 | + ->addExternalJavascript(WT_DATATABLES_BOOTSTRAP_JS_URL) |
|
| 90 | + ->addInlineJavascript(' |
|
| 91 | 91 | jQuery.fn.dataTableExt.oSort["text-asc"] = textCompareAsc; |
| 92 | 92 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
| 93 | 93 | |
@@ -119,7 +119,7 @@ discard block |
||
| 119 | 119 | }); |
| 120 | 120 | |
| 121 | 121 | ') |
| 122 | - ->addInlineJavascript(' |
|
| 122 | + ->addInlineJavascript(' |
|
| 123 | 123 | function set_geoanalysis_status(ga_id, status, gedcom) { |
| 124 | 124 | jQuery.ajax({ |
| 125 | 125 | url: "module.php", |
@@ -163,54 +163,54 @@ discard block |
||
| 163 | 163 | '); |
| 164 | 164 | |
| 165 | 165 | |
| 166 | - ViewFactory::make('AdminConfig', $this, $controller, $data)->render(); |
|
| 167 | - } |
|
| 166 | + ViewFactory::make('AdminConfig', $this, $controller, $data)->render(); |
|
| 167 | + } |
|
| 168 | 168 | |
| 169 | - /** |
|
| 170 | - * AdminConfig@jsonGeoAnalysisList |
|
| 171 | - */ |
|
| 172 | - public function jsonGeoAnalysisList() { |
|
| 173 | - $wt_tree = Globals::getTree(); |
|
| 174 | - $controller = new JsonController(); |
|
| 175 | - $controller |
|
| 176 | - ->restrictAccess(Auth::isManager($wt_tree)); |
|
| 169 | + /** |
|
| 170 | + * AdminConfig@jsonGeoAnalysisList |
|
| 171 | + */ |
|
| 172 | + public function jsonGeoAnalysisList() { |
|
| 173 | + $wt_tree = Globals::getTree(); |
|
| 174 | + $controller = new JsonController(); |
|
| 175 | + $controller |
|
| 176 | + ->restrictAccess(Auth::isManager($wt_tree)); |
|
| 177 | 177 | |
| 178 | - // Generate an AJAX/JSON response for datatables to load a block of rows |
|
| 179 | - $search = Filter::postArray('search'); |
|
| 180 | - if($search) $search = $search['value']; |
|
| 181 | - $start = Filter::postInteger('start'); |
|
| 182 | - $length = Filter::postInteger('length'); |
|
| 183 | - $order = Filter::postArray('order'); |
|
| 178 | + // Generate an AJAX/JSON response for datatables to load a block of rows |
|
| 179 | + $search = Filter::postArray('search'); |
|
| 180 | + if($search) $search = $search['value']; |
|
| 181 | + $start = Filter::postInteger('start'); |
|
| 182 | + $length = Filter::postInteger('length'); |
|
| 183 | + $order = Filter::postArray('order'); |
|
| 184 | 184 | |
| 185 | - foreach($order as $key => &$value) { |
|
| 186 | - switch($value['column']) { |
|
| 187 | - case 3: |
|
| 188 | - $value['column'] = 'majgd_descr'; |
|
| 189 | - break; |
|
| 190 | - case 5; |
|
| 191 | - $value['column'] = 'majgd_sublevel'; |
|
| 192 | - break; |
|
| 193 | - default: |
|
| 194 | - unset($order[$key]); |
|
| 195 | - } |
|
| 196 | - } |
|
| 185 | + foreach($order as $key => &$value) { |
|
| 186 | + switch($value['column']) { |
|
| 187 | + case 3: |
|
| 188 | + $value['column'] = 'majgd_descr'; |
|
| 189 | + break; |
|
| 190 | + case 5; |
|
| 191 | + $value['column'] = 'majgd_sublevel'; |
|
| 192 | + break; |
|
| 193 | + default: |
|
| 194 | + unset($order[$key]); |
|
| 195 | + } |
|
| 196 | + } |
|
| 197 | 197 | |
| 198 | - /** @var GeoAnalysisProvider $provider */ |
|
| 199 | - $provider = $this->module->getProvider(); |
|
| 198 | + /** @var GeoAnalysisProvider $provider */ |
|
| 199 | + $provider = $this->module->getProvider(); |
|
| 200 | 200 | |
| 201 | - $list = $provider->getFilteredGeoAnalysisList($search, $order, $start, $length); |
|
| 202 | - $recordsFiltered = count($list); |
|
| 203 | - $recordsTotal = $this->provider->getGeoAnalysisCount(); |
|
| 201 | + $list = $provider->getFilteredGeoAnalysisList($search, $order, $start, $length); |
|
| 202 | + $recordsFiltered = count($list); |
|
| 203 | + $recordsTotal = $this->provider->getGeoAnalysisCount(); |
|
| 204 | 204 | |
| 205 | - $data = array(); |
|
| 206 | - $place_hierarchy = $this->provider->getPlacesHierarchy(); |
|
| 207 | - foreach($list as $ga) { |
|
| 208 | - /** @var GeoAnalysis $ga */ |
|
| 205 | + $data = array(); |
|
| 206 | + $place_hierarchy = $this->provider->getPlacesHierarchy(); |
|
| 207 | + foreach($list as $ga) { |
|
| 208 | + /** @var GeoAnalysis $ga */ |
|
| 209 | 209 | |
| 210 | - $datum = array(); |
|
| 211 | - $options= $ga->getOptions(); |
|
| 210 | + $datum = array(); |
|
| 211 | + $options= $ga->getOptions(); |
|
| 212 | 212 | |
| 213 | - $datum[0] = ' |
|
| 213 | + $datum[0] = ' |
|
| 214 | 214 | <div class="btn-group"> |
| 215 | 215 | <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> |
| 216 | 216 | <i class="fa fa-pencil"></i><span class="caret"></span> |
@@ -234,107 +234,107 @@ discard block |
||
| 234 | 234 | </li> |
| 235 | 235 | </ul> |
| 236 | 236 | </div>'; |
| 237 | - $datum[1] = $ga->getId(); |
|
| 238 | - $datum[2] = $ga->isEnabled() ? |
|
| 237 | + $datum[1] = $ga->getId(); |
|
| 238 | + $datum[2] = $ga->isEnabled() ? |
|
| 239 | 239 | '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Enabled').'</span>' : |
| 240 | 240 | '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('Disabled').'</span>'; |
| 241 | - $datum[3] = $ga->getTitle(); |
|
| 242 | - $analysis_level = $ga->getAnalysisLevel(); |
|
| 243 | - if($place_hierarchy['type'] == 'header') { |
|
| 244 | - $datum[4] = $place_hierarchy['hierarchy'][$analysis_level - 1]; |
|
| 245 | - } else { |
|
| 246 | - $datum[4] = $analysis_level . '(' . $place_hierarchy['hierarchy'][$analysis_level - 1] . ')'; |
|
| 247 | - } |
|
| 248 | - $datum[5] = $ga->getAnalysisLevel(); |
|
| 249 | - $datum[6] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
|
| 250 | - $datum[7] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
|
| 251 | - if($ga->hasMap()) { |
|
| 252 | - $datum[6] = $options->getMap()->getDescription(); |
|
| 253 | - $datum[7] = '<span data-toggle="tooltip" title="' . $options->getMap()->getTopLevelName() . '" />'; |
|
| 254 | - $top_level = $options->getMapLevel(); |
|
| 255 | - if($place_hierarchy['type'] == 'header') { |
|
| 256 | - $datum[7] .= $place_hierarchy['hierarchy'][$top_level - 1]; |
|
| 257 | - } else { |
|
| 258 | - $datum[7] .= $top_level . '(' . $place_hierarchy['hierarchy'][$top_level - 1] . ')'; |
|
| 259 | - } |
|
| 260 | - $datum[7] .= '</span>'; |
|
| 261 | - } |
|
| 262 | - $datum[8] = $options->isUsingFlags() ? |
|
| 241 | + $datum[3] = $ga->getTitle(); |
|
| 242 | + $analysis_level = $ga->getAnalysisLevel(); |
|
| 243 | + if($place_hierarchy['type'] == 'header') { |
|
| 244 | + $datum[4] = $place_hierarchy['hierarchy'][$analysis_level - 1]; |
|
| 245 | + } else { |
|
| 246 | + $datum[4] = $analysis_level . '(' . $place_hierarchy['hierarchy'][$analysis_level - 1] . ')'; |
|
| 247 | + } |
|
| 248 | + $datum[5] = $ga->getAnalysisLevel(); |
|
| 249 | + $datum[6] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
|
| 250 | + $datum[7] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
|
| 251 | + if($ga->hasMap()) { |
|
| 252 | + $datum[6] = $options->getMap()->getDescription(); |
|
| 253 | + $datum[7] = '<span data-toggle="tooltip" title="' . $options->getMap()->getTopLevelName() . '" />'; |
|
| 254 | + $top_level = $options->getMapLevel(); |
|
| 255 | + if($place_hierarchy['type'] == 'header') { |
|
| 256 | + $datum[7] .= $place_hierarchy['hierarchy'][$top_level - 1]; |
|
| 257 | + } else { |
|
| 258 | + $datum[7] .= $top_level . '(' . $place_hierarchy['hierarchy'][$top_level - 1] . ')'; |
|
| 259 | + } |
|
| 260 | + $datum[7] .= '</span>'; |
|
| 261 | + } |
|
| 262 | + $datum[8] = $options->isUsingFlags() ? |
|
| 263 | 263 | '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Yes').'</span>' : |
| 264 | 264 | '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('No').'</span>'; |
| 265 | - $datum[9] = $options->getMaxDetailsInGen() > 0 ? $options->getMaxDetailsInGen() : I18N::translate('All'); |
|
| 265 | + $datum[9] = $options->getMaxDetailsInGen() > 0 ? $options->getMaxDetailsInGen() : I18N::translate('All'); |
|
| 266 | 266 | |
| 267 | - $data[] = $datum; |
|
| 268 | - } |
|
| 267 | + $data[] = $datum; |
|
| 268 | + } |
|
| 269 | 269 | |
| 270 | - $controller->pageHeader(); |
|
| 270 | + $controller->pageHeader(); |
|
| 271 | 271 | |
| 272 | - $controller->encode(array( |
|
| 273 | - 'draw' => Filter::getInteger('draw'), |
|
| 274 | - 'recordsTotal' => $recordsTotal, |
|
| 275 | - 'recordsFiltered' => $recordsFiltered, |
|
| 276 | - 'data' => $data |
|
| 277 | - )); |
|
| 272 | + $controller->encode(array( |
|
| 273 | + 'draw' => Filter::getInteger('draw'), |
|
| 274 | + 'recordsTotal' => $recordsTotal, |
|
| 275 | + 'recordsFiltered' => $recordsFiltered, |
|
| 276 | + 'data' => $data |
|
| 277 | + )); |
|
| 278 | 278 | |
| 279 | - } |
|
| 279 | + } |
|
| 280 | 280 | |
| 281 | - /** |
|
| 282 | - * AdminConfig@edit |
|
| 283 | - */ |
|
| 284 | - public function edit() { |
|
| 285 | - $ga_id = Filter::getInteger('ga_id'); |
|
| 286 | - $ga = $this->provider->getGeoAnalysis($ga_id, false); |
|
| 281 | + /** |
|
| 282 | + * AdminConfig@edit |
|
| 283 | + */ |
|
| 284 | + public function edit() { |
|
| 285 | + $ga_id = Filter::getInteger('ga_id'); |
|
| 286 | + $ga = $this->provider->getGeoAnalysis($ga_id, false); |
|
| 287 | 287 | |
| 288 | - $this->renderEdit($ga); |
|
| 289 | - } |
|
| 288 | + $this->renderEdit($ga); |
|
| 289 | + } |
|
| 290 | 290 | |
| 291 | - /** |
|
| 292 | - * AdminConfig@add |
|
| 293 | - */ |
|
| 294 | - public function add() { |
|
| 295 | - $this->renderEdit(null); |
|
| 296 | - } |
|
| 291 | + /** |
|
| 292 | + * AdminConfig@add |
|
| 293 | + */ |
|
| 294 | + public function add() { |
|
| 295 | + $this->renderEdit(null); |
|
| 296 | + } |
|
| 297 | 297 | |
| 298 | - /** |
|
| 299 | - * AdminConfig@save |
|
| 300 | - */ |
|
| 301 | - public function save() { |
|
| 302 | - $wt_tree = Globals::getTree(); |
|
| 303 | - $tmp_contrl = new PageController(); |
|
| 304 | - $tmp_contrl->restrictAccess( |
|
| 305 | - Auth::isManager($wt_tree) |
|
| 306 | - && Filter::checkCsrf() |
|
| 307 | - ); |
|
| 298 | + /** |
|
| 299 | + * AdminConfig@save |
|
| 300 | + */ |
|
| 301 | + public function save() { |
|
| 302 | + $wt_tree = Globals::getTree(); |
|
| 303 | + $tmp_contrl = new PageController(); |
|
| 304 | + $tmp_contrl->restrictAccess( |
|
| 305 | + Auth::isManager($wt_tree) |
|
| 306 | + && Filter::checkCsrf() |
|
| 307 | + ); |
|
| 308 | 308 | |
| 309 | - $ga_id = Filter::postInteger('ga_id'); |
|
| 310 | - $description = Filter::post('description'); |
|
| 311 | - $analysislevel = Filter::postInteger('analysislevel'); |
|
| 312 | - $use_map = Filter::postBool('use_map'); |
|
| 313 | - if($use_map) { |
|
| 314 | - $map_file = base64_decode(Filter::post('map_file')); |
|
| 315 | - $map_top_level = Filter::postInteger('map_top_level'); |
|
| 316 | - } |
|
| 317 | - $use_flags = Filter::postBool('use_flags'); |
|
| 318 | - $gen_details = Filter::postInteger('gen_details'); |
|
| 309 | + $ga_id = Filter::postInteger('ga_id'); |
|
| 310 | + $description = Filter::post('description'); |
|
| 311 | + $analysislevel = Filter::postInteger('analysislevel'); |
|
| 312 | + $use_map = Filter::postBool('use_map'); |
|
| 313 | + if($use_map) { |
|
| 314 | + $map_file = base64_decode(Filter::post('map_file')); |
|
| 315 | + $map_top_level = Filter::postInteger('map_top_level'); |
|
| 316 | + } |
|
| 317 | + $use_flags = Filter::postBool('use_flags'); |
|
| 318 | + $gen_details = Filter::postInteger('gen_details'); |
|
| 319 | 319 | |
| 320 | - $success = false; |
|
| 321 | - if($ga_id) { |
|
| 322 | - $ga = $this->provider->getGeoAnalysis($ga_id, false); |
|
| 323 | - if($ga) { |
|
| 324 | - $ga->setTitle($description); |
|
| 325 | - $ga->setAnalysisLevel($analysislevel + 1); |
|
| 326 | - $options = $ga->getOptions(); |
|
| 327 | - if($options) { |
|
| 328 | - $options->setUsingFlags($use_flags); |
|
| 329 | - $options->setMaxDetailsInGen($gen_details); |
|
| 330 | - if($use_map) { |
|
| 331 | - $options->setMap(new OutlineMap($map_file)); |
|
| 332 | - $options->setMapLevel($map_top_level + 1); |
|
| 333 | - } |
|
| 334 | - else { |
|
| 335 | - $options->setMap(null); |
|
| 336 | - } |
|
| 337 | - } |
|
| 320 | + $success = false; |
|
| 321 | + if($ga_id) { |
|
| 322 | + $ga = $this->provider->getGeoAnalysis($ga_id, false); |
|
| 323 | + if($ga) { |
|
| 324 | + $ga->setTitle($description); |
|
| 325 | + $ga->setAnalysisLevel($analysislevel + 1); |
|
| 326 | + $options = $ga->getOptions(); |
|
| 327 | + if($options) { |
|
| 328 | + $options->setUsingFlags($use_flags); |
|
| 329 | + $options->setMaxDetailsInGen($gen_details); |
|
| 330 | + if($use_map) { |
|
| 331 | + $options->setMap(new OutlineMap($map_file)); |
|
| 332 | + $options->setMapLevel($map_top_level + 1); |
|
| 333 | + } |
|
| 334 | + else { |
|
| 335 | + $options->setMap(null); |
|
| 336 | + } |
|
| 337 | + } |
|
| 338 | 338 | |
| 339 | 339 | $res = $this->provider->updateGeoAnalysis($ga); |
| 340 | 340 | if($res) { |
@@ -347,8 +347,8 @@ discard block |
||
| 347 | 347 | FlashMessages::addMessage(I18N::translate('An error occured while updating the geographical dispersion analysis “%s”', $ga->getTitle()), 'danger'); |
| 348 | 348 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'. $ga->getId() .'” could not be updated. See error log.'); |
| 349 | 349 | } |
| 350 | - } |
|
| 351 | - } else { |
|
| 350 | + } |
|
| 351 | + } else { |
|
| 352 | 352 | $ga = $this->provider->createGeoAnalysis( |
| 353 | 353 | $description, |
| 354 | 354 | $analysislevel + 1, |
@@ -366,33 +366,33 @@ discard block |
||
| 366 | 366 | FlashMessages::addMessage(I18N::translate('An error occured while adding the geographical dispersion analysis “%s”', $description), 'danger'); |
| 367 | 367 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis “'.$description.'” could not be added. See error log.'); |
| 368 | 368 | } |
| 369 | - } |
|
| 369 | + } |
|
| 370 | 370 | |
| 371 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl(); |
|
| 372 | - if(!$success) { |
|
| 373 | - if($ga) { |
|
| 374 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@edit&ga_id='. $ga->getId() .'&ged=' . $wt_tree->getNameUrl(); |
|
| 375 | - } |
|
| 376 | - else { |
|
| 377 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@add&ged=' . $wt_tree->getNameUrl(); |
|
| 378 | - } |
|
| 379 | - } |
|
| 380 | - header('Location: ' . WT_BASE_URL . $redirection_url); |
|
| 371 | + $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl(); |
|
| 372 | + if(!$success) { |
|
| 373 | + if($ga) { |
|
| 374 | + $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@edit&ga_id='. $ga->getId() .'&ged=' . $wt_tree->getNameUrl(); |
|
| 375 | + } |
|
| 376 | + else { |
|
| 377 | + $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@add&ged=' . $wt_tree->getNameUrl(); |
|
| 378 | + } |
|
| 379 | + } |
|
| 380 | + header('Location: ' . WT_BASE_URL . $redirection_url); |
|
| 381 | 381 | |
| 382 | - } |
|
| 382 | + } |
|
| 383 | 383 | |
| 384 | 384 | /** |
| 385 | 385 | * Renders the edit form, whether it is an edition of an existing GeoAnalysis, or the addition of a new one. |
| 386 | 386 | * |
| 387 | 387 | * @param (GeoAnalysis!null) $ga GeoAnalysis to edit |
| 388 | 388 | */ |
| 389 | - protected function renderEdit(GeoAnalysis $ga = null) { |
|
| 390 | - $wt_tree = Globals::getTree(); |
|
| 391 | - Theme::theme(new AdministrationTheme)->init($wt_tree); |
|
| 392 | - $controller = new PageController(); |
|
| 393 | - $controller |
|
| 394 | - ->restrictAccess(Auth::isManager($wt_tree)) |
|
| 395 | - ->addInlineJavascript(' |
|
| 389 | + protected function renderEdit(GeoAnalysis $ga = null) { |
|
| 390 | + $wt_tree = Globals::getTree(); |
|
| 391 | + Theme::theme(new AdministrationTheme)->init($wt_tree); |
|
| 392 | + $controller = new PageController(); |
|
| 393 | + $controller |
|
| 394 | + ->restrictAccess(Auth::isManager($wt_tree)) |
|
| 395 | + ->addInlineJavascript(' |
|
| 396 | 396 | function toggleMapOptions() { |
| 397 | 397 | if($("input:radio[name=\'use_map\']:checked").val() == 1) { |
| 398 | 398 | $("#map_options").show(); |
@@ -406,34 +406,34 @@ discard block |
||
| 406 | 406 | toggleMapOptions(); |
| 407 | 407 | '); |
| 408 | 408 | |
| 409 | - $data = new ViewBag(); |
|
| 410 | - if($ga) { |
|
| 411 | - $controller->setPageTitle(I18N::translate('Edit the geographical dispersion analysis')); |
|
| 412 | - $data->set('geo_analysis', $ga); |
|
| 413 | - } else { |
|
| 414 | - $controller->setPageTitle(I18N::translate('Add a geographical dispersion analysis')); |
|
| 415 | - } |
|
| 409 | + $data = new ViewBag(); |
|
| 410 | + if($ga) { |
|
| 411 | + $controller->setPageTitle(I18N::translate('Edit the geographical dispersion analysis')); |
|
| 412 | + $data->set('geo_analysis', $ga); |
|
| 413 | + } else { |
|
| 414 | + $controller->setPageTitle(I18N::translate('Add a geographical dispersion analysis')); |
|
| 415 | + } |
|
| 416 | 416 | |
| 417 | - $data->set('title', $controller->getPageTitle()); |
|
| 418 | - $data->set('admin_config_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl()); |
|
| 419 | - $data->set('module_title', $this->module->getTitle()); |
|
| 420 | - $data->set('save_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@save&ged=' . $wt_tree->getNameUrl()); |
|
| 421 | - $data->set('places_hierarchy', $this->provider->getPlacesHierarchy()); |
|
| 417 | + $data->set('title', $controller->getPageTitle()); |
|
| 418 | + $data->set('admin_config_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl()); |
|
| 419 | + $data->set('module_title', $this->module->getTitle()); |
|
| 420 | + $data->set('save_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@save&ged=' . $wt_tree->getNameUrl()); |
|
| 421 | + $data->set('places_hierarchy', $this->provider->getPlacesHierarchy()); |
|
| 422 | 422 | |
| 423 | - $map_list = array_map( |
|
| 424 | - function(OutlineMap $map) { |
|
| 425 | - return $map->getDescription(); |
|
| 426 | - }, |
|
| 427 | - $this->provider->getOutlineMapsList() |
|
| 428 | - ); |
|
| 429 | - asort($map_list); |
|
| 430 | - $data->set('map_list', $map_list); |
|
| 423 | + $map_list = array_map( |
|
| 424 | + function(OutlineMap $map) { |
|
| 425 | + return $map->getDescription(); |
|
| 426 | + }, |
|
| 427 | + $this->provider->getOutlineMapsList() |
|
| 428 | + ); |
|
| 429 | + asort($map_list); |
|
| 430 | + $data->set('map_list', $map_list); |
|
| 431 | 431 | |
| 432 | - $gen_details = array(0 => I18N::translate('All')); |
|
| 433 | - for($i = 1; $i <= 10 ; $i++) $gen_details[$i] = $i; |
|
| 434 | - $data->set('generation_details', $gen_details); |
|
| 432 | + $gen_details = array(0 => I18N::translate('All')); |
|
| 433 | + for($i = 1; $i <= 10 ; $i++) $gen_details[$i] = $i; |
|
| 434 | + $data->set('generation_details', $gen_details); |
|
| 435 | 435 | |
| 436 | - ViewFactory::make('GeoAnalysisEdit', $this, $controller, $data)->render(); |
|
| 437 | - } |
|
| 436 | + ViewFactory::make('GeoAnalysisEdit', $this, $controller, $data)->render(); |
|
| 437 | + } |
|
| 438 | 438 | |
| 439 | 439 | } |
| 440 | 440 | \ No newline at end of file |
@@ -71,14 +71,14 @@ discard block |
||
| 71 | 71 | $data->set('title', $controller->getPageTitle()); |
| 72 | 72 | $data->set('tree', $wt_tree); |
| 73 | 73 | |
| 74 | - $data->set('root_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig'); |
|
| 74 | + $data->set('root_url', 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig'); |
|
| 75 | 75 | |
| 76 | - $table_id = 'table-geoanalysis-' . Uuid::uuid4(); |
|
| 76 | + $table_id = 'table-geoanalysis-'.Uuid::uuid4(); |
|
| 77 | 77 | $data->set('table_id', $table_id); |
| 78 | 78 | |
| 79 | 79 | $other_trees = array(); |
| 80 | 80 | foreach (Tree::getAll() as $tree) { |
| 81 | - if($tree->getTreeId() != $wt_tree->getTreeId()) $other_trees[] = $tree; |
|
| 81 | + if ($tree->getTreeId() != $wt_tree->getTreeId()) $other_trees[] = $tree; |
|
| 82 | 82 | } |
| 83 | 83 | $data->set('other_trees', $other_trees); |
| 84 | 84 | |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | processing: true, |
| 102 | 102 | serverSide : true, |
| 103 | 103 | ajax : { |
| 104 | - url : "module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@jsonGeoAnalysisList&ged='. $wt_tree->getNameUrl().'", |
|
| 104 | + url : "module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@jsonGeoAnalysisList&ged='.$wt_tree->getNameUrl().'", |
|
| 105 | 105 | type : "POST" |
| 106 | 106 | }, |
| 107 | 107 | columns: [ |
@@ -125,7 +125,7 @@ discard block |
||
| 125 | 125 | url: "module.php", |
| 126 | 126 | type: "GET", |
| 127 | 127 | data: { |
| 128 | - mod: "' . $this->module->getName() .'", |
|
| 128 | + mod: "' . $this->module->getName().'", |
|
| 129 | 129 | mod_action: "GeoAnalysis@setStatus", |
| 130 | 130 | ga_id: ga_id, |
| 131 | 131 | ged: typeof gedcom === "undefined" ? WT_GEDCOM : gedcom, |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | }, |
| 134 | 134 | error: function(result, stat, error) { |
| 135 | 135 | var err = typeof result.responseJSON === "undefined" ? error : result.responseJSON.error; |
| 136 | - alert("' . I18N::translate('An error occured while editing this analysis:') . '" + err); |
|
| 136 | + alert("' . I18N::translate('An error occured while editing this analysis:').'" + err); |
|
| 137 | 137 | }, |
| 138 | 138 | complete: function(result, stat) { |
| 139 | 139 | geoAnalysisTable.ajax.reload(null, false); |
@@ -146,14 +146,14 @@ discard block |
||
| 146 | 146 | url: "module.php", |
| 147 | 147 | type: "GET", |
| 148 | 148 | data: { |
| 149 | - mod: "' . $this->module->getName() .'", |
|
| 149 | + mod: "' . $this->module->getName().'", |
|
| 150 | 150 | mod_action: "GeoAnalysis@delete", |
| 151 | 151 | ga_id: ga_id, |
| 152 | 152 | ged: typeof gedcom === "undefined" ? WT_GEDCOM : gedcom |
| 153 | 153 | }, |
| 154 | 154 | error: function(result, stat, error) { |
| 155 | 155 | var err = typeof result.responseJSON === "undefined" ? error : result.responseJSON.error; |
| 156 | - alert("' . I18N::translate('An error occured while deleting this analysis:') . '" + err); |
|
| 156 | + alert("' . I18N::translate('An error occured while deleting this analysis:').'" + err); |
|
| 157 | 157 | }, |
| 158 | 158 | complete: function(result, stat) { |
| 159 | 159 | geoAnalysisTable.ajax.reload(null, false); |
@@ -177,13 +177,13 @@ discard block |
||
| 177 | 177 | |
| 178 | 178 | // Generate an AJAX/JSON response for datatables to load a block of rows |
| 179 | 179 | $search = Filter::postArray('search'); |
| 180 | - if($search) $search = $search['value']; |
|
| 180 | + if ($search) $search = $search['value']; |
|
| 181 | 181 | $start = Filter::postInteger('start'); |
| 182 | 182 | $length = Filter::postInteger('length'); |
| 183 | 183 | $order = Filter::postArray('order'); |
| 184 | 184 | |
| 185 | - foreach($order as $key => &$value) { |
|
| 186 | - switch($value['column']) { |
|
| 185 | + foreach ($order as $key => &$value) { |
|
| 186 | + switch ($value['column']) { |
|
| 187 | 187 | case 3: |
| 188 | 188 | $value['column'] = 'majgd_descr'; |
| 189 | 189 | break; |
@@ -204,11 +204,11 @@ discard block |
||
| 204 | 204 | |
| 205 | 205 | $data = array(); |
| 206 | 206 | $place_hierarchy = $this->provider->getPlacesHierarchy(); |
| 207 | - foreach($list as $ga) { |
|
| 207 | + foreach ($list as $ga) { |
|
| 208 | 208 | /** @var GeoAnalysis $ga */ |
| 209 | 209 | |
| 210 | 210 | $datum = array(); |
| 211 | - $options= $ga->getOptions(); |
|
| 211 | + $options = $ga->getOptions(); |
|
| 212 | 212 | |
| 213 | 213 | $datum[0] = ' |
| 214 | 214 | <div class="btn-group"> |
@@ -218,50 +218,48 @@ discard block |
||
| 218 | 218 | <ul class="dropdown-menu" role="menu"> |
| 219 | 219 | <li> |
| 220 | 220 | <a href="#" onclick="return set_geoanalysis_status('. $ga->getId().', '.($ga->isEnabled() ? 'false' : 'true').', \''.Filter::escapeJs($wt_tree->getName()).'\');"> |
| 221 | - <i class="fa fa-fw '.($ga->isEnabled() ? 'fa-times' : 'fa-check').'"></i> ' . ($ga->isEnabled() ? I18N::translate('Disable') : I18N::translate('Enable')) . ' |
|
| 221 | + <i class="fa fa-fw '.($ga->isEnabled() ? 'fa-times' : 'fa-check').'"></i> '.($ga->isEnabled() ? I18N::translate('Disable') : I18N::translate('Enable')).' |
|
| 222 | 222 | </a> |
| 223 | 223 | </li> |
| 224 | 224 | <li> |
| 225 | 225 | <a href="module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@edit&ga_id='.$ga->getId().'&ged='.$wt_tree->getName().'"> |
| 226 | - <i class="fa fa-fw fa-pencil"></i> ' . I18N::translate('Edit') . ' |
|
| 226 | + <i class="fa fa-fw fa-pencil"></i> ' . I18N::translate('Edit').' |
|
| 227 | 227 | </a> |
| 228 | 228 | </li> |
| 229 | 229 | <li class="divider" /> |
| 230 | 230 | <li> |
| 231 | 231 | <a href="#" onclick="return delete_geoanalysis('. $ga->getId().', \''.Filter::escapeJs($wt_tree->getName()).'\');"> |
| 232 | - <i class="fa fa-fw fa-trash-o"></i> ' . I18N::translate('Delete') . ' |
|
| 232 | + <i class="fa fa-fw fa-trash-o"></i> ' . I18N::translate('Delete').' |
|
| 233 | 233 | </a> |
| 234 | 234 | </li> |
| 235 | 235 | </ul> |
| 236 | 236 | </div>'; |
| 237 | 237 | $datum[1] = $ga->getId(); |
| 238 | 238 | $datum[2] = $ga->isEnabled() ? |
| 239 | - '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Enabled').'</span>' : |
|
| 240 | - '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('Disabled').'</span>'; |
|
| 239 | + '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Enabled').'</span>' : '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('Disabled').'</span>'; |
|
| 241 | 240 | $datum[3] = $ga->getTitle(); |
| 242 | 241 | $analysis_level = $ga->getAnalysisLevel(); |
| 243 | - if($place_hierarchy['type'] == 'header') { |
|
| 242 | + if ($place_hierarchy['type'] == 'header') { |
|
| 244 | 243 | $datum[4] = $place_hierarchy['hierarchy'][$analysis_level - 1]; |
| 245 | 244 | } else { |
| 246 | - $datum[4] = $analysis_level . '(' . $place_hierarchy['hierarchy'][$analysis_level - 1] . ')'; |
|
| 245 | + $datum[4] = $analysis_level.'('.$place_hierarchy['hierarchy'][$analysis_level - 1].')'; |
|
| 247 | 246 | } |
| 248 | 247 | $datum[5] = $ga->getAnalysisLevel(); |
| 249 | 248 | $datum[6] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
| 250 | 249 | $datum[7] = '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('None').'</span>'; |
| 251 | - if($ga->hasMap()) { |
|
| 250 | + if ($ga->hasMap()) { |
|
| 252 | 251 | $datum[6] = $options->getMap()->getDescription(); |
| 253 | - $datum[7] = '<span data-toggle="tooltip" title="' . $options->getMap()->getTopLevelName() . '" />'; |
|
| 252 | + $datum[7] = '<span data-toggle="tooltip" title="'.$options->getMap()->getTopLevelName().'" />'; |
|
| 254 | 253 | $top_level = $options->getMapLevel(); |
| 255 | - if($place_hierarchy['type'] == 'header') { |
|
| 254 | + if ($place_hierarchy['type'] == 'header') { |
|
| 256 | 255 | $datum[7] .= $place_hierarchy['hierarchy'][$top_level - 1]; |
| 257 | 256 | } else { |
| 258 | - $datum[7] .= $top_level . '(' . $place_hierarchy['hierarchy'][$top_level - 1] . ')'; |
|
| 257 | + $datum[7] .= $top_level.'('.$place_hierarchy['hierarchy'][$top_level - 1].')'; |
|
| 259 | 258 | } |
| 260 | 259 | $datum[7] .= '</span>'; |
| 261 | 260 | } |
| 262 | 261 | $datum[8] = $options->isUsingFlags() ? |
| 263 | - '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Yes').'</span>' : |
|
| 264 | - '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('No').'</span>'; |
|
| 262 | + '<i class="fa fa-check"></i><span class="sr-only">'.I18N::translate('Yes').'</span>' : '<i class="fa fa-times"></i><span class="sr-only">'.I18N::translate('No').'</span>'; |
|
| 265 | 263 | $datum[9] = $options->getMaxDetailsInGen() > 0 ? $options->getMaxDetailsInGen() : I18N::translate('All'); |
| 266 | 264 | |
| 267 | 265 | $data[] = $datum; |
@@ -310,24 +308,24 @@ discard block |
||
| 310 | 308 | $description = Filter::post('description'); |
| 311 | 309 | $analysislevel = Filter::postInteger('analysislevel'); |
| 312 | 310 | $use_map = Filter::postBool('use_map'); |
| 313 | - if($use_map) { |
|
| 311 | + if ($use_map) { |
|
| 314 | 312 | $map_file = base64_decode(Filter::post('map_file')); |
| 315 | - $map_top_level = Filter::postInteger('map_top_level'); |
|
| 313 | + $map_top_level = Filter::postInteger('map_top_level'); |
|
| 316 | 314 | } |
| 317 | 315 | $use_flags = Filter::postBool('use_flags'); |
| 318 | 316 | $gen_details = Filter::postInteger('gen_details'); |
| 319 | 317 | |
| 320 | 318 | $success = false; |
| 321 | - if($ga_id) { |
|
| 319 | + if ($ga_id) { |
|
| 322 | 320 | $ga = $this->provider->getGeoAnalysis($ga_id, false); |
| 323 | - if($ga) { |
|
| 321 | + if ($ga) { |
|
| 324 | 322 | $ga->setTitle($description); |
| 325 | 323 | $ga->setAnalysisLevel($analysislevel + 1); |
| 326 | 324 | $options = $ga->getOptions(); |
| 327 | - if($options) { |
|
| 325 | + if ($options) { |
|
| 328 | 326 | $options->setUsingFlags($use_flags); |
| 329 | 327 | $options->setMaxDetailsInGen($gen_details); |
| 330 | - if($use_map) { |
|
| 328 | + if ($use_map) { |
|
| 331 | 329 | $options->setMap(new OutlineMap($map_file)); |
| 332 | 330 | $options->setMapLevel($map_top_level + 1); |
| 333 | 331 | } |
@@ -337,7 +335,7 @@ discard block |
||
| 337 | 335 | } |
| 338 | 336 | |
| 339 | 337 | $res = $this->provider->updateGeoAnalysis($ga); |
| 340 | - if($res) { |
|
| 338 | + if ($res) { |
|
| 341 | 339 | FlashMessages::addMessage(I18N::translate('The geographical dispersion analysis “%s” has been successfully updated', $res->getTitle()), 'success'); |
| 342 | 340 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'.$res->getId().'” has been updated.'); |
| 343 | 341 | $ga = $res; |
@@ -345,7 +343,7 @@ discard block |
||
| 345 | 343 | } |
| 346 | 344 | else { |
| 347 | 345 | FlashMessages::addMessage(I18N::translate('An error occured while updating the geographical dispersion analysis “%s”', $ga->getTitle()), 'danger'); |
| 348 | - Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'. $ga->getId() .'” could not be updated. See error log.'); |
|
| 346 | + Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'.$ga->getId().'” could not be updated. See error log.'); |
|
| 349 | 347 | } |
| 350 | 348 | } |
| 351 | 349 | } else { |
@@ -357,7 +355,7 @@ discard block |
||
| 357 | 355 | $use_flags, |
| 358 | 356 | $gen_details |
| 359 | 357 | ); |
| 360 | - if($ga) { |
|
| 358 | + if ($ga) { |
|
| 361 | 359 | FlashMessages::addMessage(I18N::translate('The geographical dispersion analysis “%s” has been successfully added.', $ga->getTitle()), 'success'); |
| 362 | 360 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'.$ga->getId().'” has been added.'); |
| 363 | 361 | $success = true; |
@@ -368,16 +366,16 @@ discard block |
||
| 368 | 366 | } |
| 369 | 367 | } |
| 370 | 368 | |
| 371 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl(); |
|
| 372 | - if(!$success) { |
|
| 373 | - if($ga) { |
|
| 374 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@edit&ga_id='. $ga->getId() .'&ged=' . $wt_tree->getNameUrl(); |
|
| 369 | + $redirection_url = 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig&ged='.$wt_tree->getNameUrl(); |
|
| 370 | + if (!$success) { |
|
| 371 | + if ($ga) { |
|
| 372 | + $redirection_url = 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@edit&ga_id='.$ga->getId().'&ged='.$wt_tree->getNameUrl(); |
|
| 375 | 373 | } |
| 376 | 374 | else { |
| 377 | - $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@add&ged=' . $wt_tree->getNameUrl(); |
|
| 375 | + $redirection_url = 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@add&ged='.$wt_tree->getNameUrl(); |
|
| 378 | 376 | } |
| 379 | 377 | } |
| 380 | - header('Location: ' . WT_BASE_URL . $redirection_url); |
|
| 378 | + header('Location: '.WT_BASE_URL.$redirection_url); |
|
| 381 | 379 | |
| 382 | 380 | } |
| 383 | 381 | |
@@ -407,7 +405,7 @@ discard block |
||
| 407 | 405 | '); |
| 408 | 406 | |
| 409 | 407 | $data = new ViewBag(); |
| 410 | - if($ga) { |
|
| 408 | + if ($ga) { |
|
| 411 | 409 | $controller->setPageTitle(I18N::translate('Edit the geographical dispersion analysis')); |
| 412 | 410 | $data->set('geo_analysis', $ga); |
| 413 | 411 | } else { |
@@ -415,9 +413,9 @@ discard block |
||
| 415 | 413 | } |
| 416 | 414 | |
| 417 | 415 | $data->set('title', $controller->getPageTitle()); |
| 418 | - $data->set('admin_config_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig&ged=' . $wt_tree->getNameUrl()); |
|
| 416 | + $data->set('admin_config_url', 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig&ged='.$wt_tree->getNameUrl()); |
|
| 419 | 417 | $data->set('module_title', $this->module->getTitle()); |
| 420 | - $data->set('save_url', 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@save&ged=' . $wt_tree->getNameUrl()); |
|
| 418 | + $data->set('save_url', 'module.php?mod='.$this->module->getName().'&mod_action=AdminConfig@save&ged='.$wt_tree->getNameUrl()); |
|
| 421 | 419 | $data->set('places_hierarchy', $this->provider->getPlacesHierarchy()); |
| 422 | 420 | |
| 423 | 421 | $map_list = array_map( |
@@ -430,7 +428,7 @@ discard block |
||
| 430 | 428 | $data->set('map_list', $map_list); |
| 431 | 429 | |
| 432 | 430 | $gen_details = array(0 => I18N::translate('All')); |
| 433 | - for($i = 1; $i <= 10 ; $i++) $gen_details[$i] = $i; |
|
| 431 | + for ($i = 1; $i <= 10; $i++) $gen_details[$i] = $i; |
|
| 434 | 432 | $data->set('generation_details', $gen_details); |
| 435 | 433 | |
| 436 | 434 | ViewFactory::make('GeoAnalysisEdit', $this, $controller, $data)->render(); |
@@ -78,7 +78,9 @@ discard block |
||
| 78 | 78 | |
| 79 | 79 | $other_trees = array(); |
| 80 | 80 | foreach (Tree::getAll() as $tree) { |
| 81 | - if($tree->getTreeId() != $wt_tree->getTreeId()) $other_trees[] = $tree; |
|
| 81 | + if($tree->getTreeId() != $wt_tree->getTreeId()) { |
|
| 82 | + $other_trees[] = $tree; |
|
| 83 | + } |
|
| 82 | 84 | } |
| 83 | 85 | $data->set('other_trees', $other_trees); |
| 84 | 86 | |
@@ -177,7 +179,9 @@ discard block |
||
| 177 | 179 | |
| 178 | 180 | // Generate an AJAX/JSON response for datatables to load a block of rows |
| 179 | 181 | $search = Filter::postArray('search'); |
| 180 | - if($search) $search = $search['value']; |
|
| 182 | + if($search) { |
|
| 183 | + $search = $search['value']; |
|
| 184 | + } |
|
| 181 | 185 | $start = Filter::postInteger('start'); |
| 182 | 186 | $length = Filter::postInteger('length'); |
| 183 | 187 | $order = Filter::postArray('order'); |
@@ -330,8 +334,7 @@ discard block |
||
| 330 | 334 | if($use_map) { |
| 331 | 335 | $options->setMap(new OutlineMap($map_file)); |
| 332 | 336 | $options->setMapLevel($map_top_level + 1); |
| 333 | - } |
|
| 334 | - else { |
|
| 337 | + } else { |
|
| 335 | 338 | $options->setMap(null); |
| 336 | 339 | } |
| 337 | 340 | } |
@@ -342,8 +345,7 @@ discard block |
||
| 342 | 345 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'.$res->getId().'” has been updated.'); |
| 343 | 346 | $ga = $res; |
| 344 | 347 | $success = true; |
| 345 | - } |
|
| 346 | - else { |
|
| 348 | + } else { |
|
| 347 | 349 | FlashMessages::addMessage(I18N::translate('An error occured while updating the geographical dispersion analysis “%s”', $ga->getTitle()), 'danger'); |
| 348 | 350 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'. $ga->getId() .'” could not be updated. See error log.'); |
| 349 | 351 | } |
@@ -361,8 +363,7 @@ discard block |
||
| 361 | 363 | FlashMessages::addMessage(I18N::translate('The geographical dispersion analysis “%s” has been successfully added.', $ga->getTitle()), 'success'); |
| 362 | 364 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis ID “'.$ga->getId().'” has been added.'); |
| 363 | 365 | $success = true; |
| 364 | - } |
|
| 365 | - else { |
|
| 366 | + } else { |
|
| 366 | 367 | FlashMessages::addMessage(I18N::translate('An error occured while adding the geographical dispersion analysis “%s”', $description), 'danger'); |
| 367 | 368 | Log::addConfigurationLog('Module '.$this->module->getName().' : Geo Analysis “'.$description.'” could not be added. See error log.'); |
| 368 | 369 | } |
@@ -372,8 +373,7 @@ discard block |
||
| 372 | 373 | if(!$success) { |
| 373 | 374 | if($ga) { |
| 374 | 375 | $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@edit&ga_id='. $ga->getId() .'&ged=' . $wt_tree->getNameUrl(); |
| 375 | - } |
|
| 376 | - else { |
|
| 376 | + } else { |
|
| 377 | 377 | $redirection_url = 'module.php?mod=' . $this->module->getName() . '&mod_action=AdminConfig@add&ged=' . $wt_tree->getNameUrl(); |
| 378 | 378 | } |
| 379 | 379 | } |
@@ -430,7 +430,9 @@ discard block |
||
| 430 | 430 | $data->set('map_list', $map_list); |
| 431 | 431 | |
| 432 | 432 | $gen_details = array(0 => I18N::translate('All')); |
| 433 | - for($i = 1; $i <= 10 ; $i++) $gen_details[$i] = $i; |
|
| 433 | + for($i = 1; $i <= 10 ; $i++) { |
|
| 434 | + $gen_details[$i] = $i; |
|
| 435 | + } |
|
| 434 | 436 | $data->set('generation_details', $gen_details); |
| 435 | 437 | |
| 436 | 438 | ViewFactory::make('GeoAnalysisEdit', $this, $controller, $data)->render(); |
@@ -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 |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $cid = Filter::get('cid'); |
| 70 | 70 | |
| 71 | 71 | $certificate = null; |
| 72 | - if(!empty($cid) && strlen($cid) > 22){ |
|
| 72 | + if (!empty($cid) && strlen($cid) > 22) { |
|
| 73 | 73 | $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
| 74 | 74 | } |
| 75 | 75 | |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | $data->set('title', $controller->getPageTitle()); |
| 78 | 78 | |
| 79 | 79 | $data->set('has_certif', false); |
| 80 | - if($certificate) { |
|
| 80 | + if ($certificate) { |
|
| 81 | 81 | $controller->restrictAccess($certificate->canShow()); |
| 82 | 82 | $data->set('title', $certificate->getTitle()); |
| 83 | 83 | $data->set('has_certif', true); |
@@ -85,10 +85,10 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | $data->set( |
| 87 | 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()) |
|
| 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 | 92 | ); |
| 93 | 93 | |
| 94 | 94 | $controller->addInlineJavascript(' |
@@ -102,12 +102,12 @@ discard block |
||
| 102 | 102 | $linked_indis = $certificate->linkedIndividuals(); |
| 103 | 103 | $linked_fams = $certificate->linkedFamilies(); |
| 104 | 104 | |
| 105 | - if($linked_indis && count($linked_indis) > 0) { |
|
| 105 | + if ($linked_indis && count($linked_indis) > 0) { |
|
| 106 | 106 | $data->set('has_linked_indis', true); |
| 107 | 107 | $data->set('linked_indis', $linked_indis); |
| 108 | 108 | } |
| 109 | 109 | |
| 110 | - if(!empty($linked_fams)) { |
|
| 110 | + if (!empty($linked_fams)) { |
|
| 111 | 111 | $data->set('has_linked_fams', true); |
| 112 | 112 | $data->set('linked_fams', $linked_fams); |
| 113 | 113 | } |
@@ -121,9 +121,9 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | public function image() { |
| 123 | 123 | $tree = Globals::getTree(); |
| 124 | - $cid = Filter::get('cid'); |
|
| 124 | + $cid = Filter::get('cid'); |
|
| 125 | 125 | $certificate = null; |
| 126 | - if(!empty($cid)) $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
| 126 | + if (!empty($cid)) $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
| 127 | 127 | |
| 128 | 128 | $imageBuilder = new ImageBuilder($certificate); |
| 129 | 129 | |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | |
| 156 | 156 | $city = Filter::get('city'); |
| 157 | 157 | |
| 158 | - if(!empty($city) && strlen($city) > 22){ |
|
| 158 | + if (!empty($city) && strlen($city) > 22) { |
|
| 159 | 159 | $city = Functions::decryptFromSafeBase64($city); |
| 160 | 160 | $controller->setPageTitle(I18N::translate('Certificates for %s', $city)); |
| 161 | 161 | } |
@@ -170,11 +170,11 @@ discard block |
||
| 170 | 170 | $data->set('selected_city', $city); |
| 171 | 171 | |
| 172 | 172 | $data->set('has_list', false); |
| 173 | - if(!empty($city)) { |
|
| 174 | - $table_id = 'table-certiflist-' . Uuid::uuid4(); |
|
| 173 | + if (!empty($city)) { |
|
| 174 | + $table_id = 'table-certiflist-'.Uuid::uuid4(); |
|
| 175 | 175 | |
| 176 | 176 | $certif_list = $this->provider->getCertificatesList($city); |
| 177 | - if(!empty($certif_list)) { |
|
| 177 | + if (!empty($certif_list)) { |
|
| 178 | 178 | $data->set('has_list', true); |
| 179 | 179 | $data->set('table_id', $table_id); |
| 180 | 180 | $data->set('certificate_list', $certif_list); |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | jQuery.fn.dataTableExt.oSort["text-desc"] = textCompareDesc; |
| 187 | 187 | |
| 188 | 188 | jQuery("#'.$table_id.'").dataTable( { |
| 189 | - dom: \'<"H"<"filtersH_' . $table_id . '">T<"dt-clear">pf<"dt-clear">irl>t<"F"pl<"dt-clear"><"filtersF_' . $table_id . '">>\', |
|
| 189 | + dom: \'<"H"<"filtersH_' . $table_id.'">T<"dt-clear">pf<"dt-clear">irl>t<"F"pl<"dt-clear"><"filtersF_'.$table_id.'">>\', |
|
| 190 | 190 | '.I18N::datatablesI18N().', |
| 191 | 191 | jQueryUI: true, |
| 192 | 192 | autoWidth: false, |
@@ -123,7 +123,9 @@ |
||
| 123 | 123 | $tree = Globals::getTree(); |
| 124 | 124 | $cid = Filter::get('cid'); |
| 125 | 125 | $certificate = null; |
| 126 | - if(!empty($cid)) $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
| 126 | + if(!empty($cid)) { |
|
| 127 | + $certificate = Certificate::getInstance($cid, $tree, null, $this->provider); |
|
| 128 | + } |
|
| 127 | 129 | |
| 128 | 130 | $imageBuilder = new ImageBuilder($certificate); |
| 129 | 131 | |