/
home
/
assocoweys
/
avexp
/
plugins
/
editors
/
jckeditor
/
jckeditor
/
includes
/
ckeditor
/
Upload File
HOME
<?php /*------------------------------------------------------------------------ # Copyright (C) 2005-2010 WebxSolution Ltd. All Rights Reserved. # @license - GPLv2.0 # Author: WebxSolution Ltd # Websites: http://www.webxsolution.com # Terms of Use: An extension that is derived from the JoomlaCK editor will only be allowed under the following conditions: http://joomlackeditor.com/terms-of-use # ------------------------------------------------------------------------*/ defined( '_JEXEC' ) or die( 'Restricted access' ); class JCKAuthenticate { static function check() { jckimport('ckeditor.plugins.helper'); //import core plugins first JCKPluginsHelper::storePlugins('authenticate'); JCKPluginsHelper::importPlugin('authenticate'); $dispatcher = JDispatcher::getInstance(); $results = $dispatcher->trigger('authorise'); for($i = 0; $i < count($results);$i++) { if($results[$i]) return true; } return false; } }