@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'); // get user type $useris = CostbenefitprojectionHelper::userIs($this->user->id); $usergroup = CostbenefitprojectionHelper::setGroupNames($this->user->get('groups')); // load modules if public $login_cp = array(); $public_cp = array(); $top_cp = array(); if(!$useris) { jimport('joomla.application.module.helper'); // this is where you want to load your module position $modulesl = JModuleHelper::getModules('login-cp'); foreach($modulesl as $module) { $login_cp[] = JModuleHelper::renderModule($module); } // this where you want to load you module position $modulesp = JModuleHelper::getModules('public-cp'); foreach($modulesp as $module) { $public_cp[] = JModuleHelper::renderModule($module); } // this is where you want to load your module position $modulest = JModuleHelper::getModules('top-cp'); foreach($modulest as $module) { $top_cp[] = JModuleHelper::renderModule($module); } } // quick header fix function function setHeaderString($n) { return CostbenefitprojectionHelper::safeString($n,'Ww'); } // setting the published state function setPublised($item) { $state = ''.$item->published.''; switch($item->published) { case 1: // Published $state = ''; break; case 0: // UnPublished $state = ''; break; case 2: // Archived $state = ''; break; case -2: // Trashed $state = ''; break; } return $state; } // set scaling factor link function setScalingFactorLink($item) { $user = JFactory::getUser(); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->id || $item->checked_out == 0; $userChkOut = JFactory::getUser($item->checked_out); $canDo = CostbenefitprojectionHelper::getActions('scaling_factor',$item,'scaling_factors'); if ($canDo->get('scaling_factor.edit')) { if ($item->checked_out && $canCheckin) { $link = '' . $item->causerisk_name. ''; $link .= JHtml::_('jgrid.checkedout', $item->id, $userChkOut->name, $item->checked_out_time, 'scaling_factors.', $canCheckin).''; } elseif ($item->checked_out && !$canCheckin) { $link = '' . $item->causerisk_name; $link .= JHtml::_('jgrid.checkedout', $item->id, $userChkOut->name, $item->checked_out_time, 'scaling_factors.', $canCheckin).''; } else { $link = '' . $item->causerisk_name. ''; } } else { $link = '' . $item->causerisk_name . ''; } return $link; } // set intervention link function setInterventionLink($item) { $user = JFactory::getUser(); $canCheckin = $user->authorise('core.manage', 'com_checkin') || $item->checked_out == $user->id || $item->checked_out == 0; $userChkOut = JFactory::getUser($item->checked_out); $canDo = CostbenefitprojectionHelper::getActions('intervention',$item,'interventions'); if ($canDo->get('intervention.edit')) { if ($item->checked_out && $canCheckin) { $link = '' . $item->name. ''; $link .= JHtml::_('jgrid.checkedout', $item->id, $userChkOut->name, $item->checked_out_time, 'interventions.', $canCheckin).''; } elseif ($item->checked_out && !$canCheckin) { $link = '' . $item->name; $link .= JHtml::_('jgrid.checkedout', $item->id, $userChkOut->name, $item->checked_out_time, 'interventions.', $canCheckin).''; } else { $link = '' . $item->name. ''; } } else { $link = '' . $item->name . ''; } return $link; } // setting the intervetnion type function setInterventionType($item) { $state = ''.$item->type.''; switch($item->type) { case 1: // Single $state = ''.JText::_('COM_COSTBENEFITPROJECTION_SINGLE').''; break; case 2: // Cluster $state = ''.JText::_('COM_COSTBENEFITPROJECTION_CLUSTER').''; break; } return $state; } // setting the intervetnion share function setInterventionShare($item) { $state = ''.$item->share.''; switch($item->share) { case 1: // Only Me $state = ''.JText::_('COM_COSTBENEFITPROJECTION_ONLY_ME').''; break; case 2: // My Service Provider $state = ''.JText::_('COM_COSTBENEFITPROJECTION_MY_SERVICE_PROVIDER').''; break; break; case 3: // All Service Providers $state = ''.JText::_('COM_COSTBENEFITPROJECTION_ALL_SERVICE_PROVIDERS').''; break; } return $state; } // set the intervention details function setIntervention($item) { return 'not ready yet, will be soon...'; } ?>
toolbar->render(); ?>

.......