228 lines
8.1 KiB
PHP
228 lines
8.1 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.3.0
|
|
@build 14th January, 2016
|
|
@created 15th June, 2012
|
|
@package Cost Benefit Projection
|
|
@subpackage view.html.php
|
|
@author Llewellyn van der Merwe <http://www.vdm.io>
|
|
@owner Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
@copyright Copyright (C) 2015. All Rights Reserved
|
|
@license GNU/GPL Version 2 or later - http://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
Cost Benefit Projection Tool.
|
|
/------------------------------------------------------------------------------------------------------*/
|
|
|
|
// No direct access to this file
|
|
defined('_JEXEC') or die('Restricted access');
|
|
|
|
// import Joomla view library
|
|
jimport('joomla.application.component.view');
|
|
|
|
/**
|
|
* Country View class
|
|
*/
|
|
class CostbenefitprojectionViewCountry extends JViewLegacy
|
|
{
|
|
/**
|
|
* display method of View
|
|
* @return void
|
|
*/
|
|
public function display($tpl = null)
|
|
{
|
|
// Check for errors.
|
|
if (count($errors = $this->get('Errors')))
|
|
{
|
|
JError::raiseError(500, implode('<br />', $errors));
|
|
return false;
|
|
}
|
|
|
|
// 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 = CostbenefitprojectionHelper::getActions('country',$this->item);
|
|
// get input
|
|
$jinput = JFactory::getApplication()->input;
|
|
$this->ref = $jinput->get('ref', 0, 'word');
|
|
$this->refid = $jinput->get('refid', 0, 'int');
|
|
$this->referral = '';
|
|
if ($this->refid)
|
|
{
|
|
// return to the item that refered to this item
|
|
$this->referral = '&ref='.(string)$this->ref.'&refid='.(int)$this->refid;
|
|
}
|
|
elseif($this->ref)
|
|
{
|
|
// return to the list view that refered to this item
|
|
$this->referral = '&ref='.(string)$this->ref;
|
|
}
|
|
|
|
// Get Linked view data
|
|
$this->byginterventions = $this->get('Byginterventions');
|
|
|
|
// Get Linked view data
|
|
$this->tzvservice_providers = $this->get('Tzvservice_providers');
|
|
|
|
// Get Linked view data
|
|
$this->wxrcompanies = $this->get('Wxrcompanies');
|
|
|
|
// Set the toolbar
|
|
$this->addToolBar();
|
|
|
|
// 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_COSTBENEFITPROJECTION_COUNTRY_NEW' : 'COM_COSTBENEFITPROJECTION_COUNTRY_EDIT'), 'pencil-2 article-add');
|
|
// Built the actions for new and existing records.
|
|
if ($this->refid || $this->ref)
|
|
{
|
|
if ($this->canDo->get('country.create') && $isNew)
|
|
{
|
|
// We can create the record.
|
|
JToolBarHelper::save('country.save', 'JTOOLBAR_SAVE');
|
|
}
|
|
elseif ($this->canDo->get('country.edit'))
|
|
{
|
|
// We can save the record.
|
|
JToolBarHelper::save('country.save', 'JTOOLBAR_SAVE');
|
|
}
|
|
if ($isNew)
|
|
{
|
|
// Do not creat but cancel.
|
|
JToolBarHelper::cancel('country.cancel', 'JTOOLBAR_CANCEL');
|
|
}
|
|
else
|
|
{
|
|
// We can close it.
|
|
JToolBarHelper::cancel('country.cancel', 'JTOOLBAR_CLOSE');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if ($isNew)
|
|
{
|
|
// For new records, check the create permission.
|
|
if ($this->canDo->get('country.create'))
|
|
{
|
|
JToolBarHelper::apply('country.apply', 'JTOOLBAR_APPLY');
|
|
JToolBarHelper::save('country.save', 'JTOOLBAR_SAVE');
|
|
JToolBarHelper::custom('country.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
|
};
|
|
JToolBarHelper::cancel('country.cancel', 'JTOOLBAR_CANCEL');
|
|
}
|
|
else
|
|
{
|
|
if ($this->canDo->get('country.edit'))
|
|
{
|
|
// We can save the new record
|
|
JToolBarHelper::apply('country.apply', 'JTOOLBAR_APPLY');
|
|
JToolBarHelper::save('country.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('country.create'))
|
|
{
|
|
JToolBarHelper::custom('country.save2new', 'save-new.png', 'save-new_f2.png', 'JTOOLBAR_SAVE_AND_NEW', false);
|
|
}
|
|
}
|
|
$canVersion = ($this->canDo->get('core.version') && $this->canDo->get('country.version'));
|
|
if ($this->state->params->get('save_history', 1) && $this->canDo->get('country.edit') && $canVersion)
|
|
{
|
|
JToolbarHelper::versions('com_costbenefitprojection.country', $this->item->id);
|
|
}
|
|
if ($this->canDo->get('country.create'))
|
|
{
|
|
JToolBarHelper::custom('country.save2copy', 'save-copy.png', 'save-copy_f2.png', 'JTOOLBAR_SAVE_AS_COPY', false);
|
|
}
|
|
JToolBarHelper::cancel('country.cancel', 'JTOOLBAR_CLOSE');
|
|
}
|
|
}
|
|
JToolbarHelper::divider();
|
|
// set help url for this view if found
|
|
$help_url = CostbenefitprojectionHelper::getHelpUrl('country');
|
|
if (CostbenefitprojectionHelper::checkString($help_url))
|
|
{
|
|
JToolbarHelper::help('COM_COSTBENEFITPROJECTION_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 CostbenefitprojectionHelper::htmlEscape($var, $this->_charset, true, 30);
|
|
}
|
|
// use the helper htmlEscape method instead.
|
|
return CostbenefitprojectionHelper::htmlEscape($var, $this->_charset);
|
|
}
|
|
|
|
/**
|
|
* Method to set up the document properties
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function setDocument()
|
|
{
|
|
$isNew = ($this->item->id < 1);
|
|
$document = JFactory::getDocument();
|
|
$document->setTitle(JText::_($isNew ? 'COM_COSTBENEFITPROJECTION_COUNTRY_NEW' : 'COM_COSTBENEFITPROJECTION_COUNTRY_EDIT'));
|
|
$document->addStyleSheet(JURI::root() . "administrator/components/com_costbenefitprojection/assets/css/country.css");
|
|
|
|
// Add the CSS for Footable.
|
|
$document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable/css/footable.core.min.css');
|
|
|
|
// Use the Metro Style
|
|
if (!isset($this->fooTableStyle) || 0 == $this->fooTableStyle)
|
|
{
|
|
$document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable/css/footable.metro.min.css');
|
|
}
|
|
// Use the Legacy Style.
|
|
elseif (isset($this->fooTableStyle) && 1 == $this->fooTableStyle)
|
|
{
|
|
$document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable/css/footable.standalone.min.css');
|
|
}
|
|
|
|
// Add the JavaScript for Footable
|
|
$document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.js');
|
|
$document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.sort.js');
|
|
$document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.filter.js');
|
|
$document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.paginate.js');
|
|
|
|
$footable = "jQuery(document).ready(function() { jQuery(function () { jQuery('.footable').footable(); }); jQuery('.nav-tabs').on('click', 'li', function() { setTimeout(tableFix, 10); }); }); function tableFix() { jQuery('.footable').trigger('footable_resize'); }";
|
|
$document->addScriptDeclaration($footable);
|
|
|
|
$document->addScript(JURI::root() . $this->script);
|
|
$document->addScript(JURI::root() . "administrator/components/com_costbenefitprojection/views/country/submitbutton.js");
|
|
JText::script('view not acceptable. Error');
|
|
}
|
|
}
|