| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/components/com_jevents/libraries/filters/ |
Upload File : |
<?php
/**
* JEvents Component for Joomla 1.5.x
*
* @version $Id: Published.php 1689 2010-02-03 07:51:04Z geraint $
* @package JEvents
* @copyright Copyright (C) 2008-2009 GWE Systems Ltd
* @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html
* @link http://www.jevents.net
*/
// ensure this file is being included by a parent file
defined('_JEXEC') or die( 'Direct Access to this location is not allowed.' );
/**
* Filters events to restrict events for administration - used for administration of events in the frontend
*/
class jevPublishedFilter extends jevFilter
{
var $label="";
var $yesLabel = "";
var $noLabel = "";
var $isEventAdmin = false;
function jevPublishedFilter($tablename, $filterfield, $isstring=true,$yesLabel="Yes", $noLabel="No"){
$this->filterNullValue="0";
$this->allLabel = JText::_("All");
$this->yesLabel = JText::_($yesLabel);
$this->noLabel = JText::_($noLabel);
$this->filterType = "published";
$this->filterLabel = JText::_("Show Unpublished Events?");
// this is a special filter - we always want memory here since only used in frontend management
global $mainframe;
$this->filter_value = $mainframe->getUserStateFromRequest( $this->filterType.'_fv_ses', $this->filterType.'_fv', $this->filterNullValue );
JRequest::setVar($this->filterType.'_fv',$this->filter_value);
parent::jevFilter($tablename, "state", $isstring);
// event creators can look at their own unpublished events
if (!JEVHelper::isEventCreator()){
$this->filter_value = $this->filterNullValue;
}
}
function _createFilter($prefix=""){
if (!$this->filterField ) return "ev.state=1";
// The default is only to show published events
if ($this->filter_value==0) return "ev.state=1";
if (JEVHelper::isEventPublisher(true) || JEVHelper::isEventEditor()){
if ($this->filter_value==-1) return "";
return "ev.state=0";
}
else if (JEVHelper::isEventCreator()){
$user =& JFactory::getUser();
if ($this->filter_value==-1) return "(ev.state=1 OR ev.created_by=".$user->id.")";
return "ev.state=0 && ev.created_by=".$user->id;
}
return "ev.state=1";
}
function _createfilterHTML(){
$filterList=array();
$filterList["title"] = $this->filterLabel;
$options = array();
$options[] = JHTML::_('select.option', "-1", $this->allLabel,"value","yesno");
$options[] = JHTML::_('select.option', "0", $this->noLabel,"value","yesno");
$options[] = JHTML::_('select.option', "1", $this->yesLabel,"value","yesno");
$filterList["html"] = JHTML::_('select.genericlist',$options, $this->filterType.'_fv', 'class="inputbox" size="1" onchange="form.submit();"', 'value', 'yesno', $this->filter_value );
return $filterList;
}
}