????
Current Path : /home/ncom/www/wp-content/plugins/smart-slider-3/Nextend/Framework/Acl/WordPress/ |
Current File : //home/ncom/www/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'); } }