Cost-Benefit-Projection/site/views/companyresults/view.html.php

214 lines
10 KiB
PHP
Raw Normal View History

2015-12-01 05:06:34 +00:00
<?php
/*----------------------------------------------------------------------------------| www.giz.de |----/
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
/-------------------------------------------------------------------------------------------------------/
@version @update number 38 of this MVC
@build 18th August, 2017
@created 27th September, 2015
2015-12-01 05:06:34 +00:00
@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');
/**
* Costbenefitprojection View class for the Companyresults
*/
class CostbenefitprojectionViewCompanyresults extends JViewLegacy
{
// Overwriting JView display method
function display($tpl = null)
{
2015-12-01 05:06:34 +00:00
// get combined params of both component and menu
$this->app = JFactory::getApplication();
$this->params = $this->app->getParams();
$this->menu = $this->app->getMenu()->getActive();
// get the user object
$this->user = JFactory::getUser();
// Initialise variables.
$this->item = $this->get('Item');
2015-12-01 05:06:34 +00:00
// check if the data was returned
if ($this->item)
{
// get results
$data = base64_encode(serialize($this->item));
$this->results = CostbenefitprojectionHelper::calculate($this->item->id,$data);
}
else
{
// int all as false
$this->results = false;
}
// Set the toolbar
2015-12-01 05:06:34 +00:00
$this->addToolBar();
// set the document
2015-12-01 05:06:34 +00:00
$this->_prepareDocument();
// Check for errors.
if (count($errors = $this->get('Errors')))
{
throw new Exception(implode("\n", $errors), 500);
}
2015-12-01 05:06:34 +00:00
parent::display($tpl);
}
/**
2015-12-01 05:06:34 +00:00
* Prepares the document
*/
protected function _prepareDocument()
{
// always make sure jquery is loaded.
2015-12-01 05:06:34 +00:00
JHtml::_('jquery.framework');
// Load the header checker class.
2015-12-01 05:06:34 +00:00
require_once( JPATH_COMPONENT_SITE.'/helpers/headercheck.php' );
// Initialize the header checker.
$HeaderCheck = new costbenefitprojectionHeaderCheck;
2015-12-01 05:06:34 +00:00
// Load uikit options.
2015-12-01 05:06:34 +00:00
$uikit = $this->params->get('uikit_load');
// Set script size.
2015-12-01 05:06:34 +00:00
$size = $this->params->get('uikit_min');
// Set css style.
2015-12-01 05:06:34 +00:00
$style = $this->params->get('uikit_style');
// The uikit css.
2015-12-01 05:06:34 +00:00
if ((!$HeaderCheck->css_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
{
$this->document->addStyleSheet(JURI::root(true) .'/media/com_costbenefitprojection/uikit-v2/css/uikit'.$style.$size.'.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
2015-12-01 05:06:34 +00:00
}
// The uikit js.
2015-12-01 05:06:34 +00:00
if ((!$HeaderCheck->js_loaded('uikit.min') || $uikit == 1) && $uikit != 2 && $uikit != 3)
{
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/uikit-v2/js/uikit'.$size.'.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
2015-12-01 05:06:34 +00:00
}
// Load the needed uikit components in this view.
2015-12-01 05:06:34 +00:00
$uikitComp = $this->get('UikitComp');
if ($uikit != 2 && isset($uikitComp) && CostbenefitprojectionHelper::checkArray($uikitComp))
{
// load just in case.
2015-12-01 05:06:34 +00:00
jimport('joomla.filesystem.file');
// loading...
2015-12-01 05:06:34 +00:00
foreach ($uikitComp as $class)
{
foreach (CostbenefitprojectionHelper::$uk_components[$class] as $name)
{
// check if the CSS file exists.
if (JFile::exists(JPATH_ROOT.'/media/com_costbenefitprojection/uikit-v2/css/components/'.$name.$style.$size.'.css'))
2015-12-01 05:06:34 +00:00
{
// load the css.
$this->document->addStyleSheet(JURI::root(true) .'/media/com_costbenefitprojection/uikit-v2/css/components/'.$name.$style.$size.'.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
2015-12-01 05:06:34 +00:00
}
// check if the JavaScript file exists.
if (JFile::exists(JPATH_ROOT.'/media/com_costbenefitprojection/uikit-v2/js/components/'.$name.$size.'.js'))
2015-12-01 05:06:34 +00:00
{
// load the js.
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/uikit-v2/js/components/'.$name.$size.'.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('type' => 'text/javascript', 'async' => 'async') : true);
2015-12-01 05:06:34 +00:00
}
}
}
}
// add the google chart builder class.
2015-12-01 05:06:34 +00:00
require_once JPATH_COMPONENT_ADMINISTRATOR.'/helpers/chartbuilder.php';
// load the google chart js.
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/js/google.jsapi.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
$this->document->addScript('https://canvg.googlecode.com/svn/trunk/rgbcolor.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
$this->document->addScript('https://canvg.googlecode.com/svn/trunk/canvg.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
2015-12-01 05:06:34 +00:00
// Add the CSS for Footable.
$this->document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable-v2/css/footable.core.min.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
2015-12-01 05:06:34 +00:00
// Use the Metro Style
2015-12-01 05:06:34 +00:00
if (!isset($this->fooTableStyle) || 0 == $this->fooTableStyle)
{
$this->document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable-v2/css/footable.metro.min.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
2015-12-01 05:06:34 +00:00
}
// Use the Legacy Style.
2015-12-01 05:06:34 +00:00
elseif (isset($this->fooTableStyle) && 1 == $this->fooTableStyle)
{
$this->document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable-v2/css/footable.standalone.min.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
2015-12-01 05:06:34 +00:00
}
// Add the JavaScript for Footable
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable-v2/js/footable.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable-v2/js/footable.sort.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable-v2/js/footable.filter.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable-v2/js/footable.paginate.js', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/javascript');
2015-12-01 05:06:34 +00:00
// add custom css
$this->document->addStyleSheet(JURI::root(true) ."/administrator/components/com_costbenefitprojection/assets/css/dashboard.css");
// add custom js
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/js/chartMenu.js');
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/js/table2excel.js');
2015-12-01 05:06:34 +00:00
// set chart stuff
$this->Chart['backgroundColor'] = $this->params->get('admin_chartbackground');
$this->Chart['width'] = $this->params->get('admin_mainwidth');
$this->Chart['chartArea'] = array('top' => $this->params->get('admin_chartareatop'), 'left' => $this->params->get('admin_chartarealeft'), 'width' => $this->params->get('site_chartareawidth').'%');
$this->Chart['legend'] = array( 'textStyle' => array('fontSize' => $this->params->get('site_legendtextstylefontsize'), 'color' => $this->params->get('site_legendtextstylefontcolor')));
$this->Chart['vAxis'] = array('textStyle' => array('color' => $this->params->get('site_vaxistextstylefontcolor')));
$this->Chart['hAxis']['textStyle'] = array('color' => $this->params->get('site_haxistextstylefontcolor'));
$this->Chart['hAxis']['titleTextStyle'] = array('color' => $this->params->get('site_haxistitletextstylefontcolor'));
// notice session controller
$session = JFactory::getSession();
$this->menuNotice = $session->get( 'CT_SubMenuNotice', 'empty' );
if ($this->menuNotice == 'empty' ){
$session->set( 'CT_SubMenuNotice', '1' );
}
elseif ($this->menuNotice < 6 )
{
$this->menuNotice++;
$session->set( 'CT_SubMenuNotice', $this->menuNotice);
}
// add the document default css file
$this->document->addStyleSheet(JURI::root(true) .'/components/com_costbenefitprojection/assets/css/companyresults.css', (CostbenefitprojectionHelper::jVersion()->isCompatible('3.8.0')) ? array('version' => 'auto') : 'text/css');
}
2015-12-01 05:06:34 +00:00
/**
* Setting the toolbar
*/
protected function addToolBar()
{
// adding the joomla toolbar to the front
JLoader::register('JToolbarHelper', JPATH_ADMINISTRATOR.'/includes/toolbar.php');
2015-12-01 05:06:34 +00:00
// set help url for this view if found
$help_url = CostbenefitprojectionHelper::getHelpUrl('companyresults');
if (CostbenefitprojectionHelper::checkString($help_url))
{
JToolbarHelper::help('COM_COSTBENEFITPROJECTION_HELP_MANAGER', false, $help_url);
}
// now initiate the toolbar
$this->toolbar = JToolbar::getInstance();
}
/**
2015-12-01 05:06:34 +00:00
* 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, $sorten = false, $length = 40)
{
// use the helper htmlEscape method instead.
2015-12-01 05:06:34 +00:00
return CostbenefitprojectionHelper::htmlEscape($var, $this->_charset, $sorten, $length);
}
}