HEX
Server: nginx/1.26.3
System: Linux debian 6.1.0-31-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.128-1 (2025-02-07) x86_64
User: root (0)
PHP: 5.6.40
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,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_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/gxdaosen.net/wp-content/plugins/futurio-extra/lib/metabox/options/options-sample.php
<?php
/*
|| --------------------------------------------------------------------------------------------
|| Theme/Plugin Metaboxes Fields
|| --------------------------------------------------------------------------------------------
||
|| @package		Dilaz Metabox
|| @subpackage	Main Options
|| @since		Dilaz Metabox 1.1
|| @author		WebDilaz Team, http://webdilaz.com
|| @copyright	Copyright (C) 2017, WebDilaz LTD
|| @link		http://webdilaz.com/metaboxes
|| @license		http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|| 
|| NOTE 1: Rename this file from "options-sample.php" to "options.php". If you
||         don't rename it, all your options and settings will be overwritten
||         when updating Dilaz Metabox.
|| 
|| NOTE 2: Add all your theme/plugin metabox options in this file
|| 
*/

defined('ABSPATH') || exit;


# BOX - Sample Set 1
# =============================================================================================
$dilaz_meta_boxes[] = array(
	'id'	   => $prefix .'samp_set_1',
	'title'	   => __('Sample Set 1', 'dilaz-metabox'),
	'pages'    => array('post', 'page'),
	'context'  => 'normal',
	'priority' => 'high',
	'type'     => 'metabox_set'
);
	
	# TAB - Sample 1 Tab 1
	# *****************************************************************************************
	$dilaz_meta_boxes[] = array(
		'id'    => $prefix .'samp_1_tab_1',
		'title' => __('Sample 1 - Tab 1', 'dilaz-metabox'),
		'icon'  => 'fa-bank',
		'type'  => 'metabox_tab'
	);
		
		# FIELDS - Sample 1 Tab 1
		# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		$dilaz_meta_boxes[] = array(
			'id'	  => $prefix .'samp_1_tab_1_opt_1',
			'name'	  => __('Tab 1 - Option 1:', 'dilaz-metabox'),
			'desc'	  => '',
			'type'	  => 'radio',
			'options' => DilazMetaboxFunction::choice('yes_no'),
			'std'     => 'no'
		);
		
		
	# TAB - Sample 1 Tab 2
	# *****************************************************************************************
	$dilaz_meta_boxes[] = array(
		'id'    => $prefix .'samp_1_tab_2',
		'title' => __('Sample 1 - Tab 2', 'dilaz-metabox'),
		'icon'  => 'fa-automobile',
		'type'  => 'metabox_tab'
	);
		
		# FIELDS - Sample 1 Tab 2
		# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		$dilaz_meta_boxes[] = array(
			'id'	  => $prefix .'samp_1_tab_1_opt_2',
			'name'	  => __('Tab 2 - Option 1:', 'dilaz-metabox'),
			'desc'	  => '',
			'type'	  => 'radio',
			'options' => DilazMetaboxFunction::choice('yes_no'),
			'std'     => 'no'
		);
		
		
		
		
# BOX - Sample Set 2
# =============================================================================================
$dilaz_meta_boxes[] = array(
	'id'	   => $prefix .'samp_set_2',
	'title'	   => __('Sample Set 2', 'dilaz-metabox'),
	'pages'    => array('post', 'page'),
	'context'  => 'normal',
	'priority' => 'high',
	'type'     => 'metabox_set'
);
	
	# TAB - Sample 2 Tab 1
	# *****************************************************************************************
	$dilaz_meta_boxes[] = array(
		'id'    => $prefix .'samp_2_tab_1',
		'title' => __('Sample 2 - Tab 1', 'dilaz-metabox'),
		'icon'  => 'fa-bank',
		'type'  => 'metabox_tab'
	);
		
		# FIELDS - Sample 2 Tab 1
		# >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		$dilaz_meta_boxes[] = array(
			'id'	  => $prefix .'samp_2_tab_1_opt_1',
			'name'	  => __('Tab 1 - Option 1:', 'dilaz-metabox'),
			'desc'	  => '',
			'type'	  => 'radio',
			'options' => DilazMetaboxFunction::choice('yes_no'),
			'std'     => 'no'
		);
		
		
		
return $dilaz_meta_boxes;