????

Your IP : 52.14.160.14


Current Path : /proc/self/cwd/wp-content/plugins/smart-slider-3/Nextend/Framework/Acl/WordPress/
Upload File :
Current File : //proc/self/cwd/wp-content/plugins/smart-slider-3/Nextend/Framework/Acl/WordPress/WordPressAcl.php

<?php

namespace Nextend\Framework\Acl\WordPress;

use Nextend\Framework\Acl\AbstractPlatformAcl;
use function current_user_can;

class WordPressAcl extends AbstractPlatformAcl {

    public function authorise($action, $MVCHelper) {
        return current_user_can($action) && current_user_can('unfiltered_html');
    }
}