| Server IP : 89.248.107.232 / Your IP : 216.73.217.70 Web Server : Apache System : Linux host2.kasilh.com 5.14.0-687.36.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 7 05:40:49 EDT 2026 x86_64 User : seg ( 10005) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/seg-sa.es/serinco.es/wp-content/plugins/akeebabackupwp/app/Awf/Mvc/DataView/ |
Upload File : |
<?php
/**
* @package awf
* @copyright 2014-2016 Nicholas K. Dionysopoulos / Akeeba Ltd
* @license GNU GPL version 3 or later
*/
namespace Awf\Mvc\DataView;
use Awf\Mvc\DataModel;
use Awf\Mvc\View;
use Awf\Pagination\Pagination;
/**
* View for a raw data-driven view
*
* @property-read \Awf\Mvc\DataModel\Collection $items The records loaded
* @property-read int $itemsCount The total number of items in the model (more than those loaded)
* @property-read \Awf\Pagination\Pagination Pagination object
*
* @package Awf\Mvc\DataView
*/
class Raw extends View
{
/** @var array Data lists */
protected $lists = null;
/**
* Executes before rendering the page for the Browse task.
*
* @return boolean Return true to allow rendering of the page
*/
public function onBeforeBrowse()
{
// Create the lists object
$this->lists = new \stdClass();
// Load the model
/** @var \Awf\Mvc\DataModel $model */
$model = $this->getModel();
// We want to persist the state in the session
$model->savestate(1);
// Ordering information
$this->lists->order = $model->getState('filter_order', $model->getIdFieldName(), 'cmd');
$this->lists->order_Dir = $model->getState('filter_order_Dir', 'DESC', 'cmd');
// Display limits
$this->lists->limitStart = $model->getState('limitstart', 0, 'int');
$this->lists->limit = $model->getState('limit', 0, 'int');
// Assign items to the view
$this->items = $model->get();
$this->itemsCount = $model->count();
// Pagination
$displayedLinks = 10;
$this->pagination = new Pagination($this->itemsCount, $this->lists->limitStart, $this->lists->limit, $displayedLinks, $this->container->application);
return true;
}
}