102 lines
3.2 KiB
PHP
102 lines
3.2 KiB
PHP
<?php
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
@version 3.4.x
|
|
@build 30th May, 2020
|
|
@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');
|
|
|
|
/**
|
|
* Costbenefitprojection View class
|
|
*/
|
|
class CostbenefitprojectionViewCostbenefitprojection extends JViewLegacy
|
|
{
|
|
/**
|
|
* View display method
|
|
* @return void
|
|
*/
|
|
function display($tpl = null)
|
|
{
|
|
// Assign data to the view
|
|
$this->icons = $this->get('Icons');
|
|
$this->contributors = CostbenefitprojectionHelper::getContributors();
|
|
$this->usagedata = $this->get('UsageData');
|
|
$this->github = $this->get('Github');
|
|
$this->readme = $this->get('Readme');
|
|
$this->wiki = $this->get('Wiki');
|
|
$this->noticeboard = $this->get('Noticeboard');
|
|
|
|
// get the manifest details of the component
|
|
$this->manifest = CostbenefitprojectionHelper::manifest();
|
|
|
|
// 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()
|
|
{
|
|
$canDo = CostbenefitprojectionHelper::getActions('costbenefitprojection');
|
|
JToolBarHelper::title(JText::_('COM_COSTBENEFITPROJECTION_DASHBOARD'), 'grid-2');
|
|
|
|
// set help url for this view if found
|
|
$help_url = CostbenefitprojectionHelper::getHelpUrl('costbenefitprojection');
|
|
if (CostbenefitprojectionHelper::checkString($help_url))
|
|
{
|
|
JToolbarHelper::help('COM_COSTBENEFITPROJECTION_HELP_MANAGER', false, $help_url);
|
|
}
|
|
|
|
if ($canDo->get('core.admin') || $canDo->get('core.options'))
|
|
{
|
|
JToolBarHelper::preferences('com_costbenefitprojection');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Method to set up the document properties
|
|
*
|
|
* @return void
|
|
*/
|
|
protected function setDocument()
|
|
{
|
|
$document = JFactory::getDocument();
|
|
|
|
// add dashboard style sheets
|
|
$document->addStyleSheet(JURI::root() . "administrator/components/com_costbenefitprojection/assets/css/dashboard.css");
|
|
|
|
// set page title
|
|
$document->setTitle(JText::_('COM_COSTBENEFITPROJECTION_DASHBOARD'));
|
|
|
|
// add manifest to page JavaScript
|
|
$document->addScriptDeclaration("var manifest = jQuery.parseJSON('" . json_encode($this->manifest) . "');", "text/javascript");
|
|
}
|
|
}
|