HEX
Server: Apache
System: Linux webm010.cluster103.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: iestorre (46869)
PHP: 8.0.30
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/iestorre/biologia/components/com_jevents/views/default/helpers/defaultexportoutlook2003.php
<?php

/*
 * @JEvents Helper for Generating Exports - Outlook 2003
 */

defined('_JEXEC') or die('Restricted access');

function DefaultExportOutlook2003($view, $publiclink, $privatelink)
{
	$user = JFactory::getUser();
	if ($user->id != 0)
	{
		echo "<div class='ical_form_button export_public'><h3>" . JText::_('JEV_ICAL_OUTLOOK_SPECIFIC') . "</h3></div>";
	} else {
		echo "<div class='ical_form_button export_public clearleft' ><h3>" . JText::_('JEV_ICAL_OUTLOOK_SPECIFIC') . "</h3></div>";
	}
	echo "<div class='ical_form_button export_public'><a href='$publiclink&outlook2003=1'>" . JText::_('JEV_REP_ICAL_PUBLIC') . "</a></div>";
	
	if ($user->id != 0)
	{
		echo "<div class='ical_form_button export_private'><a href='$privatelink&outlook2003='>" . JText::_('JEV_REP_ICAL_PRIVATE') . "</a></div>";
	}

}