HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux sa-dev.otherchirps.net 5.15.0-139-generic #149-Ubuntu SMP Fri Apr 11 22:06:13 UTC 2025 x86_64
User: www-data (33)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wp-content/plugins/image-hover-effects-ultimate/Classes/Controls.php
<?php

namespace OXI_IMAGE_HOVER_PLUGINS\Classes;

if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly.
}

/**
 * Description of Admin Controller
 * @author $biplob018
 */
class Controls
{

    /**
     * Text control.
     */
    const TEXT = 'text';

    /**
     * Textarea control.
     */
    const TEXTAREA = 'textarea';

    /**
     * WYSIWYG control.
     */
    const WYSIWYG = 'wysiwyg';



    /**
     * Choose control.
     */
    const CHOOSE = 'choose';

    /**
     * Choose Operator.
     */
    const OPERATOR_TEXT = 'text';

    /**
     * Choose Operator.
     */
    const OPERATOR_ICON = 'icon';

    /**
     * Popover Toggle control.
     */
    const POPOVER = 'popover';

    /**
     * Color control.
     */
    const COLOR = 'color';

    /**
     * Color control.
     */
    const GRADIENT = 'gradient';

    /**
     * Dimensions control.
     */
    const DIMENSIONS = 'dimensions';

    /**
     * Font control.
     */
    const FONT = 'font';

    /**
     * URL control.
     */
    const IMAGE = 'image';

    /**
     * Icon control.
     */
    const ICON = 'icon';

    /**
     * Date/Time control.
     */
    const DATE_TIME = 'date_time';

    /**
     * Select2 control.
     */
    const SELECT2 = 'select2';

    /**
     * URL control.
     */
    const URL = 'url';

    /**
     * Repeater control.
     */
    const REPEATER = 'repeater';

    /**
     * Gallery control.
     */
    const GALLERY = 'gallery';

    /**
     * Heading Control.
     */
    const HEADING = 'heading';
    /**
     * Hidden control.
     */
    const HIDDEN = 'hidden';

    /**
     * Number control.
     */
    const NUMBER = 'number';

    /**
     * Slider control.
     */
    const SLIDER = 'slider';

    /**
     * Select control.
     */
    const SELECT = 'select';

    /**
     * Switcher control.
     */
    const SWITCHER = 'switcher';
    /*
     *
     * Group Control
     *
     */

    /**
     *  Box Shadow control.
     */
    const BOXSHADOW = 'boxshadow';

    /**
     *  Text Shadow control.
     */
    const TEXTSHADOW = 'textshadow';

    /**
     * Typography control.
     */
    const TYPOGRAPHY = 'typography';

    /**
     * Typography Font Size Control.
     */
    const TYPOFontSize = 'typofontsize';

    /**
     * Border control.
     */
    const BORDER = 'border';

    /**
     * Entrance animation control.
     */
    const ANIMATION = 'animation';

    /**
     * Media control.
     */
    const MEDIA = 'media';

    /**
     * Media control.
     */
    const BACKGROUND = 'background';

    /**
     * Media control.
     */
    const COLUMN = 'column';

    /**
     * Media control.
     */
    const REARRANGE = 'rearrange';

    /*
     *
     * Typhography Include Turms
     *
     */

    /**
     * Normal Align as Text ALign.
     */
    const ALIGNNORMAL = 'align_normal';

    /**
     * Normal Align as Text ALign.
     */
    const ALIGNFLEX = 'align_flex';

    /*
     *
     * Templates Substitute Data
     *
     */

    /**
     * Modal Opener.
     */
    const MODALOPENER = 'modalopener';

    /**
     * Shortcode Name.
     */
    const SHORTCODENAME = 'shortcodename';

    /**
     * Shortcode Name.
     */
    const SHORTCODEINFO = 'shortcodeinfo';

    /**
     * Shortcode Style.
     */
    const SHORTCODESTYLE = 'shortcodestyle';

    /**
     *  Box Shadow control.
     */
    const SEPARATOR = 'separator';

    /**
     * INSIDE Control (Repeater Condition).
     */
    const INSIDE = 'inside';

    /**
     *  OUTSIDE Control (Repeater Condition).
     */
    const OUTSIDE = 'outside';
}