AnonSec Shell
Server IP : 54.36.91.62  /  Your IP : 216.73.217.112
Web Server : Apache
System : Linux webm013.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64
User : coopiak ( 151928)
PHP Version : 8.3.23
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/c/o/o/coopiak/www/cj79373/libraries/regularlabs/fields/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME ]     

Current File : /home/c/o/o/coopiak/www/cj79373/libraries/regularlabs/fields/toggler.php
<?php
/**
 * @package         Regular Labs Library
 * @version         23.5.7450
 * 
 * @author          Peter van Westen <info@regularlabs.com>
 * @link            http://regularlabs.com
 * @copyright       Copyright © 2023 Regular Labs All Rights Reserved
 * @license         http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
 */

defined('_JEXEC') or die;

use Joomla\CMS\Factory as JFactory;
use Joomla\CMS\Form\FormField as JFormField;
use RegularLabs\Library\Document as RL_Document;
use RegularLabs\Library\RegEx as RL_RegEx;

if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php'))
{
    return;
}

require_once JPATH_LIBRARIES . '/regularlabs/autoload.php';

/**
 * @deprecated  2018-10-30  Use ShowOn instead
 */

/**
 * To use this, make a start xml param tag with the param and value set
 * And an end xml param tag without the param and value set
 * Everything between those tags will be included in the slide
 *
 * Available extra parameters:
 * param            The name of the reference parameter
 * value            a comma separated list of value on which to show the framework
 */
class JFormFieldRL_Toggler extends JFormField
{
    public $type = 'Toggler';

    protected function getInput()
    {
        if ( ! is_file(JPATH_LIBRARIES . '/regularlabs/autoload.php'))
        {
            return null;
        }

        $field = new RLFieldToggler;

        return $field->getInput($this->element->attributes());
    }

    protected function getLabel()
    {
        return '';
    }
}

class RLFieldToggler
{
    public function getInput($params)
    {
        $this->params = $params;

        $option = JFactory::getApplication()->input->get('option');

        // do not place toggler stuff on JoomFish pages
        if ($option == 'com_joomfish')
        {
            return '';
        }

        $param  = $this->get('param');
        $value  = $this->get('value');
        $nofx   = $this->get('nofx');
        $method = $this->get('method');
        $div    = $this->get('div', 0);

        RL_Document::script('regularlabs/toggler.min.js');

        $param = RL_RegEx::replace('^\s*(.*?)\s*$', '\1', $param);
        $param = RL_RegEx::replace('\s*\|\s*', '|', $param);

        $html = [];
        if ( ! $param)
        {
            return '</div>';
        }

        $param      = RL_RegEx::replace('[^a-z0-9-\.\|\@]', '_', $param);
        $param      = str_replace('@', '_', $param);
        $set_groups = explode('|', $param);
        $set_values = explode('|', $value);
        $ids        = [];
        foreach ($set_groups as $i => $group)
        {
            $count = $i;
            if ($count >= count($set_values))
            {
                $count = 0;
            }
            $value = explode(',', $set_values[$count]);
            foreach ($value as $val)
            {
                $ids[] = $group . '.' . $val;
            }
        }

        if ( ! $div)
        {
            $html[] = '</div></div>';
        }

        $html[] = '<div id="' . rand(1_000_000, 9_999_999) . '___' . implode('___', $ids) . '" class="rl_toggler';
        if ($nofx)
        {
            $html[] = ' rl_toggler_nofx';
        }
        if ($method == 'and')
        {
            $html[] = ' rl_toggler_and';
        }
        $html[] = '">';

        if ( ! $div)
        {
            $html[] = '<div><div>';
        }

        return implode('', $html);
    }

    private function get($val, $default = '')
    {
        if ( ! isset($this->params[$val]) || (string) $this->params[$val] == '')
        {
            return $default;
        }

        return (string) $this->params[$val];
    }
}

Anon7 - 2022
AnonSec Team