Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
vikbooking
/
admin
/
models
:
acl.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /** * @package VikBooking * @subpackage com_vikbooking * @author E4J srl * @copyright Copyright (C) e4j - Extensionsforjoomla.com. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE * @link https://vikwp.com */ // No direct access defined('ABSPATH') or die('No script kiddies please!'); JLoader::import('adapter.mvc.models.form'); /** * VikBooking plugin ACL model. * * @since 1.0 * @see JModelForm */ class VikBookingModelAcl extends JModelForm { /** * A list containing the roles to ignore. * * @var array */ private $ignores = array('administrator'); /** * @override * Updates the ACL for the existing Wordpress user roles. * * @param array &$data The array data containing the ACL rules. * * @return boolean True on success, otherwise false. */ public function save(&$data) { foreach ($data as $slug => $actions) { $role = get_role($slug); if ($role && !in_array($slug, $this->ignores)) { foreach ($actions as $cap => $has) { $has = (int) $has; if ($has != -1) { $b = $role->add_cap($cap, (bool) $has); } } } } return true; } }