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