@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | <div id="maj-cert-page" class="center"> |
31 | 31 | <h2><?php echo $this->data->get('title'); ?></h2> |
32 | 32 | |
33 | - <?php if($this->data->get('has_certif', false)) { |
|
33 | + <?php if ($this->data->get('has_certif', false)) { |
|
34 | 34 | /** @var Certificate $certificate */ |
35 | 35 | $certificate = $this->data->get('certificate'); |
36 | 36 | $has_linked_indis = $this->data->get('has_linked_indis', false); |
@@ -49,16 +49,16 @@ discard block |
||
49 | 49 | <div id="certificate-edit"> |
50 | 50 | <?php echo $certificate->displayImage(); ?> |
51 | 51 | </div> |
52 | - <?php if($has_linked_indis || $has_linked_fams) { ?> |
|
52 | + <?php if ($has_linked_indis || $has_linked_fams) { ?> |
|
53 | 53 | <ul> |
54 | - <?php if($has_linked_indis) { ?> |
|
54 | + <?php if ($has_linked_indis) { ?> |
|
55 | 55 | <li> |
56 | 56 | <a href="#indi-certificate"> |
57 | 57 | <span id="indisource"><?php echo I18N::translate('Individuals'); ?></span> |
58 | 58 | </a> |
59 | 59 | </li> |
60 | 60 | <?php } ?> |
61 | - <?php if($has_linked_fams) { ?> |
|
61 | + <?php if ($has_linked_fams) { ?> |
|
62 | 62 | <li> |
63 | 63 | <a href="#fam-certificate"> |
64 | 64 | <span id="famsource"><?php echo I18N::translate('Families'); ?></span> |
@@ -67,13 +67,13 @@ discard block |
||
67 | 67 | <?php } ?> |
68 | 68 | </ul> |
69 | 69 | |
70 | - <?php if($has_linked_indis) { ?> |
|
70 | + <?php if ($has_linked_indis) { ?> |
|
71 | 71 | <div id="indi-certificate"> |
72 | 72 | <?php echo FunctionsPrintLists::individualTable($this->data->get('linked_indis')); ?> |
73 | 73 | </div> |
74 | 74 | <?php } ?> |
75 | 75 | |
76 | - <?php if($has_linked_fams) { ?> |
|
76 | + <?php if ($has_linked_fams) { ?> |
|
77 | 77 | <div id="fam-certificate"> |
78 | 78 | <?php echo FunctionsPrintLists::familyTable($this->data->get('linked_fams')); ?> |
79 | 79 | </div> |
@@ -53,13 +53,13 @@ |
||
53 | 53 | */ |
54 | 54 | public function makeView($view_name, MvcController $mvc_ctrl, BaseController $ctrl, ViewBag $data) |
55 | 55 | { |
56 | - if(!$mvc_ctrl) throw new \Exception('Mvc Controller not defined'); |
|
57 | - if(!$ctrl) throw new \Exception('Base Controller not defined'); |
|
58 | - if(!$view_name) throw new \Exception('View not defined'); |
|
56 | + if (!$mvc_ctrl) throw new \Exception('Mvc Controller not defined'); |
|
57 | + if (!$ctrl) throw new \Exception('Base Controller not defined'); |
|
58 | + if (!$view_name) throw new \Exception('View not defined'); |
|
59 | 59 | |
60 | 60 | $mvc_ctrl_refl = new \ReflectionObject($mvc_ctrl); |
61 | - $view_class = $mvc_ctrl_refl->getNamespaceName() . '\\Views\\' . $view_name . 'View'; |
|
62 | - if(!class_exists($view_class)) throw new \Exception('View does not exist'); |
|
61 | + $view_class = $mvc_ctrl_refl->getNamespaceName().'\\Views\\'.$view_name.'View'; |
|
62 | + if (!class_exists($view_class)) throw new \Exception('View does not exist'); |
|
63 | 63 | |
64 | 64 | return new $view_class($ctrl, $data); |
65 | 65 | } |
@@ -73,8 +73,8 @@ discard block |
||
73 | 73 | * @param bool $override |
74 | 74 | */ |
75 | 75 | public function set($key, $value, $override = true) { |
76 | - if(is_null($key)) return; |
|
77 | - if(!$override && array_key_exists($key, $this->data)) return; |
|
76 | + if (is_null($key)) return; |
|
77 | + if (!$override && array_key_exists($key, $this->data)) return; |
|
78 | 78 | $this->data[$key] = $value; |
79 | 79 | } |
80 | 80 | |
@@ -107,7 +107,7 @@ discard block |
||
107 | 107 | * @param string $key |
108 | 108 | */ |
109 | 109 | public function __unset($key) { |
110 | - unset($this->data[$key]);; |
|
110 | + unset($this->data[$key]); ; |
|
111 | 111 | } |
112 | 112 | |
113 | 113 | } |
@@ -52,24 +52,24 @@ discard block |
||
52 | 52 | * {@inhericDoc} |
53 | 53 | * @see \MyArtJaub\Webtrees\Module\Certificates\Model\CertificateProviderInterface::getRealCertificatesDirectory() |
54 | 54 | */ |
55 | - public function getRealCertificatesDirectory(){ |
|
56 | - return WT_DATA_DIR . $this->root_path; |
|
55 | + public function getRealCertificatesDirectory() { |
|
56 | + return WT_DATA_DIR.$this->root_path; |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | /** |
60 | 60 | * {@inhericDoc} |
61 | 61 | * @see \MyArtJaub\Webtrees\Module\Certificates\Model\CertificateProviderInterface::getCitiesList() |
62 | 62 | */ |
63 | - public function getCitiesList(){ |
|
64 | - if(!isset($this->cities_list) || is_null($this->cities_list)){ |
|
63 | + public function getCitiesList() { |
|
64 | + if (!isset($this->cities_list) || is_null($this->cities_list)) { |
|
65 | 65 | $certdir = $this->getRealCertificatesDirectory(); |
66 | 66 | $this->cities_list = array(); |
67 | 67 | |
68 | 68 | $dir = opendir($certdir); |
69 | 69 | |
70 | - while($entry = readdir($dir)){ |
|
71 | - if($entry != '.' && $entry != '..' && is_dir($certdir.$entry)){ |
|
72 | - $this->cities_list[]= Functions::encodeFileSystemToUtf8($entry); |
|
70 | + while ($entry = readdir($dir)) { |
|
71 | + if ($entry != '.' && $entry != '..' && is_dir($certdir.$entry)) { |
|
72 | + $this->cities_list[] = Functions::encodeFileSystemToUtf8($entry); |
|
73 | 73 | } |
74 | 74 | } |
75 | 75 | sort($this->cities_list); |
@@ -81,21 +81,21 @@ discard block |
||
81 | 81 | * {@inhericDoc} |
82 | 82 | * @see \MyArtJaub\Webtrees\Module\Certificates\Model\CertificateProviderInterface::getCertificatesList() |
83 | 83 | */ |
84 | - public function getCertificatesList($selCity){ |
|
84 | + public function getCertificatesList($selCity) { |
|
85 | 85 | |
86 | 86 | $selCity = Functions::encodeUtf8ToFileSystem($selCity); |
87 | 87 | |
88 | 88 | $certdir = $this->getRealCertificatesDirectory(); |
89 | - $tabCertif= array(); |
|
89 | + $tabCertif = array(); |
|
90 | 90 | |
91 | - if(is_dir($certdir.$selCity)){ |
|
92 | - $dir=opendir($certdir.$selCity); |
|
93 | - while($entry = readdir($dir)){ |
|
94 | - if($entry!='.' && $entry!='..' && !is_dir($certdir.$entry.'/')){ |
|
91 | + if (is_dir($certdir.$selCity)) { |
|
92 | + $dir = opendir($certdir.$selCity); |
|
93 | + while ($entry = readdir($dir)) { |
|
94 | + if ($entry != '.' && $entry != '..' && !is_dir($certdir.$entry.'/')) { |
|
95 | 95 | $path = Functions::encodeFileSystemToUtf8($selCity.'/'.$entry); |
96 | 96 | $certificate = new Certificate($path, $this->tree, $this); |
97 | - if(Functions::isImageTypeSupported($certificate->extension())){ |
|
98 | - $tabCertif[] = $certificate; |
|
97 | + if (Functions::isImageTypeSupported($certificate->extension())) { |
|
98 | + $tabCertif[] = $certificate; |
|
99 | 99 | } |
100 | 100 | } |
101 | 101 | } |
@@ -107,17 +107,17 @@ discard block |
||
107 | 107 | * {@inhericDoc} |
108 | 108 | * @see \MyArtJaub\Webtrees\Module\Certificates\Model\CertificateProviderInterface::getCertificatesListBeginWith() |
109 | 109 | */ |
110 | - public function getCertificatesListBeginWith($city, $contains, $limit= 9999){ |
|
111 | - $tabFiles= array(); |
|
112 | - $dirPath= $this->getRealCertificatesDirectory() . Functions::encodeUtf8ToFileSystem($city).'/'; |
|
110 | + public function getCertificatesListBeginWith($city, $contains, $limit = 9999) { |
|
111 | + $tabFiles = array(); |
|
112 | + $dirPath = $this->getRealCertificatesDirectory().Functions::encodeUtf8ToFileSystem($city).'/'; |
|
113 | 113 | $contains = utf8_decode($contains); |
114 | 114 | $nbCert = 0; |
115 | 115 | |
116 | - if(is_dir($dirPath)){ |
|
117 | - $dir=opendir($dirPath); |
|
118 | - while(($entry = readdir($dir)) && $nbCert < $limit){ |
|
119 | - if($entry!='.' && $entry!='..' && $entry!='Thumbs.db' &&!is_dir($dirPath.$entry.'/') && stripos($entry, $contains)!== false){ |
|
120 | - $tabFiles[]= Functions::encodeFileSystemToUtf8($entry); |
|
116 | + if (is_dir($dirPath)) { |
|
117 | + $dir = opendir($dirPath); |
|
118 | + while (($entry = readdir($dir)) && $nbCert < $limit) { |
|
119 | + if ($entry != '.' && $entry != '..' && $entry != 'Thumbs.db' && !is_dir($dirPath.$entry.'/') && stripos($entry, $contains) !== false) { |
|
120 | + $tabFiles[] = Functions::encodeFileSystemToUtf8($entry); |
|
121 | 121 | $nbCert++; |
122 | 122 | } |
123 | 123 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * |
28 | 28 | * @param \Fisharebest\Webtrees\Place $place_in The Place to extend |
29 | 29 | */ |
30 | - public function __construct(\Fisharebest\Webtrees\Place $place){ |
|
30 | + public function __construct(\Fisharebest\Webtrees\Place $place) { |
|
31 | 31 | $this->place = $place; |
32 | 32 | } |
33 | 33 | |
@@ -39,9 +39,9 @@ discard block |
||
39 | 39 | * @param \Fisharebest\Webtrees\Tree $tree |
40 | 40 | * @return \MyArtJaub\Webtrees\Place|null Instance of \MyArtJaub\Webtrees\Place, if relevant |
41 | 41 | */ |
42 | - public static function getIntance($place_str, Tree $tree){ |
|
42 | + public static function getIntance($place_str, Tree $tree) { |
|
43 | 43 | $dplace = null; |
44 | - if(is_string($place_str) && strlen($place_str) > 0){ |
|
44 | + if (is_string($place_str) && strlen($place_str) > 0) { |
|
45 | 45 | $dplace = new Place(new \Fisharebest\Webtrees\Place($place_str, $tree)); |
46 | 46 | } |
47 | 47 | return $dplace; |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | * |
53 | 53 | * @return \Fisharebest\Webtrees\Place Embedded place record |
54 | 54 | */ |
55 | - public function getDerivedPlace(){ |
|
55 | + public function getDerivedPlace() { |
|
56 | 56 | return $this->place; |
57 | 57 | } |
58 | 58 | |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | * @param bool $anchor Option to print a link to placelist |
66 | 66 | * @return string HTML code for formatted place |
67 | 67 | */ |
68 | - public function htmlFormattedName($format, $anchor = false){ |
|
69 | - $html=''; |
|
68 | + public function htmlFormattedName($format, $anchor = false) { |
|
69 | + $html = ''; |
|
70 | 70 | |
71 | 71 | $levels = array_map('trim', explode(',', $this->place->getGedcomName())); |
72 | 72 | $nbLevels = count($levels); |
@@ -74,15 +74,15 @@ discard block |
||
74 | 74 | preg_match_all('/%[^%]/', $displayPlace, $matches); |
75 | 75 | foreach ($matches[0] as $match2) { |
76 | 76 | $index = str_replace('%', '', $match2); |
77 | - if(is_numeric($index) && $index >0 && $index <= $nbLevels){ |
|
78 | - $displayPlace = str_replace($match2, $levels[$index-1] , $displayPlace); |
|
77 | + if (is_numeric($index) && $index > 0 && $index <= $nbLevels) { |
|
78 | + $displayPlace = str_replace($match2, $levels[$index - 1], $displayPlace); |
|
79 | 79 | } |
80 | - else{ |
|
81 | - $displayPlace = str_replace($match2, '' , $displayPlace); |
|
80 | + else { |
|
81 | + $displayPlace = str_replace($match2, '', $displayPlace); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | if ($anchor && !Auth::isSearchEngine()) { |
85 | - $html .='<a href="' . $this->place->getURL() . '">' . $displayPlace . '</a>'; |
|
85 | + $html .= '<a href="'.$this->place->getURL().'">'.$displayPlace.'</a>'; |
|
86 | 86 | } else { |
87 | 87 | $html .= $displayPlace; |
88 | 88 | } |
@@ -30,10 +30,10 @@ discard block |
||
30 | 30 | * @param string $gedcom |
31 | 31 | * @return NULL|\MyArtJaub\Webtrees\Family |
32 | 32 | */ |
33 | - public static function getIntance($xref, Tree $tree, $gedcom = null){ |
|
33 | + public static function getIntance($xref, Tree $tree, $gedcom = null) { |
|
34 | 34 | $dfam = null; |
35 | 35 | $fam = fw\Family::getInstance($xref, $tree, $gedcom); |
36 | - if($fam){ |
|
36 | + if ($fam) { |
|
37 | 37 | $dfam = new Family($fam); |
38 | 38 | } |
39 | 39 | return $dfam; |
@@ -44,8 +44,8 @@ discard block |
||
44 | 44 | * |
45 | 45 | * @return int Level of sources |
46 | 46 | * */ |
47 | - function isMarriageSourced(){ |
|
48 | - if($this->is_marriage_sourced !== null) return $this->is_marriage_sourced; |
|
47 | + function isMarriageSourced() { |
|
48 | + if ($this->is_marriage_sourced !== null) return $this->is_marriage_sourced; |
|
49 | 49 | $this->is_marriage_sourced = $this->isFactSourced(WT_EVENTS_MARR.'|MARC'); |
50 | 50 | return $this->is_marriage_sourced; |
51 | 51 | } |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | class Individual extends GedcomRecord { |
22 | 22 | |
23 | 23 | /** @var array|null List of titles the individal holds */ |
24 | - protected $titles=null; |
|
24 | + protected $titles = null; |
|
25 | 25 | |
26 | 26 | /** @var string|null Individual's primary surname, without any privacy applied to it */ |
27 | 27 | protected $unprotected_prim_surname = null; |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | * @param null|string $gedcom |
44 | 44 | * @return null|Individual |
45 | 45 | */ |
46 | - public static function getIntance($xref, Tree $tree, $gedcom = null){ |
|
46 | + public static function getIntance($xref, Tree $tree, $gedcom = null) { |
|
47 | 47 | $indi = \Fisharebest\Webtrees\Individual::getInstance($xref, $tree, $gedcom); |
48 | - if($indi){ |
|
48 | + if ($indi) { |
|
49 | 49 | return new Individual($indi); |
50 | 50 | } |
51 | 51 | return null; |
@@ -56,18 +56,18 @@ discard block |
||
56 | 56 | * |
57 | 57 | * @return array Array of titles |
58 | 58 | */ |
59 | - public function getTitles(){ |
|
60 | - if(is_null($this->titles) && $module = Module::getModuleByName(Constants::MODULE_MAJ_MISC_NAME)){ |
|
59 | + public function getTitles() { |
|
60 | + if (is_null($this->titles) && $module = Module::getModuleByName(Constants::MODULE_MAJ_MISC_NAME)) { |
|
61 | 61 | $pattern = '/(.*) (('.$module->getSetting('MAJ_TITLE_PREFIX', '').')(.*))/'; |
62 | - $this->titles=array(); |
|
62 | + $this->titles = array(); |
|
63 | 63 | $titlefacts = $this->gedcomrecord->getFacts('TITL'); |
64 | - foreach($titlefacts as $titlefact){ |
|
64 | + foreach ($titlefacts as $titlefact) { |
|
65 | 65 | $ct2 = preg_match_all($pattern, $titlefact->getValue(), $match2); |
66 | - if($ct2>0){ |
|
67 | - $this->titles[$match2[1][0]][]= trim($match2[2][0]); |
|
66 | + if ($ct2 > 0) { |
|
67 | + $this->titles[$match2[1][0]][] = trim($match2[2][0]); |
|
68 | 68 | } |
69 | - else{ |
|
70 | - $this->titles[$titlefact->getValue()][]=''; |
|
69 | + else { |
|
70 | + $this->titles[$titlefact->getValue()][] = ''; |
|
71 | 71 | } |
72 | 72 | } |
73 | 73 | } |
@@ -81,8 +81,8 @@ discard block |
||
81 | 81 | * @return string Primary surname |
82 | 82 | */ |
83 | 83 | public function getUnprotectedPrimarySurname() { |
84 | - if(!$this->unprotected_prim_surname){ |
|
85 | - $tmp=$this->gedcomrecord->getAllNames(); |
|
84 | + if (!$this->unprotected_prim_surname) { |
|
85 | + $tmp = $this->gedcomrecord->getAllNames(); |
|
86 | 86 | $this->unprotected_prim_surname = $tmp[$this->gedcomrecord->getPrimaryName()]['surname']; |
87 | 87 | } |
88 | 88 | return $this->unprotected_prim_surname; |
@@ -94,12 +94,12 @@ discard block |
||
94 | 94 | * @param boolean $perc Should the coefficient of reliability be returned |
95 | 95 | * @return string|array Estimated birth place if found, null otherwise |
96 | 96 | */ |
97 | - public function getEstimatedBirthPlace($perc=false){ |
|
98 | - if($bplace = $this->gedcomrecord->getBirthPlace()){ |
|
99 | - if($perc){ |
|
100 | - return array ($bplace, 1); |
|
97 | + public function getEstimatedBirthPlace($perc = false) { |
|
98 | + if ($bplace = $this->gedcomrecord->getBirthPlace()) { |
|
99 | + if ($perc) { |
|
100 | + return array($bplace, 1); |
|
101 | 101 | } |
102 | - else{ |
|
102 | + else { |
|
103 | 103 | return $bplace; |
104 | 104 | } |
105 | 105 | } |
@@ -112,8 +112,8 @@ discard block |
||
112 | 112 | * @param boolean $perc Should the coefficient of reliability be returned |
113 | 113 | * @return string|array Estimated birth place if found, null otherwise |
114 | 114 | */ |
115 | - public function getSignificantPlace(){ |
|
116 | - if($bplace = $this->gedcomrecord->getBirthPlace()){ |
|
115 | + public function getSignificantPlace() { |
|
116 | + if ($bplace = $this->gedcomrecord->getBirthPlace()) { |
|
117 | 117 | return $bplace; |
118 | 118 | } |
119 | 119 | |
@@ -123,11 +123,11 @@ discard block |
||
123 | 123 | } |
124 | 124 | } |
125 | 125 | |
126 | - if($dplace = $this->gedcomrecord->getDeathPlace()){ |
|
126 | + if ($dplace = $this->gedcomrecord->getDeathPlace()) { |
|
127 | 127 | return $dplace; |
128 | 128 | } |
129 | 129 | |
130 | - foreach($this->gedcomrecord->getSpouseFamilies() as $fams) { |
|
130 | + foreach ($this->gedcomrecord->getSpouseFamilies() as $fams) { |
|
131 | 131 | foreach ($fams->getAllEventPlaces('RESI') as $rplace) { |
132 | 132 | if ($rplace) { |
133 | 133 | return $rplace; |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | * |
144 | 144 | * @return boolean Is the individual a Sosa ancestor |
145 | 145 | */ |
146 | - public function isSosa(){ |
|
146 | + public function isSosa() { |
|
147 | 147 | return count($this->getSosaNumbers()) > 0; |
148 | 148 | } |
149 | 149 | |
@@ -154,8 +154,8 @@ discard block |
||
154 | 154 | * @uses \MyArtJaub\Webtrees\Functions\ModuleManager |
155 | 155 | * @return array List of Sosa numbers |
156 | 156 | */ |
157 | - public function getSosaNumbers(){ |
|
158 | - if($this->sosa === null) { |
|
157 | + public function getSosaNumbers() { |
|
158 | + if ($this->sosa === null) { |
|
159 | 159 | $provider = new SosaProvider($this->gedcomrecord->getTree()); |
160 | 160 | $this->sosa = $provider->getSosaNumbers($this->gedcomrecord); |
161 | 161 | } |
@@ -167,8 +167,8 @@ discard block |
||
167 | 167 | * |
168 | 168 | * @return int Level of sources |
169 | 169 | * */ |
170 | - public function isBirthSourced(){ |
|
171 | - if($this->is_birth_sourced !== null) return $this->is_birth_sourced; |
|
170 | + public function isBirthSourced() { |
|
171 | + if ($this->is_birth_sourced !== null) return $this->is_birth_sourced; |
|
172 | 172 | $this->is_birth_sourced = $this->isFactSourced(WT_EVENTS_BIRT); |
173 | 173 | return $this->is_birth_sourced; |
174 | 174 | } |
@@ -178,8 +178,8 @@ discard block |
||
178 | 178 | * |
179 | 179 | * @return int Level of sources |
180 | 180 | * */ |
181 | - public function isDeathSourced(){ |
|
182 | - if($this->is_death_sourced !== null) return $this->is_death_sourced; |
|
181 | + public function isDeathSourced() { |
|
182 | + if ($this->is_death_sourced !== null) return $this->is_death_sourced; |
|
183 | 183 | $this->is_death_sourced = $this->isFactSourced(WT_EVENTS_DEAT); |
184 | 184 | return $this->is_death_sourced; |
185 | 185 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | * |
33 | 33 | * @param \Fisharebest\Webtrees\Controller\IndividualController $ctrl_individual_in The Individual Controller to extend |
34 | 34 | */ |
35 | - public function __construct(fw\Controller\IndividualController $ctrl_individual_in){ |
|
35 | + public function __construct(fw\Controller\IndividualController $ctrl_individual_in) { |
|
36 | 36 | $this->ctrl_individual = $ctrl_individual_in; |
37 | 37 | $this->dindi = new mw\Individual($this->ctrl_individual->getSignificantIndividual()); |
38 | 38 | } |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * |
44 | 44 | * @uses \MyArtJaub\Webtrees\Hook\Hook |
45 | 45 | */ |
46 | - public function printHeaderExtensions(){ |
|
46 | + public function printHeaderExtensions() { |
|
47 | 47 | $hook_extend_indi_header_left = new mw\Hook\Hook('hExtendIndiHeaderLeft'); |
48 | 48 | $hook_extend_indi_header_right = new mw\Hook\Hook('hExtendIndiHeaderRight'); |
49 | 49 | $hook_extend_indi_header_left = $hook_extend_indi_header_left->execute($this->ctrl_individual); |
@@ -52,7 +52,7 @@ discard block |
||
52 | 52 | echo '<div id="indi_perso_header">', |
53 | 53 | '<div id="indi_perso_header_left">'; |
54 | 54 | foreach ($hook_extend_indi_header_left as $div) { |
55 | - if(count($div)==2){ |
|
55 | + if (count($div) == 2) { |
|
56 | 56 | echo '<div id="', $div[0], '" class="indi_perso_header_left_div">', |
57 | 57 | $div[1], '</div>'; |
58 | 58 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | echo '</div>', |
61 | 61 | '<div id="indi_perso_header_right">'; |
62 | 62 | foreach ($hook_extend_indi_header_right as $div) { |
63 | - if(count($div)==2){ |
|
63 | + if (count($div) == 2) { |
|
64 | 64 | echo '<div id="', $div[0], '" class="indi_perso_header_right_div">', |
65 | 65 | $div[1], '</div>'; |
66 | 66 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @uses \MyArtJaub\Webtrees\Hook\Hook |
77 | 77 | */ |
78 | - public function printHeaderExtraIcons(){ |
|
78 | + public function printHeaderExtraIcons() { |
|
79 | 79 | $hook_extend_indi_header_icons = new Hook('hExtendIndiHeaderIcons'); |
80 | 80 | $hook_extend_indi_header_icons = $hook_extend_indi_header_icons->execute($this->ctrl_individual); |
81 | 81 |
@@ -49,10 +49,10 @@ discard block |
||
49 | 49 | public function handle(fw\Module\AbstractModule $module, $request) { |
50 | 50 | |
51 | 51 | $fq_modclass_name = get_class($module); |
52 | - $ctrl_namespace = substr($fq_modclass_name, 0, - strlen('Module')) . '\\'; |
|
52 | + $ctrl_namespace = substr($fq_modclass_name, 0, - strlen('Module')).'\\'; |
|
53 | 53 | |
54 | - $args = explode( '@', $request, 2); |
|
55 | - switch(count($args)) { |
|
54 | + $args = explode('@', $request, 2); |
|
55 | + switch (count($args)) { |
|
56 | 56 | case 1: |
57 | 57 | $ctrl_name = $args[0]; |
58 | 58 | $method = 'index'; |
@@ -64,16 +64,16 @@ discard block |
||
64 | 64 | break; |
65 | 65 | } |
66 | 66 | |
67 | - $ctrl_class = $ctrl_namespace . $ctrl_name . 'Controller'; |
|
68 | - if(class_exists($ctrl_class) |
|
67 | + $ctrl_class = $ctrl_namespace.$ctrl_name.'Controller'; |
|
68 | + if (class_exists($ctrl_class) |
|
69 | 69 | && is_subclass_of($ctrl_class, '\\MyArtJaub\\Webtrees\\Mvc\\Controller\\MvcController') |
70 | - && $ctrl = new $ctrl_class($module) ) { |
|
71 | - if(method_exists($ctrl, $method)) { |
|
70 | + && $ctrl = new $ctrl_class($module)) { |
|
71 | + if (method_exists($ctrl, $method)) { |
|
72 | 72 | try { |
73 | 73 | call_user_func_array(array($ctrl, $method), array()); |
74 | 74 | } |
75 | 75 | catch (MvcException $ex) { |
76 | - if(!headers_sent()) { |
|
76 | + if (!headers_sent()) { |
|
77 | 77 | http_response_code($ex->getHttpCode()); |
78 | 78 | } |
79 | 79 | echo $ex->getMessage(); |