Completed
Push — master ( 960061...3603f5 )
by Jonathan
01:43
created
src/Webtrees/Module/Certificates/AdminConfigController.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -34,39 +34,39 @@  discard block
 block discarded – undo
34 34
      */
35 35
     protected function update() {
36 36
         
37
-        if(Auth::isAdmin()){
37
+        if (Auth::isAdmin()) {
38 38
             
39 39
             $this->module->setSetting('MAJ_SHOW_CERT', Filter::post('MAJ_SHOW_CERT'));
40 40
             $this->module->setSetting('MAJ_SHOW_NO_WATERMARK', Filter::post('MAJ_SHOW_NO_WATERMARK'));
41 41
             
42
-            if($MAJ_WM_DEFAULT = Filter::post('MAJ_WM_DEFAULT')) {
42
+            if ($MAJ_WM_DEFAULT = Filter::post('MAJ_WM_DEFAULT')) {
43 43
                 $this->module->setSetting('MAJ_WM_DEFAULT', $MAJ_WM_DEFAULT);
44 44
             }
45 45
             
46
-            if($MAJ_WM_FONT_MAXSIZE = Filter::postInteger('MAJ_WM_FONT_MAXSIZE')) {
46
+            if ($MAJ_WM_FONT_MAXSIZE = Filter::postInteger('MAJ_WM_FONT_MAXSIZE')) {
47 47
                 $this->module->setSetting('MAJ_WM_FONT_MAXSIZE', $MAJ_WM_FONT_MAXSIZE);
48 48
             }
49 49
             
50 50
             // Only accept valid color for MAJ_WM_FONT_COLOR
51 51
             $MAJ_WM_FONT_COLOR = Filter::post('MAJ_WM_FONT_COLOR', '#([a-fA-F0-9]{3}){1,2}');            
52
-            if($MAJ_WM_FONT_COLOR) {
52
+            if ($MAJ_WM_FONT_COLOR) {
53 53
                 $this->module->setSetting('MAJ_WM_FONT_COLOR', $MAJ_WM_FONT_COLOR);
54 54
             }
55 55
             
56 56
             // Only accept valid folders for MAJ_CERT_ROOTDIR
57
-            $MAJ_CERT_ROOTDIR = preg_replace('/[\/\\\\]+/', '/', Filter::post('MAJ_CERT_ROOTDIR') . '/');
57
+            $MAJ_CERT_ROOTDIR = preg_replace('/[\/\\\\]+/', '/', Filter::post('MAJ_CERT_ROOTDIR').'/');
58 58
             if (substr($MAJ_CERT_ROOTDIR, 0, 1) === '/') {
59 59
                 $MAJ_CERT_ROOTDIR = substr($MAJ_CERT_ROOTDIR, 1);
60 60
             }
61 61
             
62 62
             if ($MAJ_CERT_ROOTDIR) {
63
-                if (is_dir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) {
63
+                if (is_dir(WT_DATA_DIR.$MAJ_CERT_ROOTDIR)) {
64 64
                     $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR);
65
-                } elseif (File::mkdir(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)) {
65
+                } elseif (File::mkdir(WT_DATA_DIR.$MAJ_CERT_ROOTDIR)) {
66 66
                     $this->module->setSetting('MAJ_CERT_ROOTDIR', $MAJ_CERT_ROOTDIR);
67
-                    FlashMessages::addMessage(I18N::translate('The folder %s has been created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'info');
67
+                    FlashMessages::addMessage(I18N::translate('The folder %s has been created.', Html::filename(WT_DATA_DIR.$MAJ_CERT_ROOTDIR)), 'info');
68 68
                 } else {
69
-                    FlashMessages::addMessage(I18N::translate('The folder %s does not exist, and it could not be created.', Html::filename(WT_DATA_DIR . $MAJ_CERT_ROOTDIR)), 'danger');
69
+                    FlashMessages::addMessage(I18N::translate('The folder %s does not exist, and it could not be created.', Html::filename(WT_DATA_DIR.$MAJ_CERT_ROOTDIR)), 'danger');
70 70
                 }
71 71
             }
72 72
             
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public function index() {        
87 87
         $action = Filter::post('action');        
88
-        if($action == 'update' && Filter::checkCsrf()) $this->update();
88
+        if ($action == 'update' && Filter::checkCsrf()) $this->update();
89 89
         
90 90
         Theme::theme(new AdministrationTheme)->init(Globals::getTree());        
91 91
         $ctrl = new PageController();
Please login to merge, or discard this patch.
src/Webtrees/Module/Certificates/Model/Certificate.php 1 patch
Spacing   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
  */
36 36
 class Certificate extends Media {
37 37
     
38
-    const URL_PREFIX  = 'module.php?mod=myartjaub_certificates&mod_action=Certificate&cid=';
38
+    const URL_PREFIX = 'module.php?mod=myartjaub_certificates&mod_action=Certificate&cid=';
39 39
 		
40 40
     /** @var string The "TITL" value from the GEDCOM 
41 41
      * This is a tweak to overcome the private level from the parent object...
@@ -95,8 +95,8 @@  discard block
 block discarded – undo
95 95
 		
96 96
 		$match = null;
97 97
 		$ct = preg_match("/(?<year>\d{1,4})(\.(?<month>\d{1,2}))?(\.(?<day>\d{1,2}))?( (?<type>[A-Z]{1,2}) )?(?<details>.*)/", $this->title, $match);
98
-		if($ct > 0){
99
-			$monthId = (int) $match['month'];
98
+		if ($ct > 0) {
99
+			$monthId = (int)$match['month'];
100 100
 			$calendarShortMonths = Functions::getCalendarShortMonths();
101 101
 			$monthShortName = array_key_exists($monthId, $calendarShortMonths) ? $calendarShortMonths[$monthId] : $monthId;
102 102
 			$this->certDate = new Date($match['day'].' '.strtoupper($monthShortName).' '.$match['year']);
@@ -112,11 +112,11 @@  discard block
 block discarded – undo
112 112
 	 * @see \Fisharebest\Webtrees\GedcomRecord::getInstance()
113 113
 	 */	
114 114
 	static public function getInstance($xref, Tree $tree, $gedcom = null, CertificateProviderInterface $provider = null) {
115
-		try{
115
+		try {
116 116
 			$certfile = Functions::decryptFromSafeBase64($xref);
117 117
 			
118 118
 			//NEED TO CHECK THAT !!!
119
-			if(Functions::isValidPath($certfile, true)) {
119
+			if (Functions::isValidPath($certfile, true)) {
120 120
 				return new Certificate($certfile, $tree, $provider);
121 121
 			}
122 122
 		}
@@ -153,8 +153,8 @@  discard block
 block discarded – undo
153 153
 	 *
154 154
 	 * @param string|Source $xref
155 155
 	 */
156
-	public function setSource($xref){
157
-		if($xref instanceof Source){
156
+	public function setSource($xref) {
157
+		if ($xref instanceof Source) {
158 158
 			$this->source = $xref;
159 159
 		} else {
160 160
 			$this->source = Source::getInstance($xref, $this->tree);
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 	 *
175 175
 	 * @return Date Certificate date
176 176
 	 */
177
-	public function getCertificateDate(){
177
+	public function getCertificateDate() {
178 178
 		return $this->certDate;
179 179
 	}
180 180
 	
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 *
184 184
 	 * @return string Certificate date
185 185
 	 */
186
-	public function getCertificateType(){
186
+	public function getCertificateType() {
187 187
 		return $this->certType;
188 188
 	}
189 189
 	
@@ -192,7 +192,7 @@  discard block
 block discarded – undo
192 192
 	 *
193 193
 	 * @return string Certificate details
194 194
 	 */
195
-	public function getCertificateDetails(){
195
+	public function getCertificateDetails() {
196 196
 		return $this->certDetails;
197 197
 	}
198 198
 	
@@ -201,9 +201,9 @@  discard block
 block discarded – undo
201 201
 	 *
202 202
 	 * @return string|NULL Certificate city
203 203
 	 */
204
-	public function getCity(){
204
+	public function getCity() {
205 205
 		$chunks = explode('/', $this->getFilename(), 2);
206
-		if(count($chunks) > 1) return $chunks[0];
206
+		if (count($chunks) > 1) return $chunks[0];
207 207
 		return null;
208 208
 	}
209 209
 	
@@ -211,8 +211,8 @@  discard block
 block discarded – undo
211 211
 	 * {@inhericDoc}
212 212
 	 * @see \Fisharebest\Webtrees\Media::getServerFilename()
213 213
 	 */
214
-	public function getServerFilename($which='main') {
215
-		$filename =  $this->provider->getRealCertificatesDirectory() . $this->getFilename();
214
+	public function getServerFilename($which = 'main') {
215
+		$filename = $this->provider->getRealCertificatesDirectory().$this->getFilename();
216 216
 		return Functions::encodeUtf8ToFileSystem($filename);
217 217
 	}
218 218
 	
@@ -223,11 +223,11 @@  discard block
 block discarded – undo
223 223
 	public function getHtmlUrlDirect($which = 'main', $download = false) {
224 224
 		$sidstr = ($this->source) ? '&sid='.$this->source->getXref() : '';
225 225
 		return
226
-			'module.php?mod='. \MyArtJaub\Webtrees\Constants::MODULE_MAJ_CERTIF_NAME . 
227
-			'&mod_action=Certificate@image' . 
228
-			'&ged='. $this->tree->getNameUrl() .
229
-			'&cid=' . $this->getXref() . $sidstr .
230
-			'&cb=' . $this->getEtag($which);
226
+			'module.php?mod='.\MyArtJaub\Webtrees\Constants::MODULE_MAJ_CERTIF_NAME. 
227
+			'&mod_action=Certificate@image'. 
228
+			'&ged='.$this->tree->getNameUrl().
229
+			'&cid='.$this->getXref().$sidstr.
230
+			'&cb='.$this->getEtag($which);
231 231
 	}
232 232
 	
233 233
 	/**
@@ -238,26 +238,26 @@  discard block
 block discarded – undo
238 238
 	 *
239 239
 	 * @return string Watermark text
240 240
 	 */
241
-	 public function getWatermarkText(){	
241
+	 public function getWatermarkText() {	
242 242
 	 	$module = Module::getModuleByName(Constants::MODULE_MAJ_CERTIF_NAME);
243 243
 	 	
244
-	 	if($module) {
244
+	 	if ($module) {
245 245
     		$wmtext = $module->getSetting('MAJ_WM_DEFAULT', I18N::translate('This image is protected under copyright law.'));
246
-    		$sid= Filter::get('sid', WT_REGEX_XREF);	
246
+    		$sid = Filter::get('sid', WT_REGEX_XREF);	
247 247
     	
248
-    		if($sid){
248
+    		if ($sid) {
249 249
     			$this->source = Source::getInstance($sid, $this->tree);
250 250
     		}
251
-    		else{
252
-    			$this->fetchALinkedSource();  // the method already attach the source to the Certificate object;
251
+    		else {
252
+    			$this->fetchALinkedSource(); // the method already attach the source to the Certificate object;
253 253
     		}
254 254
     		
255
-    		if($this->source) {
255
+    		if ($this->source) {
256 256
     			$wmtext = '&copy;';
257 257
     			$repofact = $this->source->getFirstFact('REPO');
258
-    			if($repofact) {
258
+    			if ($repofact) {
259 259
     				$repo = $repofact->getTarget();
260
-    				if($repo && $repo instanceof Repository)  $wmtext .= ' '.$repo->getFullName().' - ';
260
+    				if ($repo && $repo instanceof Repository)  $wmtext .= ' '.$repo->getFullName().' - ';
261 261
     			}
262 262
     			$wmtext .= $this->source->getFullName();			
263 263
     		}	
@@ -279,45 +279,45 @@  discard block
 block discarded – undo
279 279
 		
280 280
 		$script = '';
281 281
 		$controller = Globals::getController();
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.
src/Webtrees/Module/MiscExtensions/AdminConfigController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * Manage updates sent from the AdminConfig@index form.
32 32
      */
33 33
     protected function update() {    
34
-        if(Auth::isAdmin()){
34
+        if (Auth::isAdmin()) {
35 35
     
36 36
             $this->module->setSetting('MAJ_TITLE_PREFIX', Filter::post('MAJ_TITLE_PREFIX'));
37 37
             
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      */
62 62
     public function index() {
63 63
         $action = Filter::post('action');        
64
-        if($action == 'update' && Filter::checkCsrf()) $this->update();
64
+        if ($action == 'update' && Filter::checkCsrf()) $this->update();
65 65
         
66 66
         Theme::theme(new AdministrationTheme)->init(Globals::getTree());        
67 67
         $ctrl = new PageController();
Please login to merge, or discard this patch.
src/Webtrees/Module/CertificatesModule.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -77,7 +77,7 @@  discard block
 block discarded – undo
77 77
      * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink()
78 78
      */
79 79
     public function getConfigLink() {
80
-        return 'module.php?mod=' . $this->getName() . '&amp;mod_action=AdminConfig';
80
+        return 'module.php?mod='.$this->getName().'&amp;mod_action=AdminConfig';
81 81
     }
82 82
     
83 83
     /**
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
      */
103 103
     public function getMenu(Tree $tree, $reference = null) {
104 104
         $tree_url = $tree ? $tree->getNameUrl() : '';
105
-        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
+        return new Menu($this->getTitle(), 'module.php?mod='.$this->getName().'&mod_action=Certificate@listAll&ged='.$tree_url, 'menu-maj-list-certificate', array('rel' => 'nofollow'));
106 106
     }
107 107
     
108 108
     /**
@@ -111,10 +111,10 @@  discard block
 block discarded – undo
111 111
      */
112 112
     public function hFactSourcePrepend($srec) {
113 113
         $wt_tree = Globals::getTree();
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
 block discarded – undo
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
 block discarded – undo
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;
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
     public function hHtmlSimpleTagEditor($tag, $value = null, $element_id = '', $element_name = '', $context = null, $contextid = null) {        
175 175
         $html = '';
176 176
 		
177
-		switch($tag){
177
+		switch ($tag) {
178 178
 			case '_ACT':
179 179
 				$element_id = Uuid::uuid4();
180 180
 				Globals::getController()
@@ -182,14 +182,14 @@  discard block
 block discarded – undo
182 182
 					->addExternalJavascript(WT_STATIC_URL.WT_MODULES_DIR.$this->getName().'/js/autocomplete.js')
183 183
 					->addExternalJavascript(WT_STATIC_URL.WT_MODULES_DIR.$this->getName().'/js/updatecertificatevalues.js');
184 184
 				$certificate = null;
185
-				if($value){
185
+				if ($value) {
186 186
 					$certificate = new Certificate($value, Globals::getTree(), $this->getProvider());
187 187
 				}
188 188
 				$tabCities = $this->getProvider()->getCitiesList();
189 189
 				$html .= '<select id="certifCity'.$element_id.'" class="_CITY">';
190
-				foreach ($tabCities as $cities){
191
-					$selectedCity='';
192
-					if($certificate && $cities== $certificate->getCity()) $selectedCity='selected="true"';
190
+				foreach ($tabCities as $cities) {
191
+					$selectedCity = '';
192
+					if ($certificate && $cities == $certificate->getCity()) $selectedCity = 'selected="true"';
193 193
 					$html .= '<option value="'.$cities.'" '.$selectedCity.' />'.$cities.'</option>';
194 194
 				}
195 195
 				$html .= '</select>';
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hAddSimpleTag()
208 208
      */
209 209
     public function hAddSimpleTag($context, $level) {
210
-        switch($context){
210
+        switch ($context) {
211 211
             case 'SOUR':
212 212
                 FunctionsEdit::addSimpleTag($level.' _ACT');
213 213
                 break;
@@ -219,7 +219,7 @@  discard block
 block discarded – undo
219 219
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hHasHelpTextTag()
220 220
      */
221 221
     public function hHasHelpTextTag($tag) {
222
-        switch($tag){
222
+        switch ($tag) {
223 223
 			case '_ACT':
224 224
 				return true;
225 225
 		}
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\CustomSimpleTagManagerInterface::hGetHelpTextTag()
232 232
      */
233 233
     public function hGetHelpTextTag($tag) {
234
-        switch($tag){
234
+        switch ($tag) {
235 235
             case '_ACT':
236 236
                 return array(
237 237
                 I18N::translate('Certificate'),
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
      * @return \MyArtJaub\Webtrees\Module\Certificates\Model\CertificateProviderInterface
248 248
      */
249 249
     public function getProvider() {
250
-        if(!$this->provider) {
250
+        if (!$this->provider) {
251 251
             $root_path = $this->getSetting('MAJ_CERT_ROOTDIR', 'certificates/');
252 252
             $this->provider = new CertificateFileProvider($root_path, Globals::getTree());
253 253
         }
@@ -261,9 +261,9 @@  discard block
 block discarded – undo
261 261
      * @param Certificate $certificatePath Certificate (as per the GEDCOM)
262 262
      * @param string|null $sid Linked Source ID, if it exists
263 263
      */
264
-    protected function getDisplay_ACT(Certificate $certificate, $sid = null){    
264
+    protected function getDisplay_ACT(Certificate $certificate, $sid = null) {    
265 265
         $html = '';
266
-        if($certificate){
266
+        if ($certificate) {
267 267
             $certificate->setSource($sid);
268 268
             $html = $certificate->displayImage('icon');
269 269
         }
Please login to merge, or discard this patch.
src/Webtrees/Module/PatronymicLineage/LineageController.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -98,14 +98,14 @@  discard block
 block discarded – undo
98 98
             $this->show     = 'lineage'; // SURN list makes no sense here
99 99
         } elseif ($this->alpha) {
100 100
             $this->show_all = 'no';
101
-            $this->legend   = Filter::escapeHtml($this->alpha) . '…';
101
+            $this->legend   = Filter::escapeHtml($this->alpha).'…';
102 102
             $this->show     = Filter::get('show', 'surn|lineage', 'surn');
103 103
         } else {
104 104
             $this->show_all = 'no';
105 105
             $this->legend   = '…';
106 106
             $this->show     = 'none'; // Don't show lists until something is chosen
107 107
         }
108
-        $this->legend = '<span dir="auto">' . $this->legend . '</span>';
108
+        $this->legend = '<span dir="auto">'.$this->legend.'</span>';
109 109
           
110 110
     }
111 111
     
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function index() {
154 154
         $controller = new PageController();
155
-        $controller->setPageTitle(I18N::translate('Patronymic Lineages') . ' : ' . $this->legend);
155
+        $controller->setPageTitle(I18N::translate('Patronymic Lineages').' : '.$this->legend);
156 156
         
157 157
         $view_bag = new ViewBag();
158 158
         $view_bag->set('title', $controller->getPageTitle());
@@ -161,15 +161,15 @@  discard block
 block discarded – undo
161 161
         $view_bag->set('surname', $this->surname);
162 162
         $view_bag->set('legend', $this->legend);
163 163
         $view_bag->set('show_all', $this->show_all);
164
-        if($this->isShowingSurnames()) {
164
+        if ($this->isShowingSurnames()) {
165 165
             $view_bag->set('issurnames', true);
166 166
             $view_bag->set('surnameslist', $this->getSurnamesList());
167 167
         }
168
-        if($this->isShowingLineages()) {
168
+        if ($this->isShowingLineages()) {
169 169
             $view_bag->set('islineages', true);
170 170
             $view_bag->set('lineages', $this->getLineages());
171 171
 
172
-            if ($this->show_all==='no') {
172
+            if ($this->show_all === 'no') {
173 173
             	$view_bag->set('table_title', I18N::translate('Individuals in %s lineages', $this->legend));
174 174
             }
175 175
             else {
Please login to merge, or discard this patch.
src/Webtrees/Module/Sosa/SosaConfigController.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
         $user_id = Filter::postInteger('userid', -1) ?: Filter::getInteger('userid', -1);
40 40
         return Auth::check() && 
41 41
             ( 
42
-                $user_id == Auth::user()->getUserId() ||        // Allow update for yourself
42
+                $user_id == Auth::user()->getUserId() || // Allow update for yourself
43 43
                 ($user_id == -1 && Auth::isManager(Globals::getTree()))   // Allow a manager to update the default user
44 44
              );
45 45
     }
@@ -52,12 +52,12 @@  discard block
 block discarded – undo
52 52
      */
53 53
     protected function update(BaseController $controller) {
54 54
         $wt_tree = Globals::getTree();
55
-        if($this->canUpdate() && Filter::checkCsrf()) 
55
+        if ($this->canUpdate() && Filter::checkCsrf()) 
56 56
         {            
57 57
             $indi = Individual::getInstance(Filter::post('rootid'), $wt_tree);
58 58
             $user = User::find(Filter::postInteger('userid', -1));
59 59
             
60
-            if($user  && $indi) {
60
+            if ($user && $indi) {
61 61
                 $wt_tree->setUserPreference($user, 'MAJ_SOSA_ROOT_ID', $indi->getXref());
62 62
                 $controller->addInlineJavascript('
63 63
                     $( document ).ready(function() {
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
             
96 96
             function majComputeSosa(user_id) {
97 97
                 jQuery("#bt_sosa_compute").prop( "disabled", true );
98
-                jQuery("#bt_sosa_computing").empty().html("<i class=\"icon-loading-small\"></i>&nbsp;'. I18N::translate('Computing...') .'");
98
+                jQuery("#bt_sosa_computing").empty().html("<i class=\"icon-loading-small\"></i>&nbsp;'. I18N::translate('Computing...').'");
99 99
                 jQuery("#bt_sosa_computing").load(
100 100
 		          "module.php?mod='.$this->module->getName().'&mod_action=SosaConfig@computeAll&ged='.$wt_tree->getNameUrl().'&userid=" + user_id,
101 101
 		          function() {
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             }');
105 105
         
106 106
         $action = Filter::post('action');
107
-        if($action === 'update') $this->update($controller);
107
+        if ($action === 'update') $this->update($controller);
108 108
         
109 109
         $view_bag = new ViewBag();
110 110
         $view_bag->set('title', $controller->getPageTitle());
@@ -113,21 +113,21 @@  discard block
 block discarded – undo
113 113
         
114 114
         $users_root = array();
115 115
         $users_js_array = 'var users_array = [];';
116
-        if(Auth::check()) {
116
+        if (Auth::check()) {
117 117
             $root_id = $wt_tree->getUserPreference(Auth::user(), 'MAJ_SOSA_ROOT_ID');
118
-            $users_root[] = array( 'user' => Auth::user(), 'rootid' => $root_id);
119
-            $users_js_array .=  'users_array["'.Auth::user()->getUserId().'"] = "' . $root_id . '";';
118
+            $users_root[] = array('user' => Auth::user(), 'rootid' => $root_id);
119
+            $users_js_array .= 'users_array["'.Auth::user()->getUserId().'"] = "'.$root_id.'";';
120 120
             
121
-            if(Auth::isManager($wt_tree)) {
121
+            if (Auth::isManager($wt_tree)) {
122 122
                 $default_user = User::find(-1);
123 123
                 $default_root_id = $wt_tree->getUserPreference($default_user, 'MAJ_SOSA_ROOT_ID');
124
-                $users_root[] = array( 'user' => $default_user, 'rootid' => $default_root_id);
125
-                $users_js_array .=  'users_array["'.$default_user->getUserId().'"] = "' . $default_root_id . '";';
124
+                $users_root[] = array('user' => $default_user, 'rootid' => $default_root_id);
125
+                $users_js_array .= 'users_array["'.$default_user->getUserId().'"] = "'.$default_root_id.'";';
126 126
             }
127 127
         }
128 128
         $view_bag->set('users_settings', $users_root);       
129 129
         
130
-        $controller->addInlineJavascript($users_js_array . '            
130
+        $controller->addInlineJavascript($users_js_array.'            
131 131
                 $("#maj-sosa-config-select").change(function() {
132 132
                     $("#rootid").val(users_array[this.value]);
133 133
                 });
@@ -147,9 +147,9 @@  discard block
 block discarded – undo
147 147
         $view_bag->set('is_success', false);
148 148
         
149 149
         $user = User::find(Filter::getInteger('userid', -1));
150
-        if($user) {
150
+        if ($user) {
151 151
             $calculator = new SosaCalculator(Globals::getTree(), $user);
152
-            if($calculator->computeAll()) $view_bag->set('is_success', true);
152
+            if ($calculator->computeAll()) $view_bag->set('is_success', true);
153 153
         }
154 154
         ViewFactory::make('SosaComputeResult', $this, $controller, $view_bag)->render();
155 155
     }
@@ -168,9 +168,9 @@  discard block
 block discarded – undo
168 168
         $user = User::find(Filter::getInteger('userid', -1));
169 169
         $indi = Individual::getInstance(Filter::get('pid', WT_REGEX_XREF), $wt_tree);
170 170
         
171
-        if($user && $indi) {
171
+        if ($user && $indi) {
172 172
             $calculator = new SosaCalculator($wt_tree, $user);
173
-            if($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true);
173
+            if ($calculator->computeFromIndividual($indi)) $view_bag->set('is_success', true);
174 174
         }
175 175
         else {
176 176
             $view_bag->set('error', I18N::translate('Non existing individual'));
Please login to merge, or discard this patch.
src/Webtrees/Module/SosaModule.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     public function getConfigLink() {
82 82
         Database::updateSchema(self::SCHEMA_MIGRATION_PREFIX, self::SCHEMA_SETTING_NAME, self::SCHEMA_TARGET_VERSION);
83 83
         
84
-        return 'module.php?mod=' . $this->getName() . '&amp;mod_action=SosaConfig';
84
+        return 'module.php?mod='.$this->getName().'&amp;mod_action=SosaConfig';
85 85
     }
86 86
     
87 87
     /**********
@@ -103,17 +103,17 @@  discard block
 block discarded – undo
103 103
     public function getMenu() { 
104 104
         $wt_tree = Globals::getTree();
105 105
         $menu = null;
106
-        if(ModuleManager::getInstance()->isOperational($this->getName())) {
106
+        if (ModuleManager::getInstance()->isOperational($this->getName())) {
107 107
             
108
-            $root_url = 'module.php?mod=' . $this->getName() . '&ged=' . $wt_tree->getNameUrl() . '&';
109
-            $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url . 'mod_action=SosaStats', 'menu-maj-sosa-stats');
108
+            $root_url = 'module.php?mod='.$this->getName().'&ged='.$wt_tree->getNameUrl().'&';
109
+            $sosa_stat_menu = new Menu(I18N::translate('Sosa Statistics'), $root_url.'mod_action=SosaStats', 'menu-maj-sosa-stats');
110 110
             
111 111
             $menu = clone $sosa_stat_menu;
112 112
             $menu->setClass('menu-maj-sosa');
113 113
             
114 114
             $submenus = array_filter(array(
115
-                new Menu(I18N::translate('Sosa Ancestors'), $root_url . 'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')),
116
-                new Menu(I18N::translate('Missing Ancestors'), $root_url . 'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')),
115
+                new Menu(I18N::translate('Sosa Ancestors'), $root_url.'mod_action=SosaList', 'menu-maj-sosa-list', array('rel' => 'nofollow')),
116
+                new Menu(I18N::translate('Missing Ancestors'), $root_url.'mod_action=SosaList@missing', 'menu-maj-sosa-missing', array('rel' => 'nofollow')),
117 117
                 $sosa_stat_menu                
118 118
             ));
119 119
             
@@ -122,12 +122,12 @@  discard block
 block discarded – undo
122 122
                 && $ga_list = Module::getModuleByName(Constants::MODULE_MAJ_GEODISP_NAME)->getProvider()->getGeoAnalysisList()
123 123
                 )
124 124
             {
125
-                if(count($ga_list) > 0) {
126
-                    $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod=' . Constants::MODULE_MAJ_GEODISP_NAME . '&ged=' . $wt_tree->getNameUrl() . '&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion');
125
+                if (count($ga_list) > 0) {
126
+                    $submenus[] = new Menu(I18N::translate('Geographical Dispersion'), 'module.php?mod='.Constants::MODULE_MAJ_GEODISP_NAME.'&ged='.$wt_tree->getNameUrl().'&mod_action=GeoAnalysis@listAll', 'menu-maj-sosa-geodispersion');
127 127
                 }
128 128
             }
129 129
             
130
-            if(Auth::check()) {
130
+            if (Auth::check()) {
131 131
                 $submenus[] = new Menu(
132 132
                     I18N::translate('Sosa Configuration'),
133 133
                     $this->getConfigLink(),
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
                     ->addInlineJavascript('
145 145
                         function majComputeSosaFromIndi(){
146 146
                             if($("#computesosadlg").length == 0) {
147
-                                $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation') .'\"><div id=\"sosaloadingarea\"></div></div>");
147
+                                $("body").append("<div id=\"computesosadlg\" title=\"'. I18N::translate('Sosas computation').'\"><div id=\"sosaloadingarea\"></div></div>");
148 148
                             }
149 149
 	                        $("#computesosadlg").dialog({
150 150
                                 modal: true,
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
 		                        open: function(event, ui) {
154 154
 			                        $("button.ui-dialog-titlebar-close").hide();
155 155
                                     $("#sosaloadingarea").empty().html("<i class=\"icon-loading-small\"></i>");
156
-			                        $("#sosaloadingarea").load("module.php?mod=' . $this->getName() . '&mod_action=SosaConfig@computePartial&ged='. $wt_tree->getNameUrl() .'&userid='.Auth::user()->getUserId().'&pid=' . $controller->getSignificantIndividual()->getXref() . '", 
156
+			                        $("#sosaloadingarea").load("module.php?mod=' . $this->getName().'&mod_action=SosaConfig@computePartial&ged='.$wt_tree->getNameUrl().'&userid='.Auth::user()->getUserId().'&pid='.$controller->getSignificantIndividual()->getXref().'", 
157 157
 					                   function(){
158 158
 						                  $("button.ui-dialog-titlebar-close").show();
159 159
                                           setTimeout(function(){
@@ -203,7 +203,7 @@  discard block
 block discarded – undo
203 203
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderIcons()
204 204
      */
205 205
     public function hExtendIndiHeaderIcons(IndividualController $ctrlIndi) {
206
-        if($ctrlIndi){
206
+        if ($ctrlIndi) {
207 207
             $dindi = new Individual($ctrlIndi->getSignificantIndividual());
208 208
             return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, 'large');
209 209
         }
@@ -221,9 +221,9 @@  discard block
 block discarded – undo
221 221
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\IndividualHeaderExtenderInterface::hExtendIndiHeaderRight()
222 222
      */
223 223
     public function hExtendIndiHeaderRight(IndividualController $ctrlIndi) {
224
-        if($ctrlIndi){
224
+        if ($ctrlIndi) {
225 225
             $dindi = new Individual($ctrlIndi->getSignificantIndividual());
226
-            return array('indi-header-sosa',  FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal'));
226
+            return array('indi-header-sosa', FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 2, 'normal'));
227 227
         }
228 228
         return '';
229 229
     }
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
      * @see \MyArtJaub\Webtrees\Hook\HookInterfaces\RecordNameTextExtenderInterface::hRecordNameAppend()
234 234
      */
235 235
     public function hRecordNameAppend(GedcomRecord $grec, $size = 'small') {
236
-        if($grec instanceof \Fisharebest\Webtrees\Individual){ // Only apply to individuals
236
+        if ($grec instanceof \Fisharebest\Webtrees\Individual) { // Only apply to individuals
237 237
             $dindi = new Individual($grec);
238 238
             return FunctionsPrint::formatSosaNumbers($dindi->getSosaNumbers(), 1, $size);
239 239
         }
Please login to merge, or discard this patch.
src/Webtrees/Module/Hooks/AdminConfigController.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -34,26 +34,26 @@  discard block
 block discarded – undo
34 34
      * Manage updates sent from the AdminConfig@index form.
35 35
      */
36 36
     protected function update() {
37
-        if(Auth::isAdmin()){
37
+        if (Auth::isAdmin()) {
38 38
             $ihooks = HookProvider::getInstance()->getInstalledHooks();
39 39
             	
40
-            $module_names= Database::prepare(
40
+            $module_names = Database::prepare(
41 41
                 "SELECT module_name FROM `##module` WHERE status='disabled'"
42 42
             )->fetchOneColumn();
43 43
             	
44
-            if($ihooks !== null){
44
+            if ($ihooks !== null) {
45 45
                 foreach ($ihooks as $ihook => $params) {
46
-                    if(Filter::post('hook-' . $params['id']) === 'yes') {                    
46
+                    if (Filter::post('hook-'.$params['id']) === 'yes') {                    
47 47
                         $array_hook = explode('#', $ihook);
48 48
                         //Update status
49
-                        $new_status= Filter::postBool('status-' . $params['id']);
50
-                        if(in_array($array_hook[0], $module_names)) $new_status = false;
49
+                        $new_status = Filter::postBool('status-'.$params['id']);
50
+                        if (in_array($array_hook[0], $module_names)) $new_status = false;
51 51
                         $previous_status = $params['status'];
52 52
                         if ($new_status !== null) {
53
-                            $new_status= $new_status ? 'enabled' : 'disabled';
54
-                            if($new_status != $previous_status){
53
+                            $new_status = $new_status ? 'enabled' : 'disabled';
54
+                            if ($new_status != $previous_status) {
55 55
                                 $chook = new Hook($array_hook[1], $array_hook[2]);
56
-                                switch($new_status){
56
+                                switch ($new_status) {
57 57
                                     case 'enabled':
58 58
                                         $chook->enable($array_hook[0]);
59 59
                                         break;
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
                         $new_priority = Filter::postInteger("moduleorder-{$params['id']}");
71 71
                         $previous_priority = $params['priority'];
72 72
                         if ($new_priority !== null) {
73
-                            if($new_priority != $previous_priority){
73
+                            if ($new_priority != $previous_priority) {
74 74
                                 $chook = new Hook($array_hook[1], $array_hook[2]);
75 75
                                 $chook->setPriority($array_hook[0], $new_priority);
76 76
                             }
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         HookProvider::getInstance()->updateHooks();
93 93
         
94 94
         $action = Filter::post('action');        
95
-        if($action == 'update' && Filter::checkCsrf()) $this->update();
95
+        if ($action == 'update' && Filter::checkCsrf()) $this->update();
96 96
         
97 97
         Theme::theme(new AdministrationTheme)->init(Globals::getTree());        
98 98
         $ctrl = new PageController();
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
             ->restrictAccess(Auth::isAdmin())
101 101
             ->setPageTitle($this->module->getTitle());
102 102
         
103
-        $table_id = 'table-installedhooks-' . Uuid::uuid4();
103
+        $table_id = 'table-installedhooks-'.Uuid::uuid4();
104 104
 
105 105
         $view_bag = new ViewBag();
106 106
         $view_bag->set('title', $ctrl->getPageTitle());
Please login to merge, or discard this patch.
src/Webtrees/Module/MiscExtensionsModule.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
      * @see \Fisharebest\Webtrees\Module\ModuleConfigInterface::getConfigLink()
64 64
      */
65 65
     public function getConfigLink() {
66
-        return 'module.php?mod=' . $this->getName() . '&amp;mod_action=AdminConfig';
66
+        return 'module.php?mod='.$this->getName().'&amp;mod_action=AdminConfig';
67 67
     }
68 68
     
69 69
     /**
@@ -92,19 +92,19 @@  discard block
 block discarded – undo
92 92
 	    $res = '';
93 93
 	    $dindi = new Individual($ctrlIndi->getSignificantIndividual());
94 94
 	    $titles = $dindi->getTitles();
95
-	    if(count($titles)>0){
95
+	    if (count($titles) > 0) {
96 96
 	        $res = '
97 97
 	            <dl>
98 98
 	               <dt class="label">'.I18N::translate('Titles').'</dt>';
99
-            foreach($titles as $title=>$props){
99
+            foreach ($titles as $title=>$props) {
100 100
                 $res .= 
101
-                    '<dd class="field">' . $title. ' ' .
102
-                    FunctionsPrint::getListFromArray($props) .
101
+                    '<dd class="field">'.$title.' '.
102
+                    FunctionsPrint::getListFromArray($props).
103 103
                     '</dd>';
104 104
             }
105
-            $res .=  '</dl>';
105
+            $res .= '</dl>';
106 106
         }
107
-	    return array( 'indi-header-titles' , $res);	    
107
+	    return array('indi-header-titles', $res);	    
108 108
 	}
109 109
 	
110 110
 	/**
@@ -119,8 +119,8 @@  discard block
 block discarded – undo
119 119
 	 */
120 120
 	public function hPrintHeader() {
121 121
 	    $html = '';
122
-	    if($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1){
123
-	        if(Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE)  && !Filter::getBool('noheader')){
122
+	    if ($this->getSetting('MAJ_ADD_HTML_HEADER', 0) == 1) {
123
+	        if (Auth::accessLevel(Globals::getTree()) >= $this->getSetting('MAJ_SHOW_HTML_HEADER', Auth::PRIV_HIDE) && !Filter::getBool('noheader')) {
124 124
 	            $html .= $this->getSetting('MAJ_HTML_HEADER', '');
125 125
 	        }
126 126
 	    }	
@@ -134,11 +134,11 @@  discard block
 block discarded – undo
134 134
 	public function hPrintFooter() {
135 135
 	    $wt_tree = Globals::getTree();
136 136
 	    $html = '';
137
-	    if($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1){
137
+	    if ($this->getSetting('MAJ_DISPLAY_CNIL', 0) == 1) {
138 138
 	        $html .= '<br/>';
139 139
 	        $html .= '<div class="center">';
140 140
 	        $cnil_ref = $this->getSetting('MAJ_CNIL_REFERENCE', '');
141
-	        if($cnil_ref != ''){
141
+	        if ($cnil_ref != '') {
142 142
 	            $html .= I18N::translate('This site has been notified to the French National Commission for Data protection (CNIL) and registered under number %s. ', $cnil_ref);
143 143
 	        }
144 144
 	        $html .= I18N::translate('In accordance with the French Data protection Act (<em>Loi Informatique et Libertés</em>) of January 6th, 1978, you have the right to access, modify, rectify and delete personal information that pertains to you. To exercice this right, please contact %s, and provide your name, address and a proof of your identity.',
@@ -146,8 +146,8 @@  discard block
 block discarded – undo
146 146
 	        $html .= '</div>';
147 147
 	    }
148 148
 	    
149
-	    if($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1){
150
-	        if(Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE)  && !Filter::getBool('nofooter')){
149
+	    if ($this->getSetting('MAJ_ADD_HTML_FOOTER', 0) == 1) {
150
+	        if (Auth::accessLevel($wt_tree) >= $this->getSetting('MAJ_SHOW_HTML_FOOTER', Auth::PRIV_HIDE) && !Filter::getBool('nofooter')) {
151 151
 	            $html .= $this->getSetting('MAJ_HTML_FOOTER', '');
152 152
 	        }
153 153
 	    }
Please login to merge, or discard this patch.