Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 1 |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 2 | public function setup() { |
|
15 | 2 | $pagination = $this->get_collection()->get_pagination(); |
|
16 | 2 | $current_page = $pagination->get_current_page(); |
|
17 | |||
18 | $tokens = array( |
||
19 | 2 | 'CURRENT_PAGE' => $current_page, |
|
20 | 2 | 'TOTAL_PAGES' => $pagination->get_total_pages(), |
|
21 | 2 | ); |
|
22 | |||
23 | 2 | $this->set_tokens( $tokens ); |
|
24 | 2 | } |
|
25 | |||
40 | } |