mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2024-11-10 15:21:01 +00:00
127 lines
2.5 KiB
PHP
127 lines
2.5 KiB
PHP
<?php
|
|
/**
|
|
* Patch testing component for the Joomla! CMS
|
|
*
|
|
* @copyright Copyright (C) 2011 - 2012 Ian MacLennan, Copyright (C) 2013 - 2015 Open Source Matters, Inc. All rights reserved.
|
|
* @license GNU General Public License version 2 or later
|
|
*/
|
|
|
|
namespace PatchTester\View\Pulls;
|
|
|
|
use PatchTester\View\DefaultHtmlView;
|
|
|
|
/**
|
|
* View class for a list of pull requests.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
class PullsHtmlView extends DefaultHtmlView
|
|
{
|
|
/**
|
|
* Array containing environment errors
|
|
*
|
|
* @var array
|
|
* @since 2.0
|
|
*/
|
|
protected $envErrors = array();
|
|
|
|
/**
|
|
* Array of open pull requests
|
|
*
|
|
* @var array
|
|
* @since 2.0
|
|
*/
|
|
protected $items;
|
|
|
|
/**
|
|
* The model object - redeclared for proper type hinting.
|
|
*
|
|
* @var \PatchTester\Model\PullsModel
|
|
* @since 2.0
|
|
*/
|
|
protected $model;
|
|
|
|
/**
|
|
* State object
|
|
*
|
|
* @var \Joomla\Registry\Registry
|
|
* @since 2.0
|
|
*/
|
|
protected $state;
|
|
|
|
/**
|
|
* Pagination object
|
|
*
|
|
* @var \JPagination
|
|
* @since 2.0
|
|
*/
|
|
protected $pagination;
|
|
|
|
/**
|
|
* Method to render the view.
|
|
*
|
|
* @return string The rendered view.
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
public function render()
|
|
{
|
|
if (!extension_loaded('openssl'))
|
|
{
|
|
$this->envErrors[] = \JText::_('COM_PATCHTESTER_REQUIREMENT_OPENSSL');
|
|
}
|
|
|
|
if (!in_array('https', stream_get_wrappers()))
|
|
{
|
|
$this->envErrors[] = \JText::_('COM_PATCHTESTER_REQUIREMENT_HTTPS');
|
|
}
|
|
|
|
// Only process the data if there are no environment errors
|
|
if (!count($this->envErrors))
|
|
{
|
|
$this->state = $this->model->getState();
|
|
$this->items = $this->model->getItems();
|
|
$this->pagination = $this->model->getPagination();
|
|
}
|
|
|
|
$this->addToolbar();
|
|
|
|
return parent::render();
|
|
}
|
|
|
|
/**
|
|
* Add the page title and toolbar.
|
|
*
|
|
* @return void
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
protected function addToolbar()
|
|
{
|
|
\JToolBarHelper::title(\JText::_('COM_PATCHTESTER'), 'patchtester');
|
|
|
|
if (!count($this->envErrors))
|
|
{
|
|
\JToolbarHelper::custom('fetch', 'refresh.png', 'refresh_f2.png', 'COM_PATCHTESTER_TOOLBAR_FETCH_DATA', false);
|
|
}
|
|
|
|
\JToolBarHelper::preferences('com_patchtester');
|
|
}
|
|
|
|
/**
|
|
* Returns an array of fields the table can be sorted by
|
|
*
|
|
* @return array Array containing the field name to sort by as the key and display text as value
|
|
*
|
|
* @since 2.0
|
|
*/
|
|
protected function getSortFields()
|
|
{
|
|
return array(
|
|
'a.title' => \JText::_('JGLOBAL_TITLE'),
|
|
'a.pull_id' => \JText::_('COM_PATCHTESTER_PULL_ID'),
|
|
'applied' => \JText::_('JSTATUS')
|
|
);
|
|
}
|
|
}
|