PATH:
home
/
vcomplcotr
/
www
/
wp-content
/
plugins
/
akeebabackupwp
/
app
/
vendor
/
akeeba
/
awf
/
src
/
Pagination
<?php /** * @package awf * @copyright Copyright (c)2014-2026 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU GPL version 3 or later */ namespace Awf\Pagination; class PaginationObject { /** * @var string The link text. */ public $text; /** * @var integer The number of rows as a base offset. */ public $base; /** * @var string The link URL. */ public $link; /** * @var boolean Flag whether the object is the 'active' page */ public $active; /** * Class constructor. * * @param string $text The link text. * @param integer $base The number of rows as a base offset. * @param string $link The link URL. * @param boolean $active Flag whether the object is the 'active' page */ public function __construct($text, $base = null, $link = null, $active = false) { $this->text = $text; $this->base = $base; $this->link = $link; $this->active = $active; } }
[+]
..
[-] Object.php
[edit]
[-] Pagination.php
[edit]
[-] PaginationObject.php
[edit]