Beispiel #1
0
	/**
	 * Creates the Event Feed of the Category
	 */
	function display()
	{
		$app = JFactory::getApplication();
		$doc = JFactory::getDocument();

		// Get some data from the model
		$app->input->set('limit', $app->getCfg('feed_limit'));
		$rows = $this->get('Items');

		if (!empty($rows)) {
			foreach ($rows as $row)
			{
				// strip html from feed item title
				$title = $this->escape($row->title);
				$title = html_entity_decode($title);

				// strip html from feed item category
				if (!empty($row->categories)) {
					$category = array();
					foreach ($row->categories AS $category2) {
						$category[] = $category2->catname;
					}

					// adding the , to the list when there are multiple category's
					$category = $this->escape(implode(', ', $category));
					$category = html_entity_decode($category);
				} else {
					$category = '';
				}

				//Format date and time
				$displaydate = JemOutput::formatLongDateTime($row->dates, $row->times,$row->enddates, $row->endtimes);

				// url link to event
				$link = JRoute::_(JemHelperRoute::getEventRoute($row->id));

				// feed item description text
				$description  = JText::_('COM_JEM_TITLE').': '.$title.'<br />';
				$description .= JText::_('COM_JEM_VENUE').': '.$row->venue.' / '.$row->city.'<br />';
				$description .= JText::_('COM_JEM_CATEGORY').': '.$category.'<br />';
				$description .= JText::_('COM_JEM_DATE').': '.$displaydate.'<br />';
				$description .= JText::_('COM_JEM_DESCRIPTION').': '.$row->fulltext;

				$created = ($row->created ? date('r', strtotime($row->created)) : '');

				// load individual item creator class
				$item = new JFeedItem();
				$item->title 		= $title;
				$item->link 		= $link;
				$item->description 	= $description;
				$item->date 		= $created;
				$item->category 	= $category;

				// loads item info into rss array
				$doc->addItem($item);
			}
		}
	}
Beispiel #2
0
 public function getObjectLink($id)
 {
     $db = JFactory::getDBO();
     $query = 'SELECT a.id, CASE WHEN CHAR_LENGTH(a.alias) THEN CONCAT_WS(\':\', a.id, a.alias) ELSE a.id END as slug' . ' FROM #__jem_events AS a' . ' WHERE id = ' . $id;
     $db->setQuery($query);
     $slug = $db->loadResult();
     $JEMRouter = JPATH_SITE . '/components/com_jem/helpers/route.php';
     if (is_file($JEMRouter)) {
         require_once $JEMRouter;
         $link = JRoute::_(JemHelperRoute::getEventRoute($slug));
     } else {
         $link = JRoute::_('index.php?option=com_jem&view=event&id=' . $slug);
     }
     return $link;
 }
