Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
22 | public function before() |
||
23 | { |
||
24 | // set data to display in view |
||
25 | foreach ($this->_records as $row) { |
||
26 | $this->data[] = [ |
||
27 | 'id' => $row->id, |
||
28 | 'title' => Serialize::getDecodeLocale($row->title), |
||
29 | 'date' => Date::convertToDatetime($row->created_at, Date::FORMAT_TO_HOUR) |
||
30 | ]; |
||
31 | } |
||
32 | } |
||
33 | |||
42 | } |