b0y-101 Mini Shell


Current Path : E:/www/pl/libraries/nextend2/smartslider/joomla/libraries/slider/
File Upload :
Current File : E:/www/pl/libraries/nextend2/smartslider/joomla/libraries/slider/slider.php

<?php

class N2SmartSlider extends N2SmartSliderAbstract {

    public $_module;

    public function parseSlider($slider) {
        return $slider;
    }

    public static function addCMSFunctions($text) {
        static $contentPluginsEnabled, $excludedPlugins, $pluginsToRun;
        if ($contentPluginsEnabled === null) {
            $contentPluginsEnabled = intval(N2SmartSliderSettings::get('joomla-plugins-content-enabled', 1));
            if ($contentPluginsEnabled && class_exists('JEventDispatcher', false)) {
                $excludedPlugins   = explode('||', N2SmartSliderSettings::get('joomla-plugins-content-excluded', ''));
                $excludedPlugins[] = 'plgcontentemailcloak';
                $excludedPlugins[] = 'plgcontentdropeditor';
                $excludedPlugins[] = 'plgcontentshortcode_ultimate';

                JPluginHelper::importPlugin('content');

                $classNames = array();
                foreach (JPluginHelper::getPlugin('content') AS $plugin) {
                    $classNames[] = strtolower('Plg' . $plugin->type . $plugin->name);
                }
                $classNames = array_diff($classNames, $excludedPlugins);

                if (!empty($classNames)) {
                    $dispatcher   = JEventDispatcher::getInstance();
                    $pluginsToRun = array();
                    foreach ($dispatcher->get('_observers') AS $observer) {
                        if (is_object($observer)) {
                            $className = strtolower(get_class($observer));
                            if (in_array($className, $classNames)) {
                                $pluginsToRun[] = $observer;
                            } else if (method_exists($observer, 'onContentPrepare') && !in_array($className, $excludedPlugins)) {
                                $pluginsToRun[] = $observer;
                            }
                        }
                    }
                }
            }
        }

        $text = '<div>' . $text . '</div>';
        if ($contentPluginsEnabled && !empty($pluginsToRun)) {

            $params        = new stdclass();
            $article       = new stdClass;
            $article->text = '<div>' . $text . '</div>';

            $data = array(
                'mod_smartslider',
                &$article,
                &$params,
                0
            );
            foreach ($pluginsToRun AS $observer) {
                // Joomla removes it in every update
                $data['event'] = 'oncontentprepare';
                $observer->update($data);
            }

            return $article->text;
        }

        return $text;
    }


} 

Copyright © 2019 by b0y-101