2015-12-01 05:06:34 +00:00
|
|
|
<?php
|
|
|
|
/*----------------------------------------------------------------------------------| www.giz.de |----/
|
|
|
|
Deutsche Gesellschaft für International Zusammenarbeit (GIZ) Gmb
|
|
|
|
/-------------------------------------------------------------------------------------------------------/
|
|
|
|
|
2016-02-24 10:56:21 +00:00
|
|
|
@version 3.3.7
|
2016-02-26 00:36:32 +00:00
|
|
|
@build 26th February, 2016
|
2015-12-01 05:06:34 +00:00
|
|
|
@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
|
2016-01-14 07:44:50 +00:00
|
|
|
jimport('joomla.application.component.view');
|
|
|
|
jimport('joomla.application.module.helper');
|
2015-12-01 05:06:34 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Costbenefitprojection View class for the Cpanel
|
|
|
|
*/
|
|
|
|
class CostbenefitprojectionViewCpanel extends JViewLegacy
|
|
|
|
{
|
|
|
|
// Overwriting JView display method
|
|
|
|
function display($tpl = null)
|
|
|
|
{
|
|
|
|
// 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();
|
2016-01-14 07:44:50 +00:00
|
|
|
// Initialise variables.
|
2015-12-17 14:38:15 +00:00
|
|
|
$this->items = $this->get('Items');
|
2015-12-01 05:06:34 +00:00
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Check for errors.
|
2015-12-01 05:06:34 +00:00
|
|
|
if (count($errors = $this->get('Errors')))
|
|
|
|
{
|
|
|
|
JError::raiseWarning(500, implode("\n", $errors));
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Set the toolbar
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->addToolBar();
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// set the document
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->_prepareDocument();
|
|
|
|
|
|
|
|
parent::display($tpl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepares the document
|
|
|
|
*/
|
|
|
|
protected function _prepareDocument()
|
|
|
|
{
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// always make sure jquery is loaded.
|
2015-12-01 05:06:34 +00:00
|
|
|
JHtml::_('jquery.framework');
|
2016-01-14 07:44:50 +00:00
|
|
|
// Load the header checker class.
|
2015-12-01 05:06:34 +00:00
|
|
|
require_once( JPATH_COMPONENT_SITE.'/helpers/headercheck.php' );
|
2016-01-14 07:44:50 +00:00
|
|
|
// Initialize the header checker.
|
2015-12-01 05:06:34 +00:00
|
|
|
$HeaderCheck = new HeaderCheck;
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Load uikit options.
|
2015-12-01 05:06:34 +00:00
|
|
|
$uikit = $this->params->get('uikit_load');
|
2016-01-14 07:44:50 +00:00
|
|
|
// Set script size.
|
2015-12-01 05:06:34 +00:00
|
|
|
$size = $this->params->get('uikit_min');
|
2016-01-14 07:44:50 +00:00
|
|
|
// Set css style.
|
2015-12-01 05:06:34 +00:00
|
|
|
$style = $this->params->get('uikit_style');
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// 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/css/uikit'.$style.$size.'.css');
|
|
|
|
}
|
2016-01-14 07:44:50 +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/js/uikit'.$size.'.js');
|
|
|
|
}
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Load the script to find all uikit components needed.
|
2015-12-01 05:06:34 +00:00
|
|
|
if ($uikit != 2)
|
|
|
|
{
|
2016-01-14 07:44:50 +00:00
|
|
|
// Set the default uikit components in this view.
|
2015-12-01 05:06:34 +00:00
|
|
|
$uikitComp = array();
|
2015-12-02 02:42:27 +00:00
|
|
|
$uikitComp[] = 'data-uk-tooltip';
|
2015-12-01 05:06:34 +00:00
|
|
|
$uikitComp[] = 'data-uk-grid';
|
|
|
|
$uikitComp[] = 'uk-accordion';
|
|
|
|
$uikitComp[] = 'data-uk-lightbox';
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Get field uikit components needed in this view.
|
2015-12-01 05:06:34 +00:00
|
|
|
$uikitFieldComp = $this->get('UikitComp');
|
|
|
|
if (isset($uikitFieldComp) && CostbenefitprojectionHelper::checkArray($uikitFieldComp))
|
|
|
|
{
|
|
|
|
if (isset($uikitComp) && CostbenefitprojectionHelper::checkArray($uikitComp))
|
|
|
|
{
|
|
|
|
$uikitComp = array_merge($uikitComp, $uikitFieldComp);
|
|
|
|
$uikitComp = array_unique($uikitComp);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$uikitComp = $uikitFieldComp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Load the needed uikit components in this view.
|
2015-12-01 05:06:34 +00:00
|
|
|
if ($uikit != 2 && isset($uikitComp) && CostbenefitprojectionHelper::checkArray($uikitComp))
|
|
|
|
{
|
2016-01-14 07:44:50 +00:00
|
|
|
// load just in case.
|
2015-12-01 05:06:34 +00:00
|
|
|
jimport('joomla.filesystem.file');
|
2016-01-14 07:44:50 +00:00
|
|
|
// loading...
|
2015-12-01 05:06:34 +00:00
|
|
|
foreach ($uikitComp as $class)
|
|
|
|
{
|
|
|
|
foreach (CostbenefitprojectionHelper::$uk_components[$class] as $name)
|
|
|
|
{
|
2016-01-14 07:44:50 +00:00
|
|
|
// check if the CSS file exists.
|
2015-12-01 05:06:34 +00:00
|
|
|
if (JFile::exists(JPATH_ROOT.'/media/com_costbenefitprojection/uikit/css/components/'.$name.$style.$size.'.css'))
|
|
|
|
{
|
2016-01-14 07:44:50 +00:00
|
|
|
// load the css.
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/media/com_costbenefitprojection/uikit/css/components/'.$name.$style.$size.'.css');
|
|
|
|
}
|
2016-01-14 07:44:50 +00:00
|
|
|
// check if the JavaScript file exists.
|
2015-12-01 05:06:34 +00:00
|
|
|
if (JFile::exists(JPATH_ROOT.'/media/com_costbenefitprojection/uikit/js/components/'.$name.$size.'.js'))
|
|
|
|
{
|
2016-01-14 07:44:50 +00:00
|
|
|
// load the js.
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/uikit/js/components/'.$name.$size.'.js');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// add the google chart builder class.
|
2015-12-01 05:06:34 +00:00
|
|
|
require_once JPATH_COMPONENT_ADMINISTRATOR.'/helpers/chartbuilder.php';
|
2016-01-14 07:44:50 +00:00
|
|
|
// load the google chart js.
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->document->addScript(JURI::root(true) .'/media/com_costbenefitprojection/js/google.jsapi.js');
|
|
|
|
$this->document->addScript('https://canvg.googlecode.com/svn/trunk/rgbcolor.js');
|
|
|
|
$this->document->addScript('https://canvg.googlecode.com/svn/trunk/canvg.js');
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Add the CSS for Footable.
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->document->addStyleSheet(JURI::root() .'media/com_costbenefitprojection/footable/css/footable.core.min.css');
|
|
|
|
|
2016-01-14 07:44:50 +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/css/footable.metro.min.css');
|
|
|
|
}
|
2016-01-14 07:44:50 +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/css/footable.standalone.min.css');
|
|
|
|
}
|
|
|
|
|
2016-01-14 07:44:50 +00:00
|
|
|
// Add the JavaScript for Footable
|
2015-12-01 05:06:34 +00:00
|
|
|
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.js');
|
|
|
|
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.sort.js');
|
|
|
|
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.filter.js');
|
|
|
|
$this->document->addScript(JURI::root() .'media/com_costbenefitprojection/footable/js/footable.paginate.js');
|
2016-01-14 07:44:50 +00:00
|
|
|
// load the meta description
|
2015-12-01 05:06:34 +00:00
|
|
|
if ($this->params->get('menu-meta_description'))
|
|
|
|
{
|
|
|
|
$this->document->setDescription($this->params->get('menu-meta_description'));
|
|
|
|
}
|
2016-01-14 07:44:50 +00:00
|
|
|
// load the key words if set
|
2015-12-01 05:06:34 +00:00
|
|
|
if ($this->params->get('menu-meta_keywords'))
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('keywords', $this->params->get('menu-meta_keywords'));
|
|
|
|
}
|
2016-01-14 07:44:50 +00:00
|
|
|
// check the robot params
|
2015-12-01 05:06:34 +00:00
|
|
|
if ($this->params->get('robots'))
|
|
|
|
{
|
|
|
|
$this->document->setMetadata('robots', $this->params->get('robots'));
|
|
|
|
}
|
|
|
|
// add the document default css file
|
|
|
|
$this->document->addStyleSheet(JURI::root(true) .'/components/com_costbenefitprojection/assets/css/cpanel.css');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Setting the toolbar
|
|
|
|
*/
|
|
|
|
protected function addToolBar()
|
|
|
|
{
|
|
|
|
// adding the joomla toolbar to the front
|
|
|
|
JLoader::register('JToolbarHelper', JPATH_ADMINISTRATOR.'/includes/toolbar.php');
|
|
|
|
|
|
|
|
// set help url for this view if found
|
|
|
|
$help_url = CostbenefitprojectionHelper::getHelpUrl('cpanel');
|
|
|
|
if (CostbenefitprojectionHelper::checkString($help_url))
|
|
|
|
{
|
|
|
|
JToolbarHelper::help('COM_COSTBENEFITPROJECTION_HELP_MANAGER', false, $help_url);
|
|
|
|
}
|
|
|
|
// now initiate the toolbar
|
|
|
|
$this->toolbar = JToolbar::getInstance();
|
2016-01-14 07:44:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the modules published in a position
|
|
|
|
*/
|
|
|
|
public function getModules($position, $seperator = '', $class = '')
|
|
|
|
{
|
|
|
|
// set default
|
|
|
|
$found = false;
|
|
|
|
// check if we aleady have these modules loaded
|
|
|
|
if (isset($this->setModules[$position]))
|
|
|
|
{
|
|
|
|
$found = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// this is where you want to load your module position
|
|
|
|
$modules = JModuleHelper::getModules($position);
|
|
|
|
if ($modules)
|
|
|
|
{
|
|
|
|
// set the place holder
|
|
|
|
$this->setModules[$position] = array();
|
|
|
|
foreach($modules as $module)
|
|
|
|
{
|
|
|
|
$this->setModules[$position][] = JModuleHelper::renderModule($module);
|
|
|
|
}
|
|
|
|
$found = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// check if modules were found
|
|
|
|
if ($found && isset($this->setModules[$position]) && CostbenefitprojectionHelper::checkArray($this->setModules[$position]))
|
|
|
|
{
|
|
|
|
// set class
|
|
|
|
if (CostbenefitprojectionHelper::checkString($class))
|
|
|
|
{
|
|
|
|
$class = ' class="'.$class.'" ';
|
|
|
|
}
|
|
|
|
// set seperating return values
|
|
|
|
switch($seperator)
|
|
|
|
{
|
|
|
|
case 'none':
|
|
|
|
return implode('', $this->setModules[$position]);
|
|
|
|
break;
|
|
|
|
case 'div':
|
|
|
|
return '<div'.$class.'>'.implode('</div><div'.$class.'>', $this->setModules[$position]).'</div>';
|
|
|
|
break;
|
|
|
|
case 'list':
|
|
|
|
return '<ul'.$class.'><li>'.implode('</li><li>', $this->setModules[$position]).'</li></ul>';
|
|
|
|
break;
|
|
|
|
case 'array':
|
|
|
|
case 'Array':
|
|
|
|
return $this->setModules[$position];
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return implode('<br />', $this->setModules[$position]);
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
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.
|
|
|
|
return CostbenefitprojectionHelper::htmlEscape($var, $this->_charset, $sorten, $length);
|
|
|
|
}
|
|
|
|
}
|