| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 31 | 1 | public function init() |
|
| 32 | { |
||
| 33 | // Setup source |
||
| 34 | 1 | $adapter = new SqlSource(); |
|
| 35 | 1 | $adapter->setSource('SELECT * FROM pages'); |
|
| 36 | |||
| 37 | 1 | $this->setAdapter($adapter); |
|
| 38 | 1 | $this->setDefaultLimit(25); |
|
| 39 | 1 | $this->setAllowOrders(['title', 'id', 'created', 'updated']); |
|
| 40 | 1 | $this->setAllowFilters(['title', 'alias', 'description', 'content', 'id']); |
|
| 41 | 1 | return $this; |
|
| 42 | } |
||
| 43 | } |
||
| 44 |