@@ -32,25 +32,25 @@ discard block |
||
32 | 32 | $data = []; |
33 | 33 | |
34 | 34 | $monitor = $db->fetchRow('select count(id) from temprawopti where optidate is null and edited is null'); |
35 | -$data['not analyzed citation'] = (int)$monitor['count(id)']; |
|
35 | +$data['not analyzed citation'] = (int) $monitor['count(id)']; |
|
36 | 36 | |
37 | 37 | $monitor = $db->fetchRow('select count(id) from temprawopti where optidate is not null'); |
38 | -$data['analyzed citation'] = (int)$monitor['count(id)']; |
|
38 | +$data['analyzed citation'] = (int) $monitor['count(id)']; |
|
39 | 39 | |
40 | 40 | $monitor = $db->fetchRow('select count(distinct page) as n from temprawopti where skip=1 and edited is null'); |
41 | -$data['skip pages'] = (int)$monitor['n']; |
|
41 | +$data['skip pages'] = (int) $monitor['n']; |
|
42 | 42 | |
43 | 43 | $monitor = $db->fetchRow('select count(distinct page) as n from temprawopti where edited is true'); |
44 | -$data['edited pages'] = (int)$monitor['n']; |
|
44 | +$data['edited pages'] = (int) $monitor['n']; |
|
45 | 45 | |
46 | 46 | $monitor = $db->fetchRow('select count(id) from temprawopti where optidate > SUBDATE(NOW(),1)'); |
47 | -$data['analyzed citation 24H'] = (int)$monitor['count(id)']; |
|
47 | +$data['analyzed citation 24H'] = (int) $monitor['count(id)']; |
|
48 | 48 | |
49 | 49 | $monitor = $db->fetchRow('select count(id) as n from temprawopti where edited > SUBDATE(NOW(),1)'); |
50 | -$data['edited citations 24H'] = (int)$monitor['n']; |
|
50 | +$data['edited citations 24H'] = (int) $monitor['n']; |
|
51 | 51 | |
52 | 52 | $monitor = $db->fetchRow('select count(distinct page) as n from temprawopti where edited > SUBDATE(NOW(),1)'); |
53 | -$data['edited pages 24H'] = (int)$monitor['n']; |
|
53 | +$data['edited pages 24H'] = (int) $monitor['n']; |
|
54 | 54 | |
55 | 55 | $monitor = $db->fetchRow('SELECT count(distinct A.page) FROM TempRawOpti A |
56 | 56 | WHERE notcosmetic=1. |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | ) |
66 | 66 | AND A.page = B.page |
67 | 67 | )'); |
68 | -$data['waiting pages'] = (int)$monitor['count(distinct A.page)']; |
|
68 | +$data['waiting pages'] = (int) $monitor['count(distinct A.page)']; |
|
69 | 69 | |
70 | 70 | $data['currentdate'] = DateUtil::dateEnglish2french((new DateTime())->format('j F Y \à H\:i').' (CEST)'); |
71 | 71 | |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | |
76 | 76 | |
77 | 77 | $monitWiki = ''; |
78 | -if(!empty($monitor)) { |
|
78 | +if (!empty($monitor)) { |
|
79 | 79 | foreach ($monitor as $monit) { |
80 | 80 | // % = "%" |
81 | 81 | $edited = new DateTime($monit['edited']); |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | "<tr><td>%s %</td><td>%s</td><td>[https://fr.wikipedia.org/w/index.php?title=%s&action=history histo]</td><td>[[%s]]</td><td>%s</td></tr>\n", |
84 | 84 | $monit['altered'] ?? '?', |
85 | 85 | $edited->format('d-m-Y'), |
86 | - str_replace(' ','_', $monit['page']), |
|
86 | + str_replace(' ', '_', $monit['page']), |
|
87 | 87 | $monit['page'] ?? '??', |
88 | 88 | $monit['version'] |
89 | 89 | ); |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | wiki; |
123 | 123 | |
124 | 124 | $wikiText = str_replace('#monitor#', $monitWiki, $wikiText); |
125 | -foreach($data as $key => $dat){ |
|
125 | +foreach ($data as $key => $dat) { |
|
126 | 126 | $wikiText = str_replace('#'.$key.'#', $dat, $wikiText); |
127 | 127 | } |
128 | 128 |
@@ -472,8 +472,8 @@ |
||
472 | 472 | $this->log('°titre'); |
473 | 473 | } |
474 | 474 | |
475 | - // desactivé à cause de l'exception décrite ci-dessus |
|
476 | - // si langue=VIDE : ajout langue= à partir de langue titre |
|
475 | + // desactivé à cause de l'exception décrite ci-dessus |
|
476 | + // si langue=VIDE : ajout langue= à partir de langue titre |
|
477 | 477 | // if (self::WIKI_LANGUAGE !== $lang && empty($this->getParam('langue'))) { |
478 | 478 | // $this->setParam('langue', $lang); |
479 | 479 | // $this->log('+langue='.$lang); |
@@ -186,7 +186,7 @@ discard block |
||
186 | 186 | if (count($res) >= 2 && empty($auteur2)) { |
187 | 187 | // delete author-params |
188 | 188 | array_map( |
189 | - function ($param) { |
|
189 | + function($param) { |
|
190 | 190 | $this->unsetParam($param); |
191 | 191 | }, |
192 | 192 | ['auteur', 'auteurs', 'prénom1', 'nom1'] |
@@ -696,7 +696,7 @@ discard block |
||
696 | 696 | // todo bug {{citation bloc}} si "=" ou "|" dans texte de citation |
697 | 697 | // Legacy : use {{début citation}} ... {{fin citation}} |
698 | 698 | if (preg_match('#[=|]#', $extrait) > 0) { |
699 | - $this->ouvrage->externalTemplates[] = (object)[ |
|
699 | + $this->ouvrage->externalTemplates[] = (object) [ |
|
700 | 700 | 'template' => 'début citation', |
701 | 701 | '1' => '', |
702 | 702 | 'raw' => '{{Début citation}}'.$extrait.'{{Fin citation}}', |
@@ -705,7 +705,7 @@ discard block |
||
705 | 705 | $this->notCosmetic = true; |
706 | 706 | } else { |
707 | 707 | // StdClass |
708 | - $this->ouvrage->externalTemplates[] = (object)[ |
|
708 | + $this->ouvrage->externalTemplates[] = (object) [ |
|
709 | 709 | 'template' => 'citation bloc', |
710 | 710 | '1' => $extrait, |
711 | 711 | 'raw' => '{{Citation bloc|'.$extrait.'}}', |
@@ -721,7 +721,7 @@ discard block |
||
721 | 721 | // "commentaire=bla" => {{Commentaire biblio|1=bla}} |
722 | 722 | if (!empty($this->getParam('commentaire'))) { |
723 | 723 | $commentaire = $this->getParam('commentaire'); |
724 | - $this->ouvrage->externalTemplates[] = (object)[ |
|
724 | + $this->ouvrage->externalTemplates[] = (object) [ |
|
725 | 725 | 'template' => 'commentaire biblio', |
726 | 726 | '1' => $commentaire, |
727 | 727 | 'raw' => '{{Commentaire biblio|'.$commentaire.'}}', |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | ) > 0 |
30 | 30 | ) { |
31 | 31 | // FIXED zizibot : des '<nowiki>' supplémentaires ajoutés à quelques rapports |
32 | - return str_replace('<nowiki>','', $matches[1]); |
|
32 | + return str_replace('<nowiki>', '', $matches[1]); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | return null; |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | * |
56 | 56 | * @return string |
57 | 57 | */ |
58 | - public function deleteAllReports(string $text, ?string $botName='ZiziBot'): string |
|
58 | + public function deleteAllReports(string $text, ?string $botName = 'ZiziBot'): string |
|
59 | 59 | { |
60 | 60 | $pattern = sprintf( |
61 | 61 | '#== Ouvrage avec erreur de paramètre ==(.*)Le robot \[\[Utilisateur:%s\|%s\]\] \(\[\[Discussion utilisateur:%s\|discuter\]\]\) [0-9a-zéà: ]+ \(CET\)[\n]*#s', |