HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vm8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64
User: afleverb (1000)
PHP: 7.4.33
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/mussarq_bak/wp-content/themes/wpnull24/framework/config/elements/progbar.php
<?php defined( 'ABSPATH' ) OR die( 'This script cannot be accessed directly.' );

$misc = us_config( 'elements_misc' );
$design_options = us_config( 'elements_design_options' );

return array(
	'title' => __( 'Progress Bar', 'us' ),
	'icon' => 'icon-wpb-graph',
	'params' => array_merge( array(

		'title' => array(
			'title' => us_translate( 'Title' ),
			'type' => 'text',
			'std' => 'This is Progress Bar',
			'holder' => 'div',
			'cols' => 2,
		),
		'count' => array(
			'title' => __( 'Progress Value', 'us' ),
			'type' => 'text',
			'std' => '50',
			'holder' => 'span',
			'cols' => 2,
		),
		'style' => array(
			'title' => us_translate( 'Style' ),
			'type' => 'select',
			'options' => array(
				'1' => us_translate( 'Style' ) . ' 1',
				'2' => us_translate( 'Style' ) . ' 2',
				'3' => us_translate( 'Style' ) . ' 3',
				'4' => us_translate( 'Style' ) . ' 4',
				'5' => us_translate( 'Style' ) . ' 5',
			),
			'std' => '1',
			'admin_label' => TRUE,
		),
		'color' => array(
			'title' => __( 'Progress Bar Color', 'us' ),
			'type' => 'select',
			'options' => array(
				'primary' => __( 'Primary (theme color)', 'us' ),
				'secondary' => __( 'Secondary (theme color)', 'us' ),
				'heading' => __( 'Heading (theme color)', 'us' ),
				'switch_text' => __( 'Text (theme color)', 'us' ),
				'custom' => us_translate( 'Custom color' ),
			),
			'std' => 'primary',
			'cols' => 2,
		),
		'size' => array(
			'title' => __( 'Progress Bar Height', 'us' ),
			'description' => $misc['desc_font_size'], // don't change to the "desc_height"
			'type' => 'text',
			'std' => '10px',
			'cols' => 2,
		),
		'bar_color' => array(
			'type' => 'color',
			'std' => '',
			'show_if' => array( 'color', '=', 'custom' ),
		),
		'hide_count' => array(
			'type' => 'switch',
			'switch_text' => __( 'Hide progress value counter', 'us' ),
			'std' => FALSE,
		),

	), $design_options ),
);