Beispiel #3
0
     }
 }
 $eventname = '<div class="eventName">' . JText::_('COM_JEM_TITLE_SHORT') . ': ' . $this->escape($row->title) . '</div>';
 $detaillink = JRoute::_(JemHelperRoute::getEventRoute($row->slug));
 //initialize variables
 $multicatname = '';
 $colorpic = '';
 $nr = count($row->categories);
 $ix = 0;
 $content = '';
 $contentend = '';
 $catz = array();
 //walk through categories assigned to an event
 foreach ($row->categories as $category) {
     //Currently only one id possible...so simply just pick one up...
     $detaillink = JRoute::_(JemHelperRoute::getEventRoute($row->slug));
     //wrap a div for each category around the event for show hide toggler
     $catz[] = 'cat' . $category->id;
     //attach category color if any in front of the catname
     if ($category->color) {
         $multicatname .= '<span class="colorpic" style="width:6px; background-color: ' . $category->color . ';"></span>&nbsp;' . $category->catname;
     } else {
         $multicatname .= $category->catname;
     }
     $ix++;
     if ($ix != $nr) {
         $multicatname .= ', ';
     }
     //attach category color if any in front of the event title in the calendar overview
     if (isset($category->color) && $category->color) {
         $colorpic .= '<span class="colorpic" style="width:6px; background-color: ' . $category->color . ';"></span>';
						<?php endif; ?>
					</td>
				<?php endif; ?>

				<td headers="jem_date" align="left">
					<?php
						echo JemOutput::formatShortDateTime($row->dates, $row->times,
							$row->enddates, $row->endtimes);
						echo JemOutput::formatSchemaOrgDateTime($row->dates, $row->times,
							$row->enddates, $row->endtimes);
					?>
				</td>

				<?php if (($this->jemsettings->showtitle == 1) && ($this->jemsettings->showdetails == 1)) : ?>
					<td headers="jem_title" align="left" valign="top">
						<a href="<?php echo JRoute::_(JemHelperRoute::getEventRoute($row->slug)); ?>" itemprop="url">
							<span itemprop="name"><?php echo $this->escape($row->title) . JemOutput::recurrenceicon($row); ?></span>
						</a><?php echo JemOutput::publishstateicon($row); ?>
					</td>
				<?php endif; ?>

				<?php if (($this->jemsettings->showtitle == 1) && ($this->jemsettings->showdetails == 0)) : ?>
					<td headers="jem_title" align="left" valign="top" itemprop="name">
						<?php echo $this->escape($row->title) . JemOutput::recurrenceicon($row) . JemOutput::publishstateicon($row); ?>
					</td>
				<?php endif; ?>

				<?php if ($this->jemsettings->showlocate == 1) : ?>
					<td headers="jem_location" align="left" valign="top">
						<?php if ($this->jemsettings->showlinkvenue == 1) : ?>
							<?php echo !empty($row->locid) ? "<a href='".JRoute::_(JemHelperRoute::getVenueRoute($row->venueslug))."'>".$this->escape($row->venue)."</a>" : '-'; ?>
        }
        ?>

				<td headers="jem_date">
					<?php 
        echo JemOutput::formatShortDateTime($row->dates, $row->times, $row->enddates, $row->endtimes);
        echo JemOutput::formatSchemaOrgDateTime($row->dates, $row->times, $row->enddates, $row->endtimes);
        ?>
				</td>

				<?php 
        if ($this->jemsettings->showtitle == 1 && $this->jemsettings->showdetails == 1) {
            ?>
					<td headers="jem_title">
						<a href="<?php 
            echo JRoute::_(JemHelperRoute::getEventRoute($row->slug));
            ?>
" itemprop="url">
							<span itemprop="name"><?php 
            echo $this->escape($row->title) . JemOutput::recurrenceicon($row);
            ?>
</span>
						</a>
					</td>
				<?php 
        }
        ?>

				<?php 
        if ($this->jemsettings->showtitle == 1 && $this->jemsettings->showdetails == 0) {
            ?>
Beispiel #6
0
	/**
	 * Get the return URL.
	 *
	 * If a "return" variable has been passed in the request
	 *
	 * @return	string	The return URL.
	 */
	protected function getReturnPage()
	{
		$return = JFactory::getApplication()->input->get('return', null, 'base64');

		if (empty($return) || !JUri::isInternal(urldecode(base64_decode($return)))) {
			if (!empty($this->_id)) {
				return JRoute::_(JemHelperRoute::getEventRoute($this->_id));
			}
			return JUri::base();
		}
		else {
			return urldecode(base64_decode($return));
		}
	}
Beispiel #7
0
<?php

/**
 * @package JEM
 * @copyright (C) 2013-2015 joomlaeventmanager.net
 * @copyright (C) 2005-2009 Christoph Lukes
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */
defined('_JEXEC') or die;
JHtml::_('bootstrap.tooltip');
$colspan = $this->event->waitinglist ? 10 : 9;
$detaillink = JRoute::_(JemHelperRoute::getEventRoute($this->event->id . ':' . $this->event->alias));
?>
<script type="text/javascript">
	function tableOrdering(order, dir, view)
	{
		var form = document.getElementById("adminForm");

		form.filter_order.value 	= order;
		form.filter_order_Dir.value	= dir;
		form.submit(view);
	}
</script>

<div id="jem" class="jem_attendees<?php 
echo $this->pageclass_sfx;
?>
">

<div class="topbox">
<?php 
Beispiel #8
0
	/**
	 * Creates the output for the Event view
	 */
	function display($tpl = null)
	{
		$jemsettings		= JemHelper::config();
		$settings			= JemHelper::globalattribs();
		$app				= JFactory::getApplication();
		$user				= JemFactory::getUser();
		$userId				= $user->get('id');
		$dispatcher			= JDispatcher::getInstance();
		$document 			= JFactory::getDocument();
		$model 				= $this->getModel();
		$menu 				= $app->getMenu();
		$menuitem			= $menu->getActive();
		$pathway 			= $app->getPathway();

		$this->params		= $app->getParams('com_jem');
		$this->item			= $this->get('Item');
		$this->print		= $app->input->getBool('print', false);
		$this->state		= $this->get('State');
		$this->user			= $user;
		$this->jemsettings	= $jemsettings;
		$this->settings		= $settings;

		$categories			= isset($this->item->categories) ? $this->item->categories : $this->get('Categories');
		$this->categories	= $categories;

		$this->registers	= $model->getRegisters($this->state->get('event.id'));
		$isregistered		= $this->get('UserIsRegistered');

		// check for data error
		if (empty($this->item)) {
			$app->enqueueMessage(JText::_('JERROR_AN_ERROR_HAS_OCCURRED'), 'error');
			return false;
		}

		// Check for errors.
		if (count($errors = $this->get('Errors'))) {
			JError::raiseWarning(500, implode("\n", $errors));
			return false;
		}

		// Create a shortcut for $item and params.
		$item   = $this->item;
		$params = $this->params;

		// Decide which parameters should take priority
		$useMenuItemParams = ($menuitem && $menuitem->query['option'] == 'com_jem'
		                                && $menuitem->query['view']   == 'event'
		                                && $menuitem->query['id']     == $item->id);

		// Add router helpers.
		$item->slug			= $item->alias ? ($item->id.':'.$item->alias) : $item->id;
		$item->venueslug	= $item->localias ? ($item->locid.':'.$item->localias) : $item->locid;

		// Check to see which parameters should take priority
		if ($useMenuItemParams) {
			// Merge so that the menu item params take priority
			$pagetitle = $params->def('page_title', $menuitem->title ? $menuitem->title : $item->title);
			$params->def('page_heading', $pagetitle);
			$pathway->setItemName(1, $menuitem->title);

			// Load layout from active query (in case it is an alternative menu item)
			if (isset($menuitem->query['layout'])) {
				$this->setLayout($menuitem->query['layout']);
			} else
			// Single-event menu item layout takes priority over alt layout for an event
			if ($layout = $item->params->get('event_layout')) {
				$this->setLayout($layout);
			}

			$item->params->merge($params);
		} else {
			// Merge the menu item params with the event params so that the event params take priority
			$pagetitle = $item->title;
			$params->set('page_title', $pagetitle);
			$params->set('page_heading', $pagetitle);
			$params->set('show_page_heading', 1); // ensure page heading is shown
			$pathway->addItem($pagetitle, JRoute::_(JemHelperRoute::getEventRoute($item->slug)));

			// Check for alternative layouts (since we are not in a single-event menu item)
			// Single-event menu item layout takes priority over alt layout for an event
			if ($layout = $item->params->get('event_layout')) {
				$this->setLayout($layout);
			}

			$temp = clone($params);
			$temp->merge($item->params);
			$item->params = $temp;
		}

		$offset = $this->state->get('list.offset');

		// Check the view access to the event (the model has already computed the values).
		if (!$item->params->get('access-view')) { // && !$item->params->get('show_noauth') &&  $user->get('guest')) { - not supported yet
			JError::raiseWarning(403, JText::_('JERROR_ALERTNOAUTHOR'));
			return;
		}

		if ($item->params->get('show_intro', '1') == '1') {
			$item->text = $item->introtext.' '.$item->fulltext;
		}
		elseif ($item->fulltext) {
			$item->text = $item->fulltext;
		}
		else  {
			$item->text = $item->introtext;
		}

		// Process the content plugins //
		JPluginHelper::importPlugin('content');
		$results = $dispatcher->trigger('onContentPrepare', array ('com_jem.event', &$item, &$this->params, $offset));

		$item->event = new stdClass();
		$results = $dispatcher->trigger('onContentAfterTitle', array('com_jem.event', &$item, &$this->params, $offset));
		$item->event->afterDisplayTitle = trim(implode("\n", $results));

		$results = $dispatcher->trigger('onContentBeforeDisplay', array('com_jem.event', &$item, &$this->params, $offset));
		$item->event->beforeDisplayContent = trim(implode("\n", $results));

		$results = $dispatcher->trigger('onContentAfterDisplay', array('com_jem.event', &$item, &$this->params, $offset));
		$item->event->afterDisplayContent = trim(implode("\n", $results));

		// Increment the hit counter of the event.
		if (!$this->params->get('intro_only') && $offset == 0) {
			$model->hit();
		}

		// Escape strings for HTML output
		$this->pageclass_sfx = htmlspecialchars($this->item->params->get('pageclass_sfx'));

		$this->print_link = JRoute::_(JemHelperRoute::getRoute($item->slug).'&print=1&tmpl=component');

		// Get images
		$this->dimage = JemImage::flyercreator($item->datimage, 'event');
		$this->limage = JemImage::flyercreator($item->locimage, 'venue');

		// Check if the user has permission to add things
		$permissions = new stdClass();
		$permissions->canAddEvent = $user->can('add', 'event');
		$permissions->canAddVenue = $user->can('add', 'venue');

		// Check if user can edit the event
		$permissions->canEditEvent = $user->can('edit', 'event', $item->id, $item->created_by);
		$permissions->canPublishEvent = $user->can('publish', 'event', $item->id, $item->created_by);

		// Check if user can edit the venue
		$permissions->canEditVenue = $user->can('edit', 'venue', $item->locid, $item->venueowner);
		$permissions->canPublishVenue = $user->can('publish', 'venue', $item->locid, $item->venueowner);

		$this->permissions = $permissions;
		$this->showeventstate = $permissions->canEditEvent || $permissions->canPublishEvent;
		$this->showvenuestate = $permissions->canEditVenue || $permissions->canPublishVenue;

		// Timecheck for registration
		$now = strtotime(date("Y-m-d"));
		$date = empty($item->dates) ? $now : strtotime($item->dates);
		$enddate = empty($item->enddates) ? $date : strtotime($item->enddates);
		$timecheck = $now - $date; // on open date $timecheck is 0

		// let's build the registration handling
		$formhandler = 0; // too late to unregister

		if ($isregistered) { // is the user allready registered at the event
			if ($now <= $enddate) { // allows unregister on open date
				$formhandler = 3;
			}
		} elseif ($timecheck > 0) { // check if it is too late to register and overwrite $formhandler
			$formhandler = 1;
		} elseif (!$userId) { // user doesn't have an ID (mostly guest)
			$formhandler = 2;
		} else {
			$formhandler = 4;
		}

		if ($formhandler >= 3) {
			$js = "function check(checkbox, send) {
				if(checkbox.checked==true){
					send.disabled = false;
				} else {
					send.disabled = true;
				}}";
			$document->addScriptDeclaration($js);
		}

		$this->formhandler = $formhandler;

		// generate Metatags
		$meta_keywords = array();
		if (!empty($this->item->meta_keywords)) {
			$keywords = explode(",", $this->item->meta_keywords);
			foreach ($keywords as $keyword) {
				if (preg_match("/[\/[\/]/", $keyword)) {
					$keyword = trim(str_replace("[", "", str_replace("]", "", $keyword)));
					$buffer = $this->keyword_switcher($keyword, $this->item, $categories, $jemsettings->formattime, $jemsettings->formatdate);
					if (!empty($buffer)) {
						$meta_keywords[] = $buffer;
					}
				} else {
					$meta_keywords[] = $keyword;
				}
			}

			$document->setMetadata('keywords', implode(', ', $meta_keywords));
		}

		if (!empty($this->item->meta_description)) {
			$description = explode("[", $this->item->meta_description);
			$description_content = "";
			foreach ($description as $desc) {
				$keyword = substr($desc, 0, strpos($desc, "]", 0));
				if ($keyword != "") {
					$description_content .= $this->keyword_switcher($keyword, $this->item, $categories, $jemsettings->formattime, $jemsettings->formatdate);
					$description_content .= substr($desc, strpos($desc, "]", 0) + 1);
				} else {
					$description_content .= $desc;
				}
			}
		} else {
			$description_content = "";
		}

		$document->setDescription(strip_tags($description_content));

		// load dispatcher for JEM plugins (comments)
		$item->pluginevent = new stdClass();
		if ($this->print) {
			$item->pluginevent->onEventEnd = false;
		} else {
			JPluginHelper::importPlugin('jem', 'comments');
			$results = $dispatcher->trigger('onEventEnd', array($item->did, $this->escape($item->title)));
			$item->pluginevent->onEventEnd = trim(implode("\n", $results));
		}

		// create flag
		if ($item->country) {
			$item->countryimg = JemHelperCountries::getCountryFlag($item->country);
		}

		$this->isregistered  = $isregistered;
		$this->dispatcher    = $dispatcher;
		$this->pageclass_sfx = htmlspecialchars($item->params->get('pageclass_sfx'));

		$this->_prepareDocument();

		parent::display($tpl);
	}
Beispiel #9
0
					<td class="center">
						<?php
						if (!empty($row->params) && $row->params->get('access-change', false)) :
							echo JHtml::_('grid.id', $i, $row->eventid);
						endif;
						?>
					</td>
					<?php endif; ?>

					<td headers="jem_date" align="left">
						<?php echo JemOutput::formatShortDateTime($row->dates, $row->times, $row->enddates, $row->endtimes); ?>
					</td>

					<?php if (($this->jemsettings->showtitle == 1) && ($this->jemsettings->showdetails == 1)) : ?>
					<td headers="jem_title" align="left" valign="top">
						<a href="<?php echo JRoute::_(JemHelperRoute::getEventRoute($row->slug)); ?>">
							<?php echo $this->escape($row->title) . JemOutput::recurrenceicon($row); ?>
						</a>
					</td>
					<?php endif; ?>

					<?php if (($this->jemsettings->showtitle == 1) && ($this->jemsettings->showdetails == 0)) : ?>
					<td headers="jem_title" align="left" valign="top">
						<?php echo $this->escape($row->title) . JemOutput::recurrenceicon($row); ?>
					</td>
					<?php endif; ?>

					<?php if ($this->jemsettings->showlocate == 1) : ?>
					<td headers="jem_location" align="left" valign="top">
						<?php
						if ($this->jemsettings->showlinkvenue == 1) :
Beispiel #10
0
 /**
  * Creates the output for the Event view
  */
 function display($tpl = null)
 {
     $jemsettings = JemHelper::config();
     $settings = JemHelper::globalattribs();
     $app = JFactory::getApplication();
     $user = JFactory::getUser();
     $userId = $user->get('id');
     $dispatcher = JEventDispatcher::getInstance();
     $document = JFactory::getDocument();
     $model = $this->getModel();
     $menu = $app->getMenu();
     $menuitem = $menu->getActive();
     $pathway = $app->getPathway();
     $jinput = $app->input;
     $this->KunenaConfig = $this->get('KunenaConfig');
     $this->params = $app->getParams('com_jem');
     $this->item = $this->get('Item');
     $this->print = $jinput->getBool('print');
     $this->state = $this->get('State');
     $this->user = $user;
     $this->jemsettings = $jemsettings;
     $this->settings = $settings;
     $categories = $this->get('Categories');
     $this->categories = $categories;
     $isregistered = $this->get('UserIsRegistered');
     // Check for errors.
     if (count($errors = $this->get('Errors'))) {
         JError::raiseWarning(500, implode("\n", $errors));
         return false;
     }
     // Create a shortcut for $item and params.
     $item = $this->item;
     $params = $this->params;
     $this->registers = $model->getRegisters($this->state->get('event.id'));
     // Decide which parameters should take priority
     $useMenuItemParams = $menuitem && $menuitem->query['option'] == 'com_jem' && $menuitem->query['view'] == 'event' && $menuitem->query['id'] == $item->id;
     // Add router helpers.
     $item->slug = $item->alias ? $item->id . ':' . $item->alias : $item->id;
     $item->venueslug = $item->localias ? $item->locid . ':' . $item->localias : $item->locid;
     // Check to see which parameters should take priority
     if ($useMenuItemParams) {
         // Merge so that the menu item params take priority
         $pagetitle = $params->def('page_title', $menuitem->title ? $menuitem->title : $item->title);
         $params->def('page_heading', $pagetitle);
         $pathway->setItemName(1, $menuitem->title);
         // Load layout from active query (in case it is an alternative menu item)
         if (isset($menuitem->query['layout'])) {
             $this->setLayout($menuitem->query['layout']);
         } else {
             // Single-event menu item layout takes priority over alt layout for an event
             if ($layout = $item->params->get('event_layout')) {
                 $this->setLayout($layout);
             }
         }
         $item->params->merge($params);
     } else {
         // Merge the menu item params with the event params so that the event params take priority
         $pagetitle = $item->title;
         $params->set('page_title', $pagetitle);
         $params->set('page_heading', $pagetitle);
         $params->set('show_page_heading', 1);
         // ensure page heading is shown
         $pathway->addItem($pagetitle, JRoute::_(JemHelperRoute::getEventRoute($item->slug)));
         // Check for alternative layouts (since we are not in a single-event menu item)
         // Single-event menu item layout takes priority over alt layout for an event
         if ($layout = $item->params->get('event_layout')) {
             $this->setLayout($layout);
         }
         $temp = clone $params;
         $temp->merge($item->params);
         $item->params = $temp;
     }
     $offset = $this->state->get('list.offset');
     // Check the view access to the event (the model has already computed the values).
     if ($item->params->get('access-view') == false) {
         JError::raiseWarning(403, JText::_('JERROR_ALERTNOAUTHOR'));
         return;
     }
     if ($item->params->get('show_intro', '1') == '1') {
         $item->text = $item->introtext . ' ' . $item->fulltext;
     } elseif ($item->fulltext) {
         $item->text = $item->fulltext;
     } else {
         $item->text = $item->introtext;
     }
     // Process the content plugins //
     JPluginHelper::importPlugin('content');
     $results = $dispatcher->trigger('onContentPrepare', array('com_jem.event', &$item, &$this->params, $offset));
     $item->event = new stdClass();
     $results = $dispatcher->trigger('onContentAfterTitle', array('com_jem.event', &$item, &$this->params, $offset));
     $item->event->afterDisplayTitle = trim(implode("\n", $results));
     $results = $dispatcher->trigger('onContentBeforeDisplay', array('com_jem.event', &$item, &$this->params, $offset));
     $item->event->beforeDisplayContent = trim(implode("\n", $results));
     $results = $dispatcher->trigger('onContentAfterDisplay', array('com_jem.event', &$item, &$this->params, $offset));
     $item->event->afterDisplayContent = trim(implode("\n", $results));
     // Increment the hit counter of the event.
     if (!$this->params->get('intro_only') && $offset == 0) {
         $model->hit();
     }
     //Escape strings for HTML output
     $this->pageclass_sfx = htmlspecialchars($this->item->params->get('pageclass_sfx'));
     $this->print_link = JRoute::_(JemHelperRoute::getRoute($item->slug) . '&print=1&tmpl=component');
     //Get images
     if ($item->datimage) {
         $this->dimage = JemImage::flyercreator($item->datimage, 'event');
     } else {
         $this->dimage = false;
     }
     if ($item->locimage) {
         $this->limage = JemImage::flyercreator($item->locimage, 'venue');
     } else {
         $this->limage = false;
     }
     $this->img_position = $settings->get('img_position', 1);
     // Check if the user has access to the add-eventform
     $maintainer = JemUser::ismaintainer('add');
     $genaccess = JemUser::validate_user($jemsettings->evdelrec, $jemsettings->delivereventsyes);
     if ($maintainer || $genaccess || $user->authorise('core.create', 'com_jem')) {
         $this->addeventlink = 1;
     } else {
         $this->addeventlink = 0;
     }
     // Check if the user has access to the add-venueform
     $maintainer2 = JemUser::venuegroups('add');
     $genaccess2 = JemUser::validate_user($jemsettings->locdelrec, $jemsettings->deliverlocsyes);
     if ($maintainer2 || $genaccess2) {
         $this->addvenuelink = 1;
     } else {
         $this->addvenuelink = 0;
     }
     // Check if user can edit
     $maintainer5 = JemUser::ismaintainer('edit', $item->did);
     $genaccess5 = JemUser::editaccess($jemsettings->eventowner, $item->created_by, $jemsettings->eventeditrec, $jemsettings->eventedit);
     if ($maintainer5 || $genaccess5 || $user->authorise('core.edit', 'com_jem')) {
         $this->allowedtoeditevent = 1;
     } else {
         $this->allowedtoeditevent = 0;
     }
     //Check if the user has access to the edit-venueform
     $maintainer3 = JemUser::venuegroups('edit');
     $genaccess3 = JemUser::editaccess($jemsettings->venueowner, $item->venueowner, $jemsettings->venueeditrec, $jemsettings->venueedit);
     if ($maintainer3 || $genaccess3) {
         $this->allowedtoeditvenue = 1;
     } else {
         $this->allowedtoeditvenue = 0;
     }
     //Timecheck for registration
     $now = strtotime(date("Y-m-d"));
     $date = strtotime($item->dates);
     $timecheck = $now - $date;
     //let's build the registration handling
     $formhandler = 0;
     //is the user allready registered at the event
     if ($isregistered) {
         $formhandler = 3;
     } elseif ($timecheck > 0 && !is_null($item->dates)) {
         //check if it is too late to register and overwrite $formhandler
         $formhandler = 1;
     } elseif (!$user->get('id')) {
         //is the user registered at joomla and overwrite $formhandler if not
         $formhandler = 2;
     } else {
         $formhandler = 4;
     }
     if ($formhandler >= 3) {
         $js = "function check(checkbox, send) {\n\t\t\t\tif(checkbox.checked==true){\n\t\t\t\t\tsend.disabled = false;\n\t\t\t\t} else {\n\t\t\t\t\tsend.disabled = true;\n\t\t\t\t}}";
         $document->addScriptDeclaration($js);
     }
     $this->formhandler = $formhandler;
     // generate Metatags
     $meta_keywords_content = "";
     if (!empty($this->item->meta_keywords)) {
         $keywords = explode(",", $this->item->meta_keywords);
         foreach ($keywords as $keyword) {
             if ($meta_keywords_content != "") {
                 $meta_keywords_content .= ", ";
             }
             if (preg_match("/[\\/[\\/]/", $keyword)) {
                 $keyword = trim(str_replace("[", "", str_replace("]", "", $keyword)));
                 $buffer = $this->keyword_switcher($keyword, $this->item, $categories, $jemsettings->formattime, $jemsettings->formatdate);
                 if ($buffer != "") {
                     $meta_keywords_content .= $buffer;
                 } else {
                     $meta_keywords_content = substr($meta_keywords_content, 0, strlen($meta_keywords_content) - 2);
                     // remove the comma and the white space
                 }
             } else {
                 $meta_keywords_content .= $keyword;
             }
         }
         $document->setMetadata('keywords', $meta_keywords_content);
     }
     if (!empty($this->item->meta_description)) {
         $description = explode("[", $this->item->meta_description);
         $description_content = "";
         foreach ($description as $desc) {
             $keyword = substr($desc, 0, strpos($desc, "]", 0));
             if ($keyword != "") {
                 $description_content .= $this->keyword_switcher($keyword, $this->item, $categories, $jemsettings->formattime, $jemsettings->formatdate);
                 $description_content .= substr($desc, strpos($desc, "]", 0) + 1);
             } else {
                 $description_content .= $desc;
             }
         }
     } else {
         $description_content = "";
     }
     $document->setDescription(strip_tags($description_content));
     # retrieve mapType setting
     $settings = JemHelper::globalattribs();
     $mapType = $settings->get('mapType', '0');
     switch ($mapType) {
         case '0':
             $type = 'ROADMAP';
             break;
         case '1':
             $type = 'SATELLITE';
             break;
         case '2':
             $type = 'HYBRID';
             break;
         case '3':
             $type = 'TERRAIN';
             break;
     }
     $this->mapType = $type;
     // load dispatcher for JEM plugins (comments)
     $item->pluginevent = new stdClass();
     if ($this->print) {
         $item->pluginevent->onEventEnd = false;
     } else {
         JPluginHelper::importPlugin('jem', 'comments');
         $results = $dispatcher->trigger('onEventEnd', array($item->did, $this->escape($item->title)));
         $item->pluginevent->onEventEnd = trim(implode("\n", $results));
     }
     //create flag
     if ($item->country) {
         $item->countryimg = JemHelperCountries::getCountryFlag($item->country);
     }
     $this->isregistered = $isregistered;
     $this->dispatcher = $dispatcher;
     $this->pageclass_sfx = htmlspecialchars($item->params->get('pageclass_sfx'));
     $this->_prepareDocument();
     parent::display($tpl);
 }
Beispiel #11
0
 /**
  * Creates the Event Feed
  */
 function display($cachable = false, $urlparams = false)
 {
     $app = JFactory::getApplication();
     $jinput = $app->input;
     $doc = JFactory::getDocument();
     // Get some data from the model
     $jinput->set('limit', $app->getCfg('feed_limit'));
     $rows = $this->get('Items');
     foreach ($rows as $row) {
         // strip html from feed item title
         $title = $this->escape($row->title);
         $title = html_entity_decode($title);
         // categories (object of stdclass to array), when there is something to show
         if (!empty($row->categories)) {
             $category = array();
             foreach ($row->categories as $category2) {
                 $category[] = $category2->catname;
             }
             // ading the , to the list when there are multiple category's
             $category = $this->escape(implode(', ', $category));
             $category = html_entity_decode($category);
         } else {
             $category = '';
         }
         //Format date and time
         $displaydate = JemOutput::formatLongDateTime($row->dates, $row->times, $row->enddates, $row->endtimes);
         // url link to event
         $link = JRoute::_(JemHelperRoute::getEventRoute($row->slug));
         // Venue
         $venue = "";
         if ($row->venue && $row->city) {
             $venue .= $row->venue . ' / ' . $row->city;
         }
         if ($row->venue && !$row->city) {
             $venue .= $row->venue;
         }
         if (!$row->venue && $row->city) {
             $venue .= $row->city;
         }
         if (!$row->venue && !$row->city) {
             $venue .= "";
         }
         // combine description variable
         $description = JText::_('COM_JEM_TITLE') . ': ' . $title . '<br />';
         if ($venue) {
             $description .= JText::_('COM_JEM_VENUE') . ': ' . $venue . '<br />';
         }
         $description .= JText::_('COM_JEM_CATEGORY') . ': ' . $category . '<br />';
         $description .= JText::_('COM_JEM_DATE') . ': ' . $displaydate . '<br />';
         $description .= JText::_('COM_JEM_DESCRIPTION') . ': ' . $row->introtext . $row->fulltext;
         # define pubdate
         $date = false;
         // load individual item creator class
         $item = new JFeedItem();
         $item->title = $title;
         $item->link = $link;
         $item->description = $description;
         $item->category = $category;
         if ($date) {
             $item->date = $date;
         }
         // loads item info into rss array
         $doc->addItem($item);
     }
 }
Beispiel #12
0
">
				<td>
					<a href="javascript:void(0)" onclick="if (window.parent) window.parent.<?php 
    echo $this->escape($function);
    ?>
('<?php 
    echo $item->id;
    ?>
', '<?php 
    echo $this->escape(addslashes($item->title));
    ?>
', '<?php 
    echo $this->escape(JemHelperRoute::getEventRoute($item->slug));
    ?>
', '<?php 
    echo $this->escape(JemHelperRoute::getEventRoute($item->slug));
    ?>
', '<?php 
    echo $this->escape($lang);
    ?>
',null);">
						<?php 
    echo $this->escape($item->title);
    ?>
</a>
				</td>
				<td class="center">
					<?php 
    echo $this->escape($item->access_level);
    ?>
				</td>
Beispiel #13
0
 static function icalAddEvent(&$calendartool, $event, $rows)
 {
     require_once JPATH_SITE . '/components/com_jem/classes/iCalcreator.class.php';
     $jemsettings = JemHelper::config();
     $settings = JemHelper::globalattribs();
     $config = JFactory::getConfig();
     $sitename = $config->get('sitename');
     # retrieve TimezoneName
     # if we have a timezone for the venue then that info will be used for the output
     if ($event->timezone) {
         # venue - timeZone
         $timezone_name = $event->timezone;
     } else {
         # global - TimeZone
         $timezone_name = JemHelper::getTimeZoneName();
     }
     // get categories names
     $categories = array();
     foreach ($event->categories as $c) {
         $categories[] = $c->catname;
     }
     // no start date...
     $validdate = JemHelper::isValidDate($event->dates);
     if (!$event->dates || !$validdate) {
         return false;
     }
     // make end date same as start date if not set
     if (!$event->enddates) {
         $event->enddates = $event->dates;
     }
     // start
     if (!preg_match('/([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})/', $event->dates, $start_date)) {
         JError::raiseError(0, JText::_('COM_JEM_ICAL_EXPORT_WRONG_STARTDATE_FORMAT'));
     }
     $date = array('year' => (int) $start_date[1], 'month' => (int) $start_date[2], 'day' => (int) $start_date[3]);
     // all day event if start time is not set
     if (!$event->times) {
         $dateparam = array('VALUE' => 'DATE');
         // for ical all day events, dtend must be send to the next day
         $event->enddates = strftime('%Y-%m-%d', strtotime($event->enddates . ' +1 day'));
         if (!preg_match('/([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})/', $event->enddates, $end_date)) {
             JError::raiseError(0, JText::_('COM_JEM_ICAL_EXPORT_WRONG_ENDDATE_FORMAT'));
         }
         $date_end = array('year' => $end_date[1], 'month' => $end_date[2], 'day' => $end_date[3]);
         $dateendparam = array('VALUE' => 'DATE');
     } else {
         if (!preg_match('/([0-9]{2}):([0-9]{2}):([0-9]{2})/', $event->times, $start_time)) {
             JError::raiseError(0, JText::_('COM_JEM_ICAL_EXPORT_WRONG_STARTTIME_FORMAT'));
         }
         $date['hour'] = $start_time[1];
         $date['min'] = $start_time[2];
         $date['sec'] = $start_time[3];
         $dateparam = array('VALUE' => 'DATE-TIME');
         if ($settings->get('ical_tz', 0) == 1) {
             $dateparam['TZID'] = $timezone_name;
         }
         if (!$event->endtimes || $event->endtimes == '00:00:00') {
             $event->endtimes = $event->times;
         }
         // if same day but end time < start time, change end date to +1 day
         if ($event->enddates == $event->dates && strtotime($event->dates . ' ' . $event->endtimes) < strtotime($event->dates . ' ' . $event->times)) {
             $event->enddates = strftime('%Y-%m-%d', strtotime($event->enddates . ' +1 day'));
         }
         if (!preg_match('/([0-9]{4})-([0-9]{1,2})-([0-9]{1,2})/', $event->enddates, $end_date)) {
             JError::raiseError(0, JText::_('COM_JEM_ICAL_EXPORT_WRONG_ENDDATE_FORMAT'));
         }
         $date_end = array('year' => $end_date[1], 'month' => $end_date[2], 'day' => $end_date[3]);
         if (!preg_match('/([0-9]{2}):([0-9]{2}):([0-9]{2})/', $event->endtimes, $end_time)) {
             JError::raiseError(0, JText::_('COM_JEM_ICAL_EXPORT_WRONG_STARTTIME_FORMAT'));
         }
         $date_end['hour'] = $end_time[1];
         $date_end['min'] = $end_time[2];
         $date_end['sec'] = $end_time[3];
         $dateendparam = array('VALUE' => 'DATE-TIME');
         if ($settings->get('ical_tz') == 1) {
             $dateendparam['TZID'] = $timezone_name;
         }
     }
     // item description text
     $description = $event->title . '\\n';
     $description .= JText::_('COM_JEM_CATEGORY') . ': ' . implode(', ', $categories) . '\\n';
     $link = JURI::root() . JemHelperRoute::getEventRoute($event->slug);
     $link = JRoute::_($link);
     $description .= JText::_('COM_JEM_ICS_LINK') . ': ' . $link . '\\n';
     // location
     $location = array($event->venue);
     if (isset($event->street) && !empty($event->street)) {
         $location[] = $event->street;
     }
     if (isset($event->postalCode) && !empty($event->postalCode) && isset($event->city) && !empty($event->city)) {
         $location[] = $event->postalCode . ' ' . $event->city;
     } else {
         if (isset($event->postalCode) && !empty($event->postalCode)) {
             $location[] = $event->postalCode;
         }
         if (isset($event->city) && !empty($event->city)) {
             $location[] = $event->city;
         }
     }
     if (isset($event->countryname) && !empty($event->countryname)) {
         $exp = explode(",", $event->countryname);
         $location[] = $exp[0];
     }
     $location = implode(",", $location);
     $e = new vevent();
     $e->setProperty('summary', $event->title);
     $e->setProperty('categories', implode(', ', $categories));
     $e->setProperty('dtstart', $date, $dateparam);
     if (count($date_end)) {
         $e->setProperty('dtend', $date_end, $dateendparam);
     }
     $e->setProperty('description', $description);
     if ($location != '') {
         $e->setProperty('location', $location);
     }
     $e->setProperty('url', $link);
     $e->setProperty('uid', 'event' . $event->id . '@' . $sitename);
     $calendartool->addComponent($e);
     // add component to calendar
     return true;
 }
 /**
  * Method to get the events
  *
  * @access public
  * @return array
  */
 public static function getList(&$params)
 {
     mb_internal_encoding('UTF-8');
     $db = JFactory::getDBO();
     $user = JFactory::getUser();
     $levels = $user->getAuthorisedViewLevels();
     $settings = JemHelper::config();
     // Use (short) format saved in module settings or in component settings or format in language file otherwise
     $dateFormat = $params->get('formatdate', '');
     if (empty($dateFormat)) {
         // on empty format long format will be used but we need short format
         if (isset($settings->formatShortDate) && $settings->formatShortDate) {
             $dateFormat = $settings->formatShortDate;
         } else {
             $dateFormat = JText::_('COM_JEM_FORMAT_SHORT_DATE');
         }
     }
     $timeFormat = $params->get('formattime', '');
     $addSuffix = false;
     if (empty($timeFormat)) {
         // on empty format component's format will be used, so also use component's time suffix
         $addSuffix = true;
     }
     # Retrieve Eventslist model for the data
     $model = JModelLegacy::getInstance('Eventslist', 'JemModel', array('ignore_request' => true));
     # Set params for the model
     # has to go before the getItems function
     $model->setState('params', $params);
     # filter published
     #  0: unpublished
     #  1: published
     #  2: archived
     # -2: trashed
     $type = $params->get('type');
     # All events
     $cal_from = "";
     // TODO: Add parameter to specify start and end dates for showing events
     // (used for schools league)
     // All events, default order
     if ($type == 3) {
         $cal_from = "";
     } elseif ($type == 2) {
         $model->setState('filter.published', 2);
         $model->setState('filter.orderby', array('a.dates DESC', 'a.times DESC'));
         $cal_from = "";
     } else {
         $model->setState('filter.published', 1);
         $model->setState('filter.orderby', array('a.dates ASC', 'a.times ASC'));
         $offset_minutes = 60 * $params->get('offset_hours', 0);
         $cal_from = "((TIMESTAMPDIFF(MINUTE, NOW(), CONCAT(a.dates,' ',IFNULL(a.times,'00:00:00'))) > {$offset_minutes}) ";
         $cal_from .= $type == 1 ? " OR (TIMESTAMPDIFF(MINUTE, NOW(), CONCAT(IFNULL(a.enddates,a.dates),' ',IFNULL(a.endtimes,'23:59:59'))) > {$offset_minutes})) " : ") ";
     }
     $model->setState('filter.calendar_from', $cal_from);
     $model->setState('filter.groupby', 'a.id');
     # filter category's
     $catids = JemHelper::getValidIds($params->get('catid'));
     if ($catids) {
         $model->setState('filter.category_id', $catids);
         $model->setState('filter.category_id.include', true);
     }
     # filter venue's
     $venids = JemHelper::getValidIds($params->get('venid'));
     if ($venids) {
         $model->setState('filter.venue_id', $venids);
         $model->setState('filter.venue_id.include', true);
     }
     # count
     $count = $params->get('count', '2');
     $model->setState('list.limit', $count);
     # Retrieve the available Events
     $events = $model->getItems();
     # Loop through the result rows and prepare data
     $i = 0;
     $lists = array();
     foreach ($events as $row) {
         //cut titel
         $length = mb_strlen($row->title);
         if ($length > $params->get('cuttitle', '18')) {
             $row->title = mb_substr($row->title, 0, $params->get('cuttitle', '18'));
             $row->title = $row->title . '...';
         }
         $lists[$i] = new stdClass();
         $lists[$i]->link = JRoute::_(JemHelperRoute::getEventRoute($row->slug));
         # time/date
         list($lists[$i]->date, $lists[$i]->time) = self::_format_date_time($row, $params->get('datemethod', 1), $dateFormat, $timeFormat, $addSuffix);
         $lists[$i]->dateinfo = JEMOutput::formatDateTime($row->dates, $row->times, $row->enddates, $row->endtimes, $dateFormat, $timeFormat, $addSuffix);
         $lists[$i]->dateinfo = JemOutput::formatDateTime($row->dates, $row->times, $row->enddates, $row->endtimes, $dateFormat, $timeFormat, $addSuffix);
         $lists[$i]->text = $params->get('showtitloc', 0) ? $row->title : htmlspecialchars($row->venue, ENT_COMPAT, 'UTF-8');
         $lists[$i]->city = htmlspecialchars($row->city, ENT_COMPAT, 'UTF-8');
         $lists[$i]->venueurl = !empty($row->venueslug) ? JRoute::_(JEMHelperRoute::getVenueRoute($row->venueslug)) : null;
         $i++;
     }
     return $lists;
 }