@@ -52,7 +52,7 @@ |
||
| 52 | 52 | /** |
| 53 | 53 | * Find the spouse of a person, using the Xref comparison. |
| 54 | 54 | * |
| 55 | - * @param Individual $person |
|
| 55 | + * @param fw\Individual $person |
|
| 56 | 56 | * |
| 57 | 57 | * @return Individual|null |
| 58 | 58 | */ |
@@ -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 | } |
@@ -74,7 +74,7 @@ discard block |
||
| 74 | 74 | * |
| 75 | 75 | * @param \Fisharebest\Webtrees\Place $place |
| 76 | 76 | * @param string $icon_path |
| 77 | - * @param number $size |
|
| 77 | + * @param integer $size |
|
| 78 | 78 | * @return string HTML code of the inserted flag |
| 79 | 79 | */ |
| 80 | 80 | public static function htmlPlaceIcon(\Fisharebest\Webtrees\Place $place, $icon_path , $size = 50) { |
@@ -184,7 +184,6 @@ discard block |
||
| 184 | 184 | /** |
| 185 | 185 | * Format date to display short (just years) |
| 186 | 186 | * |
| 187 | - * @param \Fisharebest\Webtrees\Fact $eventObj Fact to display date |
|
| 188 | 187 | * @param boolean $anchor option to print a link to calendar |
| 189 | 188 | * @return string HTML code for short date |
| 190 | 189 | */ |
@@ -212,7 +211,6 @@ discard block |
||
| 212 | 211 | /** |
| 213 | 212 | * Format fact place to display short |
| 214 | 213 | * |
| 215 | - * @param \Fisharebest\Webtrees\Fact $eventObj Fact to display date |
|
| 216 | 214 | * @param string $format Format of the place |
| 217 | 215 | * @param boolean $anchor option to print a link to placelist |
| 218 | 216 | * @return string HTML code for short place |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | * @return string List of elements |
| 32 | 32 | */ |
| 33 | 33 | public static function getListFromArray(array $array) { |
| 34 | - $n=count($array); |
|
| 34 | + $n = count($array); |
|
| 35 | 35 | switch ($n) { |
| 36 | 36 | case 0: |
| 37 | 37 | return ''; |
@@ -40,10 +40,10 @@ discard block |
||
| 40 | 40 | default: |
| 41 | 41 | return implode( |
| 42 | 42 | /* I18N: list separator */ I18N::translate(', '), |
| 43 | - array_slice($array, 0, $n-1) |
|
| 44 | - ) . |
|
| 45 | - /* I18N: last list separator, " and " in English, " et " in French */ I18N::translate(' and ') . |
|
| 46 | - $array[$n-1]; |
|
| 43 | + array_slice($array, 0, $n - 1) |
|
| 44 | + ). |
|
| 45 | + /* I18N: last list separator, " and " in English, " et " in French */ I18N::translate(' and '). |
|
| 46 | + $array[$n - 1]; |
|
| 47 | 47 | } |
| 48 | 48 | } |
| 49 | 49 | |
@@ -59,10 +59,10 @@ discard block |
||
| 59 | 59 | \MyArtJaub\Webtrees\Map\MapProviderInterface $mapProvider |
| 60 | 60 | ) { |
| 61 | 61 | $place = $fact->getPlace(); |
| 62 | - if(!$place->isEmpty()) { |
|
| 63 | - $iconPlace= $mapProvider->getPlaceIcon($place); |
|
| 64 | - if($iconPlace && strlen($iconPlace) > 0){ |
|
| 65 | - return '<div class="fact_flag">'. self::htmlPlaceIcon($place, $iconPlace, 50). '</div>'; |
|
| 62 | + if (!$place->isEmpty()) { |
|
| 63 | + $iconPlace = $mapProvider->getPlaceIcon($place); |
|
| 64 | + if ($iconPlace && strlen($iconPlace) > 0) { |
|
| 65 | + return '<div class="fact_flag">'.self::htmlPlaceIcon($place, $iconPlace, 50).'</div>'; |
|
| 66 | 66 | } |
| 67 | 67 | } |
| 68 | 68 | return ''; |
@@ -76,8 +76,8 @@ discard block |
||
| 76 | 76 | * @param number $size |
| 77 | 77 | * @return string HTML code of the inserted flag |
| 78 | 78 | */ |
| 79 | - public static function htmlPlaceIcon(\Fisharebest\Webtrees\Place $place, $icon_path , $size = 50) { |
|
| 80 | - return '<img class="flag_gm_h'. $size . '" src="' . $icon_path . '" title="' . $place->getGedcomName() . '" alt="' . $place->getGedcomName() . '" />'; |
|
| 79 | + public static function htmlPlaceIcon(\Fisharebest\Webtrees\Place $place, $icon_path, $size = 50) { |
|
| 80 | + return '<img class="flag_gm_h'.$size.'" src="'.$icon_path.'" title="'.$place->getGedcomName().'" alt="'.$place->getGedcomName().'" />'; |
|
| 81 | 81 | } |
| 82 | 82 | |
| 83 | 83 | /** |
@@ -95,7 +95,7 @@ discard block |
||
| 95 | 95 | $minimum = PHP_INT_MAX; |
| 96 | 96 | $maximum = 1; |
| 97 | 97 | foreach ($list as $params) { |
| 98 | - if(array_key_exists('count', $params)) { |
|
| 98 | + if (array_key_exists('count', $params)) { |
|
| 99 | 99 | $maximum = max($maximum, $params['count']); |
| 100 | 100 | $minimum = min($minimum, $params['count']); |
| 101 | 101 | } |
@@ -113,15 +113,15 @@ discard block |
||
| 113 | 113 | $size = 75.0 + 125.0 * ($count - $minimum) / ($maximum - $minimum); |
| 114 | 114 | } |
| 115 | 115 | |
| 116 | - $html .= '<a style="font-size:' . $size . '%" href="' . $url . '">'; |
|
| 116 | + $html .= '<a style="font-size:'.$size.'%" href="'.$url.'">'; |
|
| 117 | 117 | if ($totals) { |
| 118 | - $html .= I18N::translate('%1$s (%2$s)', '<span dir="auto">' . $text . '</span>', I18N::number($count)); |
|
| 118 | + $html .= I18N::translate('%1$s (%2$s)', '<span dir="auto">'.$text.'</span>', I18N::number($count)); |
|
| 119 | 119 | } else { |
| 120 | 120 | $html .= $text; |
| 121 | 121 | } |
| 122 | 122 | $html .= '</a>'; |
| 123 | 123 | } |
| 124 | - return '<div class="tag_cloud">' . $html . '</div>'; |
|
| 124 | + return '<div class="tag_cloud">'.$html.'</div>'; |
|
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | |
@@ -156,11 +156,11 @@ discard block |
||
| 156 | 156 | * @param bool $isStrong Bolden the name ? |
| 157 | 157 | * @return string HTML Code for individual item |
| 158 | 158 | */ |
| 159 | - public static function htmlIndividualForList(\Fisharebest\Webtrees\Individual $individual, $isStrong = true){ |
|
| 159 | + public static function htmlIndividualForList(\Fisharebest\Webtrees\Individual $individual, $isStrong = true) { |
|
| 160 | 160 | $html = ''; |
| 161 | 161 | $tag = 'em'; |
| 162 | - if($isStrong) $tag = 'strong'; |
|
| 163 | - if($individual && $individual->canShow()){ |
|
| 162 | + if ($isStrong) $tag = 'strong'; |
|
| 163 | + if ($individual && $individual->canShow()) { |
|
| 164 | 164 | $dindi = new Individual($individual); |
| 165 | 165 | $html = $individual->getSexImage(); |
| 166 | 166 | $html .= '<a class="list_item" href="'. |
@@ -175,7 +175,7 @@ discard block |
||
| 175 | 175 | $html .= '</a>'; |
| 176 | 176 | } |
| 177 | 177 | else { |
| 178 | - $html .= '<span class=\"list_item\"><'.$tag.'>' . I18N::translate('Private') . '</'.$tag.'></span>'; |
|
| 178 | + $html .= '<span class=\"list_item\"><'.$tag.'>'.I18N::translate('Private').'</'.$tag.'></span>'; |
|
| 179 | 179 | } |
| 180 | 180 | return $html; |
| 181 | 181 | } |
@@ -187,22 +187,22 @@ discard block |
||
| 187 | 187 | * @param boolean $anchor option to print a link to calendar |
| 188 | 188 | * @return string HTML code for short date |
| 189 | 189 | */ |
| 190 | - public static function formatFactDateShort(\Fisharebest\Webtrees\Fact $fact, $anchor=false) { |
|
| 190 | + public static function formatFactDateShort(\Fisharebest\Webtrees\Fact $fact, $anchor = false) { |
|
| 191 | 191 | global $SEARCH_SPIDER; |
| 192 | 192 | |
| 193 | - $html=''; |
|
| 193 | + $html = ''; |
|
| 194 | 194 | $date = $fact->getDate(); |
| 195 | - if($date->isOK()){ |
|
| 196 | - $html.=' '.$date->Display($anchor && !$SEARCH_SPIDER, '%Y'); |
|
| 195 | + if ($date->isOK()) { |
|
| 196 | + $html .= ' '.$date->Display($anchor && !$SEARCH_SPIDER, '%Y'); |
|
| 197 | 197 | } |
| 198 | - else{ |
|
| 198 | + else { |
|
| 199 | 199 | // 1 DEAT Y with no DATE => print YES |
| 200 | 200 | // 1 BIRT 2 SOUR @S1@ => print YES |
| 201 | 201 | // 1 DEAT N is not allowed |
| 202 | 202 | // It is not proper GEDCOM form to use a N(o) value with an event tag to infer that it did not happen. |
| 203 | 203 | $factdetail = explode(' ', trim($fact->getGedcom())); |
| 204 | 204 | if (isset($factdetail) && (count($factdetail) == 3 && strtoupper($factdetail[2]) == 'Y') || (count($factdetail) == 4 && $factdetail[2] == 'SOUR')) { |
| 205 | - $html.=I18N::translate('yes'); |
|
| 205 | + $html .= I18N::translate('yes'); |
|
| 206 | 206 | } |
| 207 | 207 | } |
| 208 | 208 | return $html; |
@@ -216,12 +216,12 @@ discard block |
||
| 216 | 216 | * @param boolean $anchor option to print a link to placelist |
| 217 | 217 | * @return string HTML code for short place |
| 218 | 218 | */ |
| 219 | - public static function formatFactPlaceShort(\Fisharebest\Webtrees\Fact $fact, $format, $anchor=false){ |
|
| 220 | - $html=''; |
|
| 219 | + public static function formatFactPlaceShort(\Fisharebest\Webtrees\Fact $fact, $format, $anchor = false) { |
|
| 220 | + $html = ''; |
|
| 221 | 221 | |
| 222 | 222 | if ($fact === null) return $html; |
| 223 | 223 | $place = $fact->getPlace(); |
| 224 | - if($place){ |
|
| 224 | + if ($place) { |
|
| 225 | 225 | $dplace = new Place($place); |
| 226 | 226 | $html .= $dplace->htmlFormattedName($format, $anchor); |
| 227 | 227 | } |
@@ -239,21 +239,21 @@ discard block |
||
| 239 | 239 | * @param string $size CSS size for the icon. A CSS style css_$size is required |
| 240 | 240 | * @return string HTML code for the formatted Sosa numbers |
| 241 | 241 | */ |
| 242 | - public static function formatSosaNumbers(array $sosatab, $format = 1, $size = 'small'){ |
|
| 242 | + public static function formatSosaNumbers(array $sosatab, $format = 1, $size = 'small') { |
|
| 243 | 243 | $html = ''; |
| 244 | - switch($format){ |
|
| 244 | + switch ($format) { |
|
| 245 | 245 | case 1: |
| 246 | - if(count($sosatab)>0){ |
|
| 246 | + if (count($sosatab) > 0) { |
|
| 247 | 247 | $html = '<i class="icon-maj-sosa_'.$size.'" title="'.I18N::translate('Sosa').'"></i>'; |
| 248 | 248 | } |
| 249 | 249 | break; |
| 250 | 250 | case 2: |
| 251 | - if(count($sosatab)>0){ |
|
| 251 | + if (count($sosatab) > 0) { |
|
| 252 | 252 | ksort($sosatab); |
| 253 | 253 | $tmp_html = array(); |
| 254 | 254 | foreach ($sosatab as $sosa => $gen) { |
| 255 | 255 | $tmp_html[] = sprintf( |
| 256 | - '<i class="icon-maj-sosa_%1$s" title="'.I18N::translate('Sosa').'"></i> <strong>%2$d '.I18N::translate('(G%s)', $gen) .'</strong>', |
|
| 256 | + '<i class="icon-maj-sosa_%1$s" title="'.I18N::translate('Sosa').'"></i> <strong>%2$d '.I18N::translate('(G%s)', $gen).'</strong>', |
|
| 257 | 257 | $size, |
| 258 | 258 | $sosa |
| 259 | 259 | ); |
@@ -279,15 +279,15 @@ discard block |
||
| 279 | 279 | * @param string $size CSS size for the icon. A CSS style css_$size is required |
| 280 | 280 | * @return string HTML code for IsSourced icon |
| 281 | 281 | */ |
| 282 | - public static function formatIsSourcedIcon($sourceType, $isSourced, $tag='EVEN', $format = 1, $size='normal'){ |
|
| 283 | - $html=''; |
|
| 284 | - $image=null; |
|
| 285 | - $title=null; |
|
| 286 | - switch($format){ |
|
| 282 | + public static function formatIsSourcedIcon($sourceType, $isSourced, $tag = 'EVEN', $format = 1, $size = 'normal') { |
|
| 283 | + $html = ''; |
|
| 284 | + $image = null; |
|
| 285 | + $title = null; |
|
| 286 | + switch ($format) { |
|
| 287 | 287 | case 1: |
| 288 | - switch($sourceType){ |
|
| 288 | + switch ($sourceType) { |
|
| 289 | 289 | case 'E': |
| 290 | - switch($isSourced){ |
|
| 290 | + switch ($isSourced) { |
|
| 291 | 291 | case 0: |
| 292 | 292 | $image = 'event_unknown'; |
| 293 | 293 | $title = I18N::translate('%s not found', GedcomTag::getLabel($tag)); |
@@ -317,7 +317,7 @@ discard block |
||
| 317 | 317 | } |
| 318 | 318 | break; |
| 319 | 319 | case 'R': |
| 320 | - switch($isSourced){ |
|
| 320 | + switch ($isSourced) { |
|
| 321 | 321 | case -1: |
| 322 | 322 | $image = 'record_notsourced'; |
| 323 | 323 | $title = I18N::translate('%s not sourced', GedcomTag::getLabel($tag)); |
@@ -337,7 +337,7 @@ discard block |
||
| 337 | 337 | default: |
| 338 | 338 | break; |
| 339 | 339 | } |
| 340 | - if($image && $title) $html = '<i class="icon-maj-sourced-'.$size.'_'.$image.'" title="'.$title.'"></i>'; |
|
| 340 | + if ($image && $title) $html = '<i class="icon-maj-sourced-'.$size.'_'.$image.'" title="'.$title.'"></i>'; |
|
| 341 | 341 | break; |
| 342 | 342 | default: |
| 343 | 343 | break; |
@@ -93,7 +93,7 @@ discard block |
||
| 93 | 93 | * Returns an estimated birth place based on statistics on the base |
| 94 | 94 | * |
| 95 | 95 | * @param boolean $perc Should the coefficient of reliability be returned |
| 96 | - * @return string|array Estimated birth place if found, null otherwise |
|
| 96 | + * @return string Estimated birth place if found, null otherwise |
|
| 97 | 97 | */ |
| 98 | 98 | public function getEstimatedBirthPlace($perc=false){ |
| 99 | 99 | if($bplace = $this->gedcomrecord->getBirthPlace()){ |
@@ -110,7 +110,6 @@ discard block |
||
| 110 | 110 | /** |
| 111 | 111 | * Returns a significant place for the individual |
| 112 | 112 | * |
| 113 | - * @param boolean $perc Should the coefficient of reliability be returned |
|
| 114 | 113 | * @return string|array Estimated birth place if found, null otherwise |
| 115 | 114 | */ |
| 116 | 115 | public function getSignificantPlace(){ |
@@ -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 | } |
@@ -110,7 +110,7 @@ |
||
| 110 | 110 | * Set parameters of the Task |
| 111 | 111 | * |
| 112 | 112 | * @param bool $is_enabled Status of the task |
| 113 | - * @param \DateTime $lastupdated Time of the last task run |
|
| 113 | + * @param \DateTime $last_updated Time of the last task run |
|
| 114 | 114 | * @param bool $last_result Result of the last run, true for success, false for failure |
| 115 | 115 | * @param int $frequency Frequency of execution in minutes |
| 116 | 116 | * @param int $nb_occur Number of remaining occurrences, 0 for tasks not limited |
@@ -80,7 +80,7 @@ discard block |
||
| 80 | 80 | * @param string $file Filename containing the task object |
| 81 | 81 | * @param TaskProviderInterface $provider Provider for tasks |
| 82 | 82 | */ |
| 83 | - public function __construct($file, TaskProviderInterface $provider = null){ |
|
| 83 | + public function __construct($file, TaskProviderInterface $provider = null) { |
|
| 84 | 84 | $this->name = trim(basename($file, '.php')); |
| 85 | 85 | $this->provider = $provider; |
| 86 | 86 | } |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | * |
| 91 | 91 | * @return TaskProviderInterface |
| 92 | 92 | */ |
| 93 | - public function getProvider(){ |
|
| 93 | + public function getProvider() { |
|
| 94 | 94 | return $this->provider; |
| 95 | 95 | } |
| 96 | 96 | |
@@ -100,7 +100,7 @@ discard block |
||
| 100 | 100 | * @param TaskProviderInterface $provider |
| 101 | 101 | * @return self Enable method-chaining |
| 102 | 102 | */ |
| 103 | - public function setProvider(TaskProviderInterface $provider){ |
|
| 103 | + public function setProvider(TaskProviderInterface $provider) { |
|
| 104 | 104 | $this->provider = $provider; |
| 105 | 105 | return $this; |
| 106 | 106 | } |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @param int $nb_occur Number of remaining occurrences, 0 for tasks not limited |
| 116 | 116 | * @param bool $is_running Indicates if the task is currently running |
| 117 | 117 | */ |
| 118 | - public function setParameters($is_enabled, \DateTime $last_updated, $last_result, $frequency, $nb_occur, $is_running){ |
|
| 118 | + public function setParameters($is_enabled, \DateTime $last_updated, $last_result, $frequency, $nb_occur, $is_running) { |
|
| 119 | 119 | $this->is_enabled = $is_enabled; |
| 120 | 120 | $this->last_updated = $last_updated; |
| 121 | 121 | $this->last_result = $last_result; |
@@ -129,7 +129,7 @@ discard block |
||
| 129 | 129 | * |
| 130 | 130 | * @return string |
| 131 | 131 | */ |
| 132 | - public function getName(){ |
|
| 132 | + public function getName() { |
|
| 133 | 133 | return $this->name; |
| 134 | 134 | } |
| 135 | 135 | |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | * |
| 140 | 140 | * @return boolean True if enabled |
| 141 | 141 | */ |
| 142 | - public function isEnabled(){ |
|
| 142 | + public function isEnabled() { |
|
| 143 | 143 | return $this->is_enabled; |
| 144 | 144 | } |
| 145 | 145 | |
@@ -148,7 +148,7 @@ discard block |
||
| 148 | 148 | * |
| 149 | 149 | * @return \DateTime |
| 150 | 150 | */ |
| 151 | - public function getLastUpdated(){ |
|
| 151 | + public function getLastUpdated() { |
|
| 152 | 152 | return $this->last_updated; |
| 153 | 153 | } |
| 154 | 154 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * |
| 158 | 158 | * @return bool |
| 159 | 159 | */ |
| 160 | - public function isLastRunSuccess(){ |
|
| 160 | + public function isLastRunSuccess() { |
|
| 161 | 161 | return $this->last_result; |
| 162 | 162 | } |
| 163 | 163 | |
@@ -166,7 +166,7 @@ discard block |
||
| 166 | 166 | * |
| 167 | 167 | * @return int |
| 168 | 168 | */ |
| 169 | - public function getFrequency(){ |
|
| 169 | + public function getFrequency() { |
|
| 170 | 170 | return $this->frequency; |
| 171 | 171 | } |
| 172 | 172 | |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | * @param int $frequency |
| 177 | 177 | * @return self Enable method-chaining |
| 178 | 178 | */ |
| 179 | - public function setFrequency($frequency){ |
|
| 179 | + public function setFrequency($frequency) { |
|
| 180 | 180 | $this->frequency = $frequency; |
| 181 | 181 | return $this; |
| 182 | 182 | } |
@@ -186,7 +186,7 @@ discard block |
||
| 186 | 186 | * |
| 187 | 187 | * @return int |
| 188 | 188 | */ |
| 189 | - public function getRemainingOccurrences(){ |
|
| 189 | + public function getRemainingOccurrences() { |
|
| 190 | 190 | return $this->nb_occurrences; |
| 191 | 191 | } |
| 192 | 192 | |
@@ -196,7 +196,7 @@ discard block |
||
| 196 | 196 | * @param int $nb_occur |
| 197 | 197 | * @return self Enable method-chaining |
| 198 | 198 | */ |
| 199 | - public function setRemainingOccurrences($nb_occur){ |
|
| 199 | + public function setRemainingOccurrences($nb_occur) { |
|
| 200 | 200 | $this->nb_occurrences = $nb_occur; |
| 201 | 201 | return $this; |
| 202 | 202 | } |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | * |
| 207 | 207 | * @return bool |
| 208 | 208 | */ |
| 209 | - public function isRunning(){ |
|
| 209 | + public function isRunning() { |
|
| 210 | 210 | return $this->is_running; |
| 211 | 211 | } |
| 212 | 212 | |
@@ -235,7 +235,7 @@ discard block |
||
| 235 | 235 | * @return bool |
| 236 | 236 | */ |
| 237 | 237 | public function save() { |
| 238 | - if(!$this->provider) throw new \Exception('The task has not been initialised with a provider.'); |
|
| 238 | + if (!$this->provider) throw new \Exception('The task has not been initialised with a provider.'); |
|
| 239 | 239 | return $this->provider->updateTask($this); |
| 240 | 240 | } |
| 241 | 241 | |
@@ -243,23 +243,23 @@ discard block |
||
| 243 | 243 | * Execute the task, default skeleton |
| 244 | 244 | * |
| 245 | 245 | */ |
| 246 | - public function execute(){ |
|
| 246 | + public function execute() { |
|
| 247 | 247 | |
| 248 | - if($this->last_updated->add(new \DateInterval('PT'.self::TASK_TIME_OUT.'S')) < new \DateTime()) |
|
| 248 | + if ($this->last_updated->add(new \DateInterval('PT'.self::TASK_TIME_OUT.'S')) < new \DateTime()) |
|
| 249 | 249 | $this->is_running = false; |
| 250 | 250 | |
| 251 | - if(!$this->is_running){ |
|
| 251 | + if (!$this->is_running) { |
|
| 252 | 252 | $this->last_result = false; |
| 253 | 253 | $this->is_running = true; |
| 254 | 254 | $this->save(); |
| 255 | 255 | |
| 256 | 256 | Log::addDebugLog('Start execution of Admin task: '.$this->getTitle()); |
| 257 | 257 | $this->last_result = $this->executeSteps(); |
| 258 | - if($this->last_result){ |
|
| 258 | + if ($this->last_result) { |
|
| 259 | 259 | $this->last_updated = new \DateTime(); |
| 260 | - if($this->nb_occurrences > 0){ |
|
| 260 | + if ($this->nb_occurrences > 0) { |
|
| 261 | 261 | $this->nb_occurrences--; |
| 262 | - if($this->nb_occurrences == 0) $this->is_enabled = false; |
|
| 262 | + if ($this->nb_occurrences == 0) $this->is_enabled = false; |
|
| 263 | 263 | } |
| 264 | 264 | } |
| 265 | 265 | $this->is_running = false; |
@@ -32,8 +32,8 @@ discard block |
||
| 32 | 32 | * Set the status of a specific admin task. |
| 33 | 33 | * The status can be enabled (true), or disabled (false). |
| 34 | 34 | * |
| 35 | - * @param AbstractTask $ga |
|
| 36 | 35 | * @param bool $status |
| 36 | + * @return void |
|
| 37 | 37 | */ |
| 38 | 38 | public function setTaskStatus(AbstractTask $task, $status); |
| 39 | 39 | |
@@ -49,6 +49,7 @@ discard block |
||
| 49 | 49 | * Delete the task from the database, in a transactional manner. |
| 50 | 50 | * |
| 51 | 51 | * @param string $task_name Task to delete |
| 52 | + * @return boolean |
|
| 52 | 53 | */ |
| 53 | 54 | public function deleteTask($task_name); |
| 54 | 55 | |
@@ -75,7 +76,7 @@ discard block |
||
| 75 | 76 | * Returns the list of tasks that are currently meant to run. |
| 76 | 77 | * Tasks to run can be forced, or can be limited to only one. |
| 77 | 78 | * |
| 78 | - * @param string|null $force Force the enabled tasks to run. |
|
| 79 | + * @param boolean $force Force the enabled tasks to run. |
|
| 79 | 80 | * @param string|null $task_name Name of the specific task to run |
| 80 | 81 | */ |
| 81 | 82 | function getTasksToRun($force = false, $task_name = null); |
@@ -109,6 +109,7 @@ discard block |
||
| 109 | 109 | /** |
| 110 | 110 | * {@inhericDoc} |
| 111 | 111 | * @see \Fisharebest\Webtrees\GedcomRecord::getInstance() |
| 112 | + * @param string $xref |
|
| 112 | 113 | */ |
| 113 | 114 | static public function getInstance($xref, Tree $tree, $gedcom = null, CertificateProviderInterface $provider = null) { |
| 114 | 115 | try{ |
@@ -150,7 +151,7 @@ discard block |
||
| 150 | 151 | /** |
| 151 | 152 | * Define a source associated with the certificate |
| 152 | 153 | * |
| 153 | - * @param string|Source $xref |
|
| 154 | + * @param string|null $xref |
|
| 154 | 155 | */ |
| 155 | 156 | public function setSource($xref){ |
| 156 | 157 | if($xref instanceof Source){ |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | */ |
| 35 | 35 | class Certificate extends Media { |
| 36 | 36 | |
| 37 | - const URL_PREFIX = 'module.php?mod=myartjaub_certificates&mod_action=Certificate&cid='; |
|
| 37 | + const URL_PREFIX = 'module.php?mod=myartjaub_certificates&mod_action=Certificate&cid='; |
|
| 38 | 38 | |
| 39 | 39 | /** @var string The "TITL" value from the GEDCOM |
| 40 | 40 | * This is a tweak to overcome the private level from the parent object... |
@@ -94,8 +94,8 @@ discard block |
||
| 94 | 94 | |
| 95 | 95 | $match = null; |
| 96 | 96 | $ct = preg_match("/(?<year>\d{1,4})(\.(?<month>\d{1,2}))?(\.(?<day>\d{1,2}))?( (?<type>[A-Z]{1,2}) )?(?<details>.*)/", $this->title, $match); |
| 97 | - if($ct > 0){ |
|
| 98 | - $monthId = (int) $match['month']; |
|
| 97 | + if ($ct > 0) { |
|
| 98 | + $monthId = (int)$match['month']; |
|
| 99 | 99 | $calendarShortMonths = Functions::getCalendarShortMonths(); |
| 100 | 100 | $monthShortName = array_key_exists($monthId, $calendarShortMonths) ? $calendarShortMonths[$monthId] : $monthId; |
| 101 | 101 | $this->certDate = new Date($match['day'].' '.strtoupper($monthShortName).' '.$match['year']); |
@@ -111,11 +111,11 @@ discard block |
||
| 111 | 111 | * @see \Fisharebest\Webtrees\GedcomRecord::getInstance() |
| 112 | 112 | */ |
| 113 | 113 | static public function getInstance($xref, Tree $tree, $gedcom = null, CertificateProviderInterface $provider = null) { |
| 114 | - try{ |
|
| 114 | + try { |
|
| 115 | 115 | $certfile = Functions::decryptFromSafeBase64($xref); |
| 116 | 116 | |
| 117 | 117 | //NEED TO CHECK THAT !!! |
| 118 | - if(Functions::isValidPath($certfile, true)) { |
|
| 118 | + if (Functions::isValidPath($certfile, true)) { |
|
| 119 | 119 | return new Certificate($certfile, $tree, $provider); |
| 120 | 120 | } |
| 121 | 121 | } |
@@ -152,8 +152,8 @@ discard block |
||
| 152 | 152 | * |
| 153 | 153 | * @param string|Source $xref |
| 154 | 154 | */ |
| 155 | - public function setSource($xref){ |
|
| 156 | - if($xref instanceof Source){ |
|
| 155 | + public function setSource($xref) { |
|
| 156 | + if ($xref instanceof Source) { |
|
| 157 | 157 | $this->source = $xref; |
| 158 | 158 | } else { |
| 159 | 159 | $this->source = Source::getInstance($xref, $this->tree); |
@@ -173,7 +173,7 @@ discard block |
||
| 173 | 173 | * |
| 174 | 174 | * @return Date Certificate date |
| 175 | 175 | */ |
| 176 | - public function getCertificateDate(){ |
|
| 176 | + public function getCertificateDate() { |
|
| 177 | 177 | return $this->certDate; |
| 178 | 178 | } |
| 179 | 179 | |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | * |
| 183 | 183 | * @return string Certificate date |
| 184 | 184 | */ |
| 185 | - public function getCertificateType(){ |
|
| 185 | + public function getCertificateType() { |
|
| 186 | 186 | return $this->certType; |
| 187 | 187 | } |
| 188 | 188 | |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | * |
| 192 | 192 | * @return string Certificate details |
| 193 | 193 | */ |
| 194 | - public function getCertificateDetails(){ |
|
| 194 | + public function getCertificateDetails() { |
|
| 195 | 195 | return $this->certDetails; |
| 196 | 196 | } |
| 197 | 197 | |
@@ -200,9 +200,9 @@ discard block |
||
| 200 | 200 | * |
| 201 | 201 | * @return string|NULL Certificate city |
| 202 | 202 | */ |
| 203 | - public function getCity(){ |
|
| 203 | + public function getCity() { |
|
| 204 | 204 | $chunks = explode('/', $this->getFilename(), 2); |
| 205 | - if(count($chunks) > 1) return $chunks[0]; |
|
| 205 | + if (count($chunks) > 1) return $chunks[0]; |
|
| 206 | 206 | return null; |
| 207 | 207 | } |
| 208 | 208 | |
@@ -210,8 +210,8 @@ discard block |
||
| 210 | 210 | * {@inhericDoc} |
| 211 | 211 | * @see \Fisharebest\Webtrees\Media::getServerFilename() |
| 212 | 212 | */ |
| 213 | - public function getServerFilename($which='main') { |
|
| 214 | - $filename = $this->provider->getRealCertificatesDirectory() . $this->getFilename(); |
|
| 213 | + public function getServerFilename($which = 'main') { |
|
| 214 | + $filename = $this->provider->getRealCertificatesDirectory().$this->getFilename(); |
|
| 215 | 215 | return Functions::encodeUtf8ToFileSystem($filename); |
| 216 | 216 | } |
| 217 | 217 | |
@@ -222,11 +222,11 @@ discard block |
||
| 222 | 222 | public function getHtmlUrlDirect($which = 'main', $download = false) { |
| 223 | 223 | $sidstr = ($this->source) ? '&sid='.$this->source->getXref() : ''; |
| 224 | 224 | return |
| 225 | - 'module.php?mod='. \MyArtJaub\Webtrees\Constants::MODULE_MAJ_CERTIF_NAME . |
|
| 226 | - '&mod_action=Certificate@image' . |
|
| 227 | - '&ged='. $this->tree->getNameUrl() . |
|
| 228 | - '&cid=' . $this->getXref() . $sidstr . |
|
| 229 | - '&cb=' . $this->getEtag($which); |
|
| 225 | + 'module.php?mod='.\MyArtJaub\Webtrees\Constants::MODULE_MAJ_CERTIF_NAME. |
|
| 226 | + '&mod_action=Certificate@image'. |
|
| 227 | + '&ged='.$this->tree->getNameUrl(). |
|
| 228 | + '&cid='.$this->getXref().$sidstr. |
|
| 229 | + '&cb='.$this->getEtag($which); |
|
| 230 | 230 | } |
| 231 | 231 | |
| 232 | 232 | /** |
@@ -237,26 +237,26 @@ discard block |
||
| 237 | 237 | * |
| 238 | 238 | * @return string Watermark text |
| 239 | 239 | */ |
| 240 | - public function getWatermarkText(){ |
|
| 240 | + public function getWatermarkText() { |
|
| 241 | 241 | $module = Module::getModuleByName(Constants::MODULE_MAJ_CERTIF_NAME); |
| 242 | 242 | |
| 243 | - if($module) { |
|
| 243 | + if ($module) { |
|
| 244 | 244 | $wmtext = $module->getSetting('MAJ_WM_DEFAULT', I18N::translate('This image is protected under copyright law.')); |
| 245 | - $sid= Filter::get('sid', WT_REGEX_XREF); |
|
| 245 | + $sid = Filter::get('sid', WT_REGEX_XREF); |
|
| 246 | 246 | |
| 247 | - if($sid){ |
|
| 247 | + if ($sid) { |
|
| 248 | 248 | $this->source = Source::getInstance($sid, $this->tree); |
| 249 | 249 | } |
| 250 | - else{ |
|
| 251 | - $this->fetchALinkedSource(); // the method already attach the source to the Certificate object; |
|
| 250 | + else { |
|
| 251 | + $this->fetchALinkedSource(); // the method already attach the source to the Certificate object; |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | - if($this->source) { |
|
| 254 | + if ($this->source) { |
|
| 255 | 255 | $wmtext = '©'; |
| 256 | 256 | $repofact = $this->source->getFirstFact('REPO'); |
| 257 | - if($repofact) { |
|
| 257 | + if ($repofact) { |
|
| 258 | 258 | $repo = $repofact->getTarget(); |
| 259 | - if($repo && $repo instanceof Repository) $wmtext .= ' '.$repo->getFullName().' - '; |
|
| 259 | + if ($repo && $repo instanceof Repository) $wmtext .= ' '.$repo->getFullName().' - '; |
|
| 260 | 260 | } |
| 261 | 261 | $wmtext .= $this->source->getFullName(); |
| 262 | 262 | } |
@@ -279,45 +279,45 @@ discard block |
||
| 279 | 279 | '; |
| 280 | 280 | |
| 281 | 281 | $script = ''; |
| 282 | - if($controller && !($controller instanceof IndividualController)){ |
|
| 282 | + if ($controller && !($controller instanceof IndividualController)) { |
|
| 283 | 283 | $controller->addInlineJavascript('$(document).ready(function() { '.$js.' });'); |
| 284 | 284 | } else { |
| 285 | - $script = '<script>' . $js . '</script>'; |
|
| 285 | + $script = '<script>'.$js.'</script>'; |
|
| 286 | 286 | } |
| 287 | 287 | |
| 288 | 288 | if ($which == 'icon' || !file_exists($this->getServerFilename())) { |
| 289 | 289 | // Use an icon |
| 290 | 290 | $image = |
| 291 | - '<i dir="auto" class="icon-maj-certificate margin-h-2"' . |
|
| 292 | - ' title="' . strip_tags($this->getFullName()) . '"' . |
|
| 291 | + '<i dir="auto" class="icon-maj-certificate margin-h-2"'. |
|
| 292 | + ' title="'.strip_tags($this->getFullName()).'"'. |
|
| 293 | 293 | '></i>'; |
| 294 | 294 | } else { |
| 295 | 295 | $imgsize = getimagesize($this->getServerFilename()); |
| 296 | 296 | $image = |
| 297 | - '<img' . |
|
| 298 | - ' class ="'. 'certif_image' . '"' . |
|
| 299 | - ' dir="' . 'auto' . '"' . // For the tool-tip |
|
| 300 | - ' src="' . $this->getHtmlUrlDirect() . '"' . |
|
| 301 | - ' alt="' . strip_tags($this->getFullName()) . '"' . |
|
| 302 | - ' title="' . strip_tags($this->getFullName()) . '"' . |
|
| 303 | - $imgsize[3] . // height="yyy" width="xxx" |
|
| 297 | + '<img'. |
|
| 298 | + ' class ="'.'certif_image'.'"'. |
|
| 299 | + ' dir="'.'auto'.'"'.// For the tool-tip |
|
| 300 | + ' src="'.$this->getHtmlUrlDirect().'"'. |
|
| 301 | + ' alt="'.strip_tags($this->getFullName()).'"'. |
|
| 302 | + ' title="'.strip_tags($this->getFullName()).'"'. |
|
| 303 | + $imgsize[3].// height="yyy" width="xxx" |
|
| 304 | 304 | '>'; |
| 305 | 305 | } |
| 306 | 306 | return |
| 307 | - '<a' . |
|
| 308 | - ' class="' . 'certgallery' . '"' . |
|
| 309 | - ' href="' . $this->getHtmlUrlDirect() . '"' . |
|
| 310 | - ' type="' . $this->mimeType() . '"' . |
|
| 311 | - ' data-obje-url="' . $this->getHtmlUrl() . '"' . |
|
| 312 | - ' data-title="' . strip_tags($this->getFullName()) . '"' . |
|
| 313 | - '>' . $image . '</a>'.$script; |
|
| 307 | + '<a'. |
|
| 308 | + ' class="'.'certgallery'.'"'. |
|
| 309 | + ' href="'.$this->getHtmlUrlDirect().'"'. |
|
| 310 | + ' type="'.$this->mimeType().'"'. |
|
| 311 | + ' data-obje-url="'.$this->getHtmlUrl().'"'. |
|
| 312 | + ' data-title="'.strip_tags($this->getFullName()).'"'. |
|
| 313 | + '>'.$image.'</a>'.$script; |
|
| 314 | 314 | } |
| 315 | 315 | |
| 316 | 316 | /** |
| 317 | 317 | * {@inhericDoc} |
| 318 | 318 | * @see \Fisharebest\Webtrees\GedcomRecord::linkedIndividuals() |
| 319 | 319 | */ |
| 320 | - public function linkedIndividuals($link = '_ACT'){ |
|
| 320 | + public function linkedIndividuals($link = '_ACT') { |
|
| 321 | 321 | $rows = Database::prepare( |
| 322 | 322 | 'SELECT i_id AS xref, i_gedcom AS gedcom'. |
| 323 | 323 | ' FROM `##individuals`'. |
@@ -341,7 +341,7 @@ discard block |
||
| 341 | 341 | * {@inhericDoc} |
| 342 | 342 | * @see \Fisharebest\Webtrees\GedcomRecord::linkedFamilies() |
| 343 | 343 | */ |
| 344 | - public function linkedFamilies($link = '_ACT'){ |
|
| 344 | + public function linkedFamilies($link = '_ACT') { |
|
| 345 | 345 | $rows = Database::prepare( |
| 346 | 346 | 'SELECT f_id AS xref, f_gedcom AS gedcom'. |
| 347 | 347 | ' FROM `##families`'. |
@@ -366,7 +366,7 @@ discard block |
||
| 366 | 366 | * |
| 367 | 367 | * @return Source|NULL Linked source |
| 368 | 368 | */ |
| 369 | - public function fetchALinkedSource(){ |
|
| 369 | + public function fetchALinkedSource() { |
|
| 370 | 370 | $sid = null; |
| 371 | 371 | |
| 372 | 372 | // Try to find in individual, then families, then other types of records. We are interested in the first available value. |
@@ -378,7 +378,7 @@ discard block |
||
| 378 | 378 | 'gedcom_id' => $this->tree->getTreeId(), |
| 379 | 379 | 'gedcom' => '%_ACT '.$this->getFilename().'%' |
| 380 | 380 | ))->fetchOne(); |
| 381 | - if(!$ged){ |
|
| 381 | + if (!$ged) { |
|
| 382 | 382 | $ged = Database::prepare( |
| 383 | 383 | 'SELECT f_gedcom AS gedrec FROM `##families`'. |
| 384 | 384 | ' WHERE f_file=:gedcom_id AND f_gedcom LIKE :gedcom') |
@@ -386,7 +386,7 @@ discard block |
||
| 386 | 386 | 'gedcom_id' => $this->tree->getTreeId(), |
| 387 | 387 | 'gedcom' => '%_ACT '.$this->getFilename().'%' |
| 388 | 388 | ))->fetchOne(); |
| 389 | - if(!$ged){ |
|
| 389 | + if (!$ged) { |
|
| 390 | 390 | $ged = Database::prepare( |
| 391 | 391 | 'SELECT o_gedcom AS gedrec FROM `##other`'. |
| 392 | 392 | ' WHERE o_file=:gedcom_id AND o_gedcom LIKE :gedcom') |
@@ -397,19 +397,19 @@ discard block |
||
| 397 | 397 | } |
| 398 | 398 | } |
| 399 | 399 | //If a record has been found, parse it to find the source reference. |
| 400 | - if($ged){ |
|
| 400 | + if ($ged) { |
|
| 401 | 401 | $gedlines = explode("\n", $ged); |
| 402 | 402 | $level = 0; |
| 403 | 403 | $levelsource = -1; |
| 404 | - $sid_tmp=null; |
|
| 404 | + $sid_tmp = null; |
|
| 405 | 405 | $sourcefound = false; |
| 406 | - foreach($gedlines as $gedline){ |
|
| 406 | + foreach ($gedlines as $gedline) { |
|
| 407 | 407 | // Get the level |
| 408 | 408 | $match = null; |
| 409 | 409 | if (!$sourcefound && preg_match('~^('.WT_REGEX_INTEGER.') ~', $gedline, $match)) { |
| 410 | 410 | $level = $match[1]; |
| 411 | 411 | //If we are not any more within the context of a source, reset |
| 412 | - if($level <= $levelsource){ |
|
| 412 | + if ($level <= $levelsource) { |
|
| 413 | 413 | $levelsource = -1; |
| 414 | 414 | $sid_tmp = null; |
| 415 | 415 | } |
@@ -417,11 +417,11 @@ discard block |
||
| 417 | 417 | $match2 = null; |
| 418 | 418 | if (preg_match('~^'.$level.' SOUR @('.WT_REGEX_XREF.')@$~', $gedline, $match2)) { |
| 419 | 419 | $levelsource = $level; |
| 420 | - $sid_tmp=$match2[1]; |
|
| 420 | + $sid_tmp = $match2[1]; |
|
| 421 | 421 | } |
| 422 | 422 | // If the image has be found, get the source reference and exit. |
| 423 | 423 | $match3 = null; |
| 424 | - if($levelsource>=0 && $sid_tmp && preg_match('~^'.$level.' _ACT '.preg_quote($this->getFilename()).'~', $gedline, $match3)){ |
|
| 424 | + if ($levelsource >= 0 && $sid_tmp && preg_match('~^'.$level.' _ACT '.preg_quote($this->getFilename()).'~', $gedline, $match3)) { |
|
| 425 | 425 | $sid = $sid_tmp; |
| 426 | 426 | $sourcefound = true; |
| 427 | 427 | } |
@@ -429,7 +429,7 @@ discard block |
||
| 429 | 429 | } |
| 430 | 430 | } |
| 431 | 431 | |
| 432 | - if($sid) $this->source = Source::getInstance($sid, $this->tree); |
|
| 432 | + if ($sid) $this->source = Source::getInstance($sid, $this->tree); |
|
| 433 | 433 | |
| 434 | 434 | return $this->source; |
| 435 | 435 | } |
@@ -252,7 +252,7 @@ |
||
| 252 | 252 | /** |
| 253 | 253 | * Return the HTML code for custom simple tag _ACT |
| 254 | 254 | * |
| 255 | - * @param Certificate $certificatePath Certificate (as per the GEDCOM) |
|
| 255 | + * @param Certificate $certificate Certificate (as per the GEDCOM) |
|
| 256 | 256 | * @param string|null $sid Linked Source ID, if it exists |
| 257 | 257 | */ |
| 258 | 258 | protected function getDisplay_ACT(Certificate $certificate, $sid = null){ |
@@ -76,7 +76,7 @@ discard block |
||
| 76 | 76 | * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink() |
| 77 | 77 | */ |
| 78 | 78 | public function getConfigLink() { |
| 79 | - return 'module.php?mod=' . $this->getName() . '&mod_action=AdminConfig'; |
|
| 79 | + return 'module.php?mod='.$this->getName().'&mod_action=AdminConfig'; |
|
| 80 | 80 | } |
| 81 | 81 | |
| 82 | 82 | /** |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | */ |
| 102 | 102 | public function getMenu(Tree $tree, $reference = null) { |
| 103 | 103 | $tree_url = $tree ? $tree->getNameUrl() : ''; |
| 104 | - return new Menu($this->getTitle(), 'module.php?mod=' . $this->getName() . '&mod_action=Certificate@listAll&ged=' . $tree_url, 'menu-maj-list-certificate', array('rel' => 'nofollow')); |
|
| 104 | + return new Menu($this->getTitle(), 'module.php?mod='.$this->getName().'&mod_action=Certificate@listAll&ged='.$tree_url, 'menu-maj-list-certificate', array('rel' => 'nofollow')); |
|
| 105 | 105 | } |
| 106 | 106 | |
| 107 | 107 | /** |
@@ -111,10 +111,10 @@ discard block |
||
| 111 | 111 | public function hFactSourcePrepend($srec) { |
| 112 | 112 | global $WT_TREE; |
| 113 | 113 | |
| 114 | - $html=''; |
|
| 115 | - $sid=null; |
|
| 114 | + $html = ''; |
|
| 115 | + $sid = null; |
|
| 116 | 116 | |
| 117 | - if($this->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($WT_TREE)){ |
|
| 117 | + if ($this->getSetting('MAJ_SHOW_CERT', Auth::PRIV_HIDE) >= Auth::accessLevel($WT_TREE)) { |
|
| 118 | 118 | if (!$srec || strlen($srec) == 0) return $html; |
| 119 | 119 | |
| 120 | 120 | $certificate = null; |
@@ -122,17 +122,17 @@ discard block |
||
| 122 | 122 | $levelSOUR = substr($subrecords[0], 0, 1); |
| 123 | 123 | $match = null; |
| 124 | 124 | if (preg_match('~^'.$levelSOUR.' SOUR @('.WT_REGEX_XREF.')@$~', $subrecords[0], $match)) { |
| 125 | - $sid=$match[1]; |
|
| 125 | + $sid = $match[1]; |
|
| 126 | 126 | }; |
| 127 | 127 | $nb_subrecords = count($subrecords); |
| 128 | - for ($i=0; $i < $nb_subrecords; $i++) { |
|
| 128 | + for ($i = 0; $i < $nb_subrecords; $i++) { |
|
| 129 | 129 | $subrecords[$i] = trim($subrecords[$i]); |
| 130 | 130 | $tag = substr($subrecords[$i], 2, 4); |
| 131 | 131 | $text = substr($subrecords[$i], 7); |
| 132 | - if($tag == '_ACT') $certificate= new Certificate($text, $WT_TREE, $this->getProvider()); |
|
| 132 | + if ($tag == '_ACT') $certificate = new Certificate($text, $WT_TREE, $this->getProvider()); |
|
| 133 | 133 | } |
| 134 | 134 | |
| 135 | - if($certificate && $certificate->canShow()) |
|
| 135 | + if ($certificate && $certificate->canShow()) |
|
| 136 | 136 | $html = $this->getDisplay_ACT($certificate, $sid); |
| 137 | 137 | |
| 138 | 138 | } |
@@ -159,9 +159,9 @@ discard block |
||
| 159 | 159 | */ |
| 160 | 160 | public function hHtmlSimpleTagDisplay($tag, $value, $context = null, $contextid = null) { |
| 161 | 161 | $html = ''; |
| 162 | - switch($tag){ |
|
| 162 | + switch ($tag) { |
|
| 163 | 163 | case '_ACT': |
| 164 | - if($context == 'SOUR') $html = $this->getDisplay_ACT($value, $contextid); |
|
| 164 | + if ($context == 'SOUR') $html = $this->getDisplay_ACT($value, $contextid); |
|
| 165 | 165 | break; |
| 166 | 166 | } |
| 167 | 167 | return $html; |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | |
| 177 | 177 | $html = ''; |
| 178 | 178 | |
| 179 | - switch($tag){ |
|
| 179 | + switch ($tag) { |
|
| 180 | 180 | case '_ACT': |
| 181 | 181 | $element_id = Uuid::uuid4(); |
| 182 | 182 | $controller |
@@ -184,14 +184,14 @@ discard block |
||
| 184 | 184 | ->addExternalJavascript(WT_STATIC_URL.WT_MODULES_DIR.$this->getName().'/js/autocomplete.js') |
| 185 | 185 | ->addExternalJavascript(WT_STATIC_URL.WT_MODULES_DIR.$this->getName().'/js/updatecertificatevalues.js'); |
| 186 | 186 | $certificate = null; |
| 187 | - if($value){ |
|
| 187 | + if ($value) { |
|
| 188 | 188 | $certificate = new Certificate($value, $WT_TREE, $this->getProvider()); |
| 189 | 189 | } |
| 190 | 190 | $tabCities = $this->getProvider()->getCitiesList(); |
| 191 | 191 | $html .= '<select id="certifCity'.$element_id.'" class="_CITY">'; |
| 192 | - foreach ($tabCities as $cities){ |
|
| 193 | - $selectedCity=''; |
|
| 194 | - if($certificate && $cities== $certificate->getCity()) $selectedCity='selected="true"'; |
|
| 192 | + foreach ($tabCities as $cities) { |
|
| 193 | + $selectedCity = ''; |
|
| 194 | + if ($certificate && $cities == $certificate->getCity()) $selectedCity = 'selected="true"'; |
|
| 195 | 195 | $html .= '<option value="'.$cities.'" '.$selectedCity.' />'.$cities.'</option>'; |
| 196 | 196 | } |
| 197 | 197 | $html .= '</select>'; |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hAddSimpleTag() |
| 210 | 210 | */ |
| 211 | 211 | public function hAddSimpleTag($context, $level) { |
| 212 | - switch($context){ |
|
| 212 | + switch ($context) { |
|
| 213 | 213 | case 'SOUR': |
| 214 | 214 | FunctionsEdit::addSimpleTag($level.' _ACT'); |
| 215 | 215 | break; |
@@ -221,7 +221,7 @@ discard block |
||
| 221 | 221 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hHasHelpTextTag() |
| 222 | 222 | */ |
| 223 | 223 | public function hHasHelpTextTag($tag) { |
| 224 | - switch($tag){ |
|
| 224 | + switch ($tag) { |
|
| 225 | 225 | case '_ACT': |
| 226 | 226 | return true; |
| 227 | 227 | } |
@@ -233,7 +233,7 @@ discard block |
||
| 233 | 233 | * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hGetHelpTextTag() |
| 234 | 234 | */ |
| 235 | 235 | public function hGetHelpTextTag($tag) { |
| 236 | - switch($tag){ |
|
| 236 | + switch ($tag) { |
|
| 237 | 237 | case '_ACT': |
| 238 | 238 | return array( |
| 239 | 239 | I18N::translate('Certificate'), |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | public function getProvider() { |
| 252 | 252 | global $WT_TREE; |
| 253 | 253 | |
| 254 | - if(!$this->provider) { |
|
| 254 | + if (!$this->provider) { |
|
| 255 | 255 | $root_path = $this->getSetting('MAJ_CERT_ROOTDIR', 'certificates/'); |
| 256 | 256 | $this->provider = new CertificateFileProvider($root_path, $WT_TREE); |
| 257 | 257 | } |
@@ -265,9 +265,9 @@ discard block |
||
| 265 | 265 | * @param Certificate $certificatePath Certificate (as per the GEDCOM) |
| 266 | 266 | * @param string|null $sid Linked Source ID, if it exists |
| 267 | 267 | */ |
| 268 | - protected function getDisplay_ACT(Certificate $certificate, $sid = null){ |
|
| 268 | + protected function getDisplay_ACT(Certificate $certificate, $sid = null) { |
|
| 269 | 269 | $html = ''; |
| 270 | - if($certificate){ |
|
| 270 | + if ($certificate) { |
|
| 271 | 271 | $certificate->setSource($sid); |
| 272 | 272 | $html = $certificate->displayImage('icon'); |
| 273 | 273 | } |
@@ -42,7 +42,6 @@ |
||
| 42 | 42 | * Get all the data from the bag for a given key. |
| 43 | 43 | * |
| 44 | 44 | * @param string $key |
| 45 | - * @param string $format |
|
| 46 | 45 | * @return unknown |
| 47 | 46 | */ |
| 48 | 47 | public function get($key, $default = null) |
@@ -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 | } |
@@ -61,7 +61,7 @@ |
||
| 61 | 61 | * @return string $WT_RAPHAEL_JS_URL |
| 62 | 62 | */ |
| 63 | 63 | public static function WT_RAPHAEL_JS_URL() { |
| 64 | - return WT_STATIC_URL . 'packages/raphael-2.1.4/raphael-min.js'; |
|
| 64 | + return WT_STATIC_URL.'packages/raphael-2.1.4/raphael-min.js'; |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | } |
| 68 | 68 | \ No newline at end of file |