Current Path :
/
home
/
develito
/
www
/
components
/
com_jevents
/
views
/
icalrepeat
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/www/components/com_jevents/views/icalrepeat/view.html.php
<?php /** * JEvents Component for Joomla! 3.x * * @version $Id: view.html.php 3012 2011-11-16 10:29:35Z geraintedwards $ * @package JEvents * @copyright Copyright (C) 2008-2025 GWESystems Ltd * @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html * @link http://www.jevents.net */ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); use Joomla\CMS\Language\Text; use Joomla\CMS\Filesystem\File; use Joomla\CMS\Filesystem\Path; use Joomla\CMS\Factory; use Joomla\CMS\HTML\HTMLHelper; use Joomla\CMS\Component\ComponentHelper; /** * HTML View class for the component frontend * * @static */ include_once(JEV_ADMINPATH . "/views/icalrepeat/view.html.php"); #[\AllowDynamicProperties] class IcalrepeatViewIcalrepeat extends AdminIcalrepeatViewIcalrepeat { var $jevlayout = null; function __construct($config = array()) { parent::__construct($config); // used only for helper functions $this->jevlayout = "default"; $this->addHelperPath(realpath(dirname(__FILE__) . "/../default/helpers")); $this->addHelperPath(JPATH_BASE . '/' . 'templates' . '/' . Factory::getApplication()->getTemplate() . '/' . 'html' . '/' . JEV_COM_COMPONENT . '/' . "helpers"); } function edit($tpl = null) { $document = Factory::getDocument(); // Set editstrings var just incase and to avoid IDE reporting not set. $editStrings = ""; include(JEV_ADMINLIBS . "/editStrings.php"); $document->addScriptDeclaration($editStrings); JEVHelper::script('editicalJQ.js', 'components/' . JEV_COM_COMPONENT . '/assets/js/'); $params = ComponentHelper::getParams(JEV_COM_COMPONENT); if (!GSLMSIE10 && $params->get("newfrontendediting", 1)) { JEVHelper::script('editicalGSL.js', 'components/' . JEV_COM_COMPONENT . '/assets/js/'); } JEVHelper::script('view_detailJQ.js', 'components/' . JEV_COM_COMPONENT . '/assets/js/'); JEVHelper::script('JevStdRequiredFieldsJQ.js', 'components/' . JEV_COM_COMPONENT . '/assets/js/'); $document->setTitle(Text::_('EDIT_ICAL_REPEAT')); // Set toolbar items for the page JToolbarHelper::title(Text::_('EDIT_ICAL_REPEAT'), 'jevents'); $bar = JToolBar::getInstance('toolbar'); if (JEVHelper::isEventEditor()) { JToolbarHelper::apply('icalrepeat.apply', "JEV_SAVE"); } JToolbarHelper::apply('icalrepeat.save', "JEV_SAVE_CLOSE"); $params = ComponentHelper::getParams(JEV_COM_COMPONENT); if ($params->get("editpopup", 0) && JEVHelper::isEventCreator()) { $document->addStyleDeclaration("div#toolbar-box{margin:10px 10px 0px 10px;} div#jevents {margin:0px 10px 10px 10px;} "); $this->toolbarButton("icalevent.close", 'cancel', 'cancel', 'JEV_SUBMITCANCEL', false); Factory::getApplication()->input->set('tmpl', 'component'); //force the component template } else { $this->toolbarButton("icalevent.detail", 'cancel', 'cancel', 'JEV_SUBMITCANCEL', false); } //JToolbarHelper::help( 'screen.icalrepeat.edit', true); $params = ComponentHelper::getParams(JEV_COM_COMPONENT); if (!$params->get("newfrontendediting", 1)) { $this->_adminStart(); } // load Joomla javascript classes HTMLHelper::_('behavior.core'); $this->setLayout("edit"); $this->setupEditForm(); JEVHelper::componentStylesheet($this, "editextra.css"); jimport('joomla.filesystem.file'); // Lets check if we have editted before! if not... rename the custom file. if (File::exists(JPATH_SITE . "/components/com_jevents/assets/css/jevcustom.css")) { // It is definitely now created, lets load it! JEVHelper::stylesheet('jevcustom.css', 'components/' . JEV_COM_COMPONENT . '/assets/css/'); } parent::displaytemplate($tpl); if (!$params->get("newfrontendediting", 1)) { $this->_adminEnd(); } } function toolbarButton($task = '', $icon = '', $iconOver = '', $alt = '', $listSelect = true) { $bar = JToolBar::getInstance('toolbar'); // Add a standard button $bar->appendButton('Jev', $icon, $alt, $task, $listSelect); } function _adminStart() { list($this->year, $this->month, $this->day) = JEVHelper::getYMD(); $app = Factory::getApplication(); $this->Itemid = JEVHelper::getItemid(); $this->datamodel = new JEventsDataModel(); $app->triggerEvent('onJEventsHeader', array($this)); ?> <div style="clear:both" <?php $params = ComponentHelper::getParams(JEV_COM_COMPONENT); echo (!$app->isClient('administrator') && $params->get("darktemplate", 0)) ? "class='jeventsdark'" : "class='jeventslight'"; ?>> <div id="toolbar-box"> <?php $bar = JToolBar::getInstance('toolbar'); $barhtml = $bar->render(); //$barhtml = str_replace('href="#"','href="javascript void();"',$barhtml); //$barhtml = str_replace('submitbutton','return submitbutton',$barhtml); echo $barhtml; $title = ""; echo $title; ?> </div> <?php $app->triggerEvent('onJEventsFooter', array($this)); } function _adminEnd() { ?> </div> <?php } function _xadminStart() { ?> <div id="content-box" style="clear:both"> <div class="border"> <div class="padding"> <div id="toolbar-box"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <?php $bar = JToolBar::getInstance('toolbar'); $barhtml = $bar->render(); //$barhtml = str_replace('href="#"','href="javascript void();"',$barhtml); //$barhtml = str_replace('submitbutton','return submitbutton',$barhtml); echo $barhtml; $title = Factory::getApplication()->get('JComponentTitle'); echo $title; ?> <div class="clr"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> <div id="toolbar-box2"> <div class="t"> <div class="t"> <div class="t"></div> </div> </div> <div class="m"> <?php } // This handles all methods where the view is passed as the first argument function _xadminEnd() { ?> <div class="clr"></div> </div> <div class="b"> <div class="b"> <div class="b"></div> </div> </div> </div> </div> </div> </div> <?php } function __call($name, $arguments) { if (strpos($name, "_") === 0) { $name = "ViewHelper" . ucfirst(\Joomla\String\StringHelper::substr($name, 1)); } $helper = ucfirst($this->jevlayout) . ucfirst($name); if (!$this->loadHelper($helper)) { $helper = "Default" . ucfirst($name); if (!$this->loadHelper($helper)) { return; } } $args = array_unshift($arguments, $this); if (class_exists($helper)) { if (class_exists("ReflectionClass")) { $reflectionObj = new ReflectionClass($helper); if (method_exists($reflectionObj, "newInstanceArgs")) { $var = $reflectionObj->newInstanceArgs($arguments); } else { $var = $this->CreateClass($helper, $arguments); } } else { $var = $this->CreateClass($helper, $arguments); } return; } else if (is_callable($helper)) { return call_user_func_array($helper, $arguments); } } function loadHelper($file = null) { if (function_exists($file) || class_exists($file)) return true; // load the template script jimport('joomla.filesystem.path'); $helper = Path::find($this->_path['helper'], $this->_createFileName('helper', array('name' => $file))); if ($helper != false) { // include the requested template filename in the local scope include_once $helper; } return $helper; } protected function CreateClass($className, $params) { switch (count($params)) { case 0: return new $className(); break; case 1: return new $className($params[0]); break; case 2: return new $className($params[0], $params[1]); break; case 3: return new $className($params[0], $params[1], $params[2]); break; case 4: return new $className($params[0], $params[1], $params[2], $params[3]); break; case 5: return new $className($params[0], $params[1], $params[2], $params[3], $params[4]); break; case 6: return new $className($params[0], $params[1], $params[2], $params[3], $params[4], $params[5]); break; case 7: return new $className($params[0], $params[1], $params[2], $params[3], $params[4], $params[5], $params[6]); break; case 8: return new $className($params[0], $params[1], $params[2], $params[3], $params[4], $params[5], $params[6], $params[7]); break; case 9: return new $className($params[0], $params[1], $params[2], $params[3], $params[4], $params[5], $params[6], $params[7], $params[8]); break; case 10: return new $className($params[0], $params[1], $params[2], $params[3], $params[4], $params[5], $params[6], $params[7], $params[8], $params[9]); break; default: echo "Too many arguments"; return null; break; } } function toolbarLinkButton($task = '', $icon = '', $iconOver = '', $alt = '') { $bar = JToolBar::getInstance('toolbar'); // Add a standard button $bar->appendButton('Jevlink', $icon, $alt, $task, false); } }