b0y-101 Mini Shell


Current Path : E:/www/plan/components/com_jevents/views/default/helpers/
File Upload :
Current File : E:/www/plan/components/com_jevents/views/default/helpers/defaultexporticaldownload.php

<?php

/*
 * @JEvents Helper for Generating Exports - Ical Download
 */

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

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

Copyright © 2019 by b0y-101