Conditions | 4 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
50 | protected function isCitationCompleted(array $pageOuvrage): bool |
||
51 | { |
||
52 | // hack temporaire pour éviter articles dont CompleteProcess incomplet |
||
53 | if ( |
||
54 | empty($pageOuvrage['opti']) |
||
55 | || empty($pageOuvrage['optidate']) |
||
56 | || $pageOuvrage['optidate'] < $this->db->getOptiValidDate() |
||
57 | ) { |
||
58 | return false; |
||
59 | } |
||
60 | return true; |
||
61 | } |
||
62 | } |