This file contains 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
<ul class="pagination"> | |
<li <?= ($pagination['isFirst'] ? 'class="disabled"' : '') ?>> | |
<a href="<?= $pagination['prev_url'] ?>" class="btn-page btn-page-next" | |
data-start="<?= $pagination['prev_num'] ?>"> | |
« | |
</a> | |
</li> | |
<?php foreach($pagination['pages'] as $page): ?> | |
<li class="<?= $page['class'] ?>"> | |
<?php if(!$page['isSeparator']): ?> |
This file contains 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 | |
/* | |
+------------------------------------------------------------------------+ | |
| Phalcon Framework | | |
+------------------------------------------------------------------------+ | |
| Copyright (c) 2011-2015 Phalcon Team (http://www.phalconphp.com) | | |
+------------------------------------------------------------------------+ | |
| This source file is subject to the New BSD License that is bundled | | |
| with this package in the file docs/LICENSE.txt. | |
This file contains 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 | |
/** | |
* ViewCascade.php 2014-07-23 20:31 | |
* ---------------------------------------------- | |
* | |
* | |
* @author Stanislav Kiryukhin <[email protected]> | |
* @copyright Copyright (c) 2014, CKGroup.ru | |
* | |
* @version 0.0.1 |
This file contains 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 | |
/** | |
* WithTrait.php | |
* ---------------------------------------------- | |
* | |
* | |
* @author Stanislav Kiryukhin <[email protected]> | |
* @copyright Copyright (c) 2015, CKGroup.ru | |
* | |
* ---------------------------------------------- |