403Webshell
Server IP : 104.21.84.107  /  Your IP : 104.23.197.208
Web Server : Apache/2.4.63 (Ubuntu)
System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64
User : www-data ( 33)
PHP Version : 8.4.5
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/pregrados/administrator/components/com_scheduler/src/Field/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/pregrados/administrator/components/com_scheduler/src/Field/IntervalField.php
<?php

/**
 * @package     Joomla.Administrator
 * @subpackage  com_scheduler
 *
 * @copyright   (C) 2021 Open Source Matters, Inc. <https://www.joomla.org>
 * @license     GNU General Public License version 2 or later; see LICENSE.txt
 */

namespace Joomla\Component\Scheduler\Administrator\Field;

use Joomla\CMS\Form\Field\NumberField;
use Joomla\CMS\Form\FormField;

// phpcs:disable PSR1.Files.SideEffects
\defined('_JEXEC') or die;
// phpcs:enable PSR1.Files.SideEffects

/**
 * Select style field for interval(s) in minutes, hours, days and months.
 *
 * @since  4.1.0
 */
class IntervalField extends NumberField
{
    /**
     * The form field type.
     *
     * @var    string
     * @since  4.1.0
     */
    protected $type = 'Intervals';

    /**
     * The subtypes supported by this field type => [minVal, maxVal]
     *
     * @var string[]
     * @since  4.1.0
     */
    private const SUBTYPES = [
        'minutes' => [1, 59],
        'hours'   => [1, 23],
        'days'    => [1, 30],
        'months'  => [1, 12],
    ];

    /**
     * The allowable maximum value of the field.
     *
     * @var    float
     * @since  4.1.0
     */
    protected $max;

    /**
     * The allowable minimum value of the field.
     *
     * @var    float
     * @since  4.1.0
     */
    protected $min;

    /**
     * The step by which value of the field increased or decreased.
     *
     * @var    float
     * @since  4.1.0
     */
    protected $step = 1;

    /**
     * Override the parent method to set deal with subtypes.
     *
     * @param   \SimpleXMLElement  $element  The SimpleXMLElement object representing the `<field>` tag for the form
     *                                       field object.
     * @param   mixed              $value    The form field value to validate.
     * @param   string             $group    The field name group control value. This acts as an array container for
     *                                       the field. For example if the field has `name="foo"` and the group value is
     *                                       set to "bar" then the full field name would end up being "bar[foo]".
     *
     * @return  boolean  True on success.
     *
     * @since   4.1.0
     */
    public function setup(\SimpleXMLElement $element, $value, $group = null): bool
    {
        $parentResult = FormField::setup($element, $value, $group);
        $subtype      = ((string) $element['subtype'] ?? '') ?: null;

        if (empty($subtype) || !\array_key_exists($subtype, self::SUBTYPES)) {
            return false;
        }

        [$this->min, $this->max] = self::SUBTYPES[$subtype];

        return $parentResult;
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit