This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class Paginator implements \IteratorAggregate | |
| { | |
| const TPL_WRAPPER = 'wrapper'; | |
| const TPL_NUM = 'num'; | |
| const TPL_NUM_CURRENT = 'currentNum'; | |
| const TPL_TAG = 'tag'; | |
| const TPL_NEXT = 'next'; | |
| const TPL_PREV = 'prev'; |