Current Path :
/
home
/
develito
/
public_html
/
components
/
com_jevents
/
libraries
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/develito/public_html/components/com_jevents/libraries/access.php
<?php /** * JEvents Component for Joomla! 3.x * * @version $Id: access.php 3549 2012-04-20 09:26:21Z geraintedwards $ * @package JEvents * @copyright Copyright (C) 2008-2025 GWESystems Ltd, 2006-2008 JEvents Project Group * @license GNU/GPLv2, see http://www.gnu.org/licenses/gpl-2.0.html * @link http://www.jevents.net */ defined('_JEXEC') or die('Restricted access'); use Joomla\CMS\Factory; class JEVAccess { var $access; public function __construct() { // Editor usertype check global $acl; $user = Factory::getUser(); $this->access = new stdClass(); $acl = Factory::getACL(); $this->access->canEdit = $acl->acl_check('action', 'edit', 'users', JEVHelper::getUserType($user), 'content', 'all'); $this->access->canEditOwn = $acl->acl_check('action', 'edit', 'users', JEVHelper::getUserType($user), 'content', 'own'); $this->access->canPublish = $acl->acl_check('action', 'publish', 'users', JEVHelper::getUserType($user), 'content', 'all'); } public function canEdit() { return $this->access->canEdit; } public function canEditOwn() { return $this->access->canEditOwn; } public function canPublish() { return $this->access->canPublish; } }