201 lines
6.7 KiB
PHP
201 lines
6.7 KiB
PHP
|
<?php
|
||
|
/**
|
||
|
* @package Joomla.CMS
|
||
|
* @subpackage com_release_checking
|
||
|
*
|
||
|
* @copyright (C) 2020 Open Source Matters, Inc. <http://www.joomla.org>
|
||
|
* @license GNU General Public License version 2 or later; see LICENSE.txt
|
||
|
*/
|
||
|
|
||
|
// No direct access to this file
|
||
|
defined('_JEXEC') or die('Restricted access');
|
||
|
|
||
|
/**
|
||
|
* Release_check View class
|
||
|
*/
|
||
|
class Release_checkingViewRelease_check extends JViewLegacy
|
||
|
{
|
||
|
/**
|
||
|
* display method of View
|
||
|
* @return void
|
||
|
*/
|
||
|
public function display($tpl = null)
|
||
|
{
|
||
|
// set params
|
||
|
$this->params = JComponentHelper::getParams('com_release_checking');
|
||
|
// Assign the variables
|
||
|
$this->form = $this->get('Form');
|
||
|
$this->item = $this->get('Item');
|
||
|
$this->script = $this->get('Script');
|
||
|
$this->state = $this->get('State');
|
||
|
// get action permissions
|
||
|
$this->canDo = Release_checkingHelper::getActions('release_check', $this->item);
|
||
|
// get input
|
||
|
$jinput = JFactory::getApplication()->input;
|
||
|
$this->ref = $jinput->get('ref', 0, 'word');
|
||
|
$this->refid = $jinput->get('refid', 0, 'int');
|
||
|
$return = $jinput->get('return', null, 'base64');
|
||
|
// set the referral string
|
||
|
$this->referral = '';
|
||
|
if ($this->refid && $this->ref)
|
||
|
{
|
||
|
// return to the item that referred to this item
|
||
|
$this->referral = '&ref=' . (string)$this->ref . '&refid=' . (int)$this->refid;
|
||
|
}
|
||
|
elseif($this->ref)
|
||
|
{
|
||
|
// return to the list view that referred to this item
|
||
|
$this->referral = '&ref=' . (string)$this->ref;
|
||
|
}
|
||
|
// check return value
|
||
|
if (!is_null($return))
|
||
|
{
|
||
|
// add the return value
|
||
|
$this->referral .= '&return=' . (string)$return;
|
||
|
}
|
||
|
|
||
|
// Set the toolbar
|
||
|
$this->addToolBar();
|
||
|
|
||
|
// Check for errors.
|
||
|
if (count($errors = $this->get('Errors')))
|
||
|
{
|
||
|
throw new Exception(implode("\n", $errors), 500);
|
||
|
}
|
||
|
|
||
|
// Display the template
|
||
|
parent::display($tpl);
|
||
|
|
||
|
// Set the document
|
||
|
$this->setDocument();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* Setting the toolbar
|
||
|
*/
|
||
|
protected function addToolBar()
|
||
|
{
|
||
|
JFactory::getApplication()->input->set('hidemainmenu', true);
|
||
|
$user = JFactory::getUser();
|
||
|
$userId = $user->id;
|
||
|
$isNew = $this->item->id == 0;
|
||
|
|
||
|
JToolbarHelper::title( JText::_($isNew ? 'COM_RELEASE_CHECKING_RELEASE_CHECK_NEW' : 'COM_RELEASE_CHECKING_RELEASE_CHECK_EDIT'), 'pencil-2 article-add');
|
||
|
// Built the actions for new and existing records.
|
||
|
if (Release_checkingHelper::checkString($this->referral))
|
||
|
{
|
||
|
if ($this->canDo->get('core.create') && $isNew)
|
||
|
{
|
||
|
// We can create the record.
|
||
|
JToolBarHelper::save('release_check.save', 'JTOOLBAR_SAVE');
|
||
|
}
|
||
|
elseif ($this->canDo->get('core.edit'))
|
||
|
{
|
||
|
// We can save the record.
|
||
|
JToolBarHelper::save('release_check.save', 'JTOOLBAR_SAVE');
|
||
|
}
|
||
|
if ($isNew)
|
||
|
{
|
||
|
// Do not creat but cancel.
|
||
|
JToolBarHelper::cancel('release_check.cancel', 'JTOOLBAR_CANCEL');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
// We can close it.
|
||
|
JToolBarHelper::cancel('release_check.cancel', 'JTOOLBAR_CLOSE');
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if ($isNew)
|
||
|
{
|
||
|
// For new records, check the create permission.
|
||
|
if ($this->canDo->get('core.create'))
|
||
|
{
|
||
|
JToolBarHelper::apply('release_check.apply', 'JTOOLBAR_APPLY');
|
||
|
JToolBarHelper::save('release_check.save', 'JTOOLBAR_SAVE');
|
||
|
JToolBarHelper::custom('release_check.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
||
|
};
|
||
|
JToolBarHelper::cancel('release_check.cancel', 'JTOOLBAR_CANCEL');
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if ($this->canDo->get('core.edit'))
|
||
|
{
|
||
|
// We can save the new record
|
||
|
JToolBarHelper::apply('release_check.apply', 'JTOOLBAR_APPLY');
|
||
|
JToolBarHelper::save('release_check.save', 'JTOOLBAR_SAVE');
|
||
|
// We can save this record, but check the create permission to see
|
||
|
// if we can return to make a new one.
|
||
|
if ($this->canDo->get('core.create'))
|
||
|
{
|
||
|
JToolBarHelper::custom('release_check.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
||
|
}
|
||
|
}
|
||
|
$canVersion = ($this->canDo->get('core.version') && $this->canDo->get('release_check.version'));
|
||
|
if ($this->state->params->get('save_history', 1) && $this->canDo->get('core.edit') && $canVersion)
|
||
|
{
|
||
|
JToolbarHelper::versions('com_release_checking.release_check', $this->item->id);
|
||
|
}
|
||
|
if ($this->canDo->get('core.create'))
|
||
|
{
|
||
|
JToolBarHelper::custom('release_check.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
|
||
|
}
|
||
|
JToolBarHelper::cancel('release_check.cancel', 'JTOOLBAR_CLOSE');
|
||
|
}
|
||
|
}
|
||
|
JToolbarHelper::divider();
|
||
|
// set help url for this view if found
|
||
|
$help_url = Release_checkingHelper::getHelpUrl('release_check');
|
||
|
if (Release_checkingHelper::checkString($help_url))
|
||
|
{
|
||
|
JToolbarHelper::help('COM_RELEASE_CHECKING_HELP_MANAGER', false, $help_url);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Escapes a value for output in a view script.
|
||
|
*
|
||
|
* @param mixed $var The output to escape.
|
||
|
*
|
||
|
* @return mixed The escaped value.
|
||
|
*/
|
||
|
public function escape($var)
|
||
|
{
|
||
|
if(strlen($var) > 30)
|
||
|
{
|
||
|
// use the helper htmlEscape method instead and shorten the string
|
||
|
return Release_checkingHelper::htmlEscape($var, $this->_charset, true, 30);
|
||
|
}
|
||
|
// use the helper htmlEscape method instead.
|
||
|
return Release_checkingHelper::htmlEscape($var, $this->_charset);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Method to set up the document properties
|
||
|
*
|
||
|
* @return void
|
||
|
*/
|
||
|
protected function setDocument()
|
||
|
{
|
||
|
$isNew = ($this->item->id < 1);
|
||
|
if (!isset($this->document))
|
||
|
{
|
||
|
$this->document = JFactory::getDocument();
|
||
|
}
|
||
|
$this->document->setTitle(JText::_($isNew ? 'COM_RELEASE_CHECKING_RELEASE_CHECK_NEW' : 'COM_RELEASE_CHECKING_RELEASE_CHECK_EDIT'));
|
||
|
$this->document->addStyleSheet(JURI::root() . "administrator/components/com_release_checking/assets/css/release_check.css", (Release_checkingHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
|
||
|
// Add Ajax Token
|
||
|
$this->document->addScriptDeclaration("var token = '".JSession::getFormToken()."';");
|
||
|
$this->document->addScript(JURI::root() . $this->script, (Release_checkingHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
|
||
|
$this->document->addScript(JURI::root() . "administrator/components/com_release_checking/views/release_check/submitbutton.js", (Release_checkingHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
|
||
|
// set some language strings
|
||
|
JText::script('COM_RELEASE_CHECKING_SELECT');
|
||
|
JText::script('COM_RELEASE_CHECKING_CREATE');
|
||
|
JText::script('COM_RELEASE_CHECKING_ALL_DONE_HERE_SELECT_THE_NEXT_CONTEXT');
|
||
|
JText::script('COM_RELEASE_CHECKING_YOU_MUST_FIRST_SELECT_THE_JOOMLA_VERSION_BEING_TESTED');
|
||
|
JText::script('view not acceptable. Error');
|
||
|
}
|
||
|
}
|