Fix File
•
/
home
/
sportsfe...
/
httpdocs
/
wp-conte...
/
plugins
/
smart-sl...
/
Nextend
/
Framewor...
/
Acl
•
File:
Acl.php
•
Content:
<?php namespace Nextend\Framework\Acl; use Nextend\Framework\Acl\Joomla\JoomlaAcl; use Nextend\Framework\Acl\WordPress\WordPressAcl; use Nextend\Framework\Pattern\MVCHelperTrait; class Acl { /** * @var AbstractPlatformAcl */ private static $instance; public function __construct() { self::$instance = new WordPressAcl(); } /** * @param $action * @param MVCHelperTrait $MVCHelper * * @return bool */ public static function canDo($action, $MVCHelper) { return self::$instance->authorise($action, $MVCHelper); } } new Acl();
•
Search:
•
Replace:
Function
Edit by line
Download
Information
Rename
Copy
Move
Delete
Chmod
List