HEX
Server: Apache
System: Linux websend04.greenconsulting.it 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
User: web20 (5023)
PHP: 7.2.34-38+ubuntu18.04.1+deb.sury.org+1
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,
Upload Files
File: /var/www/clients/client0/web20/web/wp-content/themes/bridge/framework/lib/qode.common.php
<?php

$options_fontstyle = array( "normal" => "normal",
 "italic" => "italic"
);
$options_fontweight = array( "200" => "200",
 "300" => "300",
 "400" => "400",
 "500" => "500",
 "600" => "600",
 "700" => "700",
 "800" => "800",
 "900" => "900"
);
$options_texttransform = array( "none" => "None",
 "capitalize" => "Capitalize",
 "uppercase" => "Uppercase",
 "lowercase" => "Lowercase"
);

$options_fontdecoration = array( "none" => "none",
 "underline" => "underline"
);

if(!function_exists('qode_get_font_weight_array')) {
    /**
     * Returns array of font weights
     *
     * @param bool $first_empty whether to add empty first member
     * @return array
     */
    function qode_get_font_weight_array($first_empty = false) {
        $font_weights = array();

        if($first_empty) {
            $font_weights[''] = '';
        }

        $font_weights['100'] = 'Thin 100';
        $font_weights['200'] = 'Extra-Light 200';
        $font_weights['300'] = 'Light 300';
        $font_weights['400'] = 'Regular 400';
        $font_weights['500'] = 'Medium 500';
        $font_weights['600'] = 'Semi-Bold 600';
        $font_weights['700'] = 'Bold 700';
        $font_weights['800'] = 'Extra-Bold 800';
        $font_weights['900'] = 'Ultra-bold 900';

        return $font_weights;
    }
}

if(!function_exists('qode_get_text_transform_array')) {
    /**
     * Returns array of text transforms
     *
     * @param bool $first_empty
     * @return array
     */
    function qode_get_text_transform_array($first_empty = false) {
        $text_transforms = array();

        if($first_empty) {
            $text_transforms[''] = '';
        }

        $text_transforms['none'] = 'None';
        $text_transforms['capitalize'] = 'Capitalize';
        $text_transforms['uppercase'] = 'Uppercase';
        $text_transforms['lowercase'] = 'Lowercase';

        return $text_transforms;
    }
}

if(!function_exists('qode_get_font_style_array')) {
    /**
     * Returns array of font styles
     *
     * @param bool $first_empty
     * @return array
     */
    function qode_get_font_style_array($first_empty = false) {
        $font_styles = array(
            'normal' => 'normal',
            'italic' => 'italic'
        );

        return $first_empty ? array_merge(array('' => ''), $font_styles) : $font_styles;
    }
}

if(!function_exists('qode_get_text_decorations')) {
    /**
     * Returns array of text transforms
     *
     * @param bool $first_empty
     * @return array
     */
    function qode_get_text_decorations($first_empty = false) {
        $text_decorations = array(
            'none'      => 'none',
            'underline' => 'underline'
        );

        return $first_empty ? array_merge(array('' => ''), $text_decorations) : $text_decorations;
    }
}