FreeBSD s15.mydevil.net 14.1-RELEASE-p4 FreeBSD 14.1-RELEASE-p4 #3 releng/14.1-n267709-86d01789bf41-dirty: Thu Sep 5 04:26:54 CEST 2024 root@pkg1.admin.net.pl:/usr/obj/usr/src/amd64.amd64/sys/devil amd64
Apache/N-G-I-N-X-htaccess-support
: 128.204.218.142 | : 3.141.37.110
Cant Read [ /etc/named.conf ]
?8.1.30
art
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
home /
art /
domains /
rotarycup.pl /
public_html /
wp-content /
themes /
sportcenter /
inc /
meta /
[ HOME SHELL ]
Name
Size
Permission
Action
meta-boxes.php
145
B
-rw-r--r--
page-metadata.php
2.22
KB
-rw-r--r--
post-metadata.php
6.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : post-metadata.php
<?php /** * Initialize the meta boxes. */ add_action( 'admin_init', 'leafcolor_custom_posttype_meta_boxes' ); if ( ! function_exists( 'leafcolor_custom_posttype_meta_boxes' ) ){ function leafcolor_custom_posttype_meta_boxes() { $theme_uri = get_template_directory_uri(); $meta_box_event = array( 'id' => 'sc_event_meta', 'title' => 'Event settings', 'desc' => '', 'pages' => array( 'tribe_events'), 'context' => 'normal', 'priority' => 'high', 'fields' => array( //event meta array( 'label' => esc_html__( 'Event Settings', 'sportcenter' ), 'id' => 'event_meta_tab', 'type' => 'tab' ), array( 'id' => 'product-id', 'label' => esc_html__('Product for Ticket','sportcenter'), 'desc' => esc_html__('Select a product for selling ticket','sportcenter'), 'type' => 'custom-post-type-select', 'post_type' => 'product', ), array( 'id' => 'member-id', 'label' => esc_html__('Trainers','sportcenter'), 'desc' => esc_html__('Select Event Trainers/Host','sportcenter'), 'type' => 'custom-post-type-checkbox', 'post_type' => 'sp_member', ), array( 'id' => 'white-label', 'label' => esc_html__('White label Layout','sportcenter'), 'desc' => esc_html__('Enable ONLY if you want to build standalone Event page (Hide all Menus, Sidebars, Footer)','sportcenter'), 'std' => 'off', 'type' => 'on-off', ), //layout array( 'label' => esc_html__( 'Layout Settings', 'sportcenter' ), 'id' => 'event_layout_tab', 'type' => 'tab' ), array( 'id' => 'event_sidebar_layout', 'label' => esc_html__('Sidebar','sportcenter'), 'desc' => esc_html__('Select "Default" to use settings in Theme Options','sportcenter'), 'std' => '', 'type' => 'radio-image', 'class' => '', 'choices' => array( array( 'value' => '', 'label' => 'Default', 'src' => $theme_uri.'/images/options/layout-default.png' ), array( 'value' => 'right', 'label' => 'Sidebar Right', 'src' => $theme_uri.'/images/options/layout-right.png' ), array( 'value' => 'left', 'label' => 'Sidebar Left', 'src' => $theme_uri.'/images/options/layout-left.png' ), array( 'value' => 'full', 'label' => 'Hidden', 'src' => $theme_uri.'/images/options/layout-full.png' ), ) ), array( 'id' => 'heading_bg', 'label' => esc_html__('Heading Background','sportcenter'), 'desc' => esc_html__('Upload Custom Heading Background Image','sportcenter'), 'std' => '', 'type' => 'background', 'class' => '', 'choices' => array() ), ) ); $meta_box3 = array( 'id' => 'port_layout', 'title' => 'Layout settings', 'desc' => '', 'pages' => array('app_portfolio'), 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'id' => 'port_sidebar', 'label' => esc_html__('Sidebar','sportcenter'), 'desc' => esc_html__('Select "Default" to use settings in Theme Options','sportcenter'), 'std' => '', 'type' => 'radio-image', 'class' => '', 'choices' => array( array( 'value' => '', 'label' => 'Default', 'src' => $theme_uri.'/images/options/layout-default.png' ), array( 'value' => 'right', 'label' => 'Sidebar Right', 'src' => $theme_uri.'/images/options/layout-right.png' ), array( 'value' => 'left', 'label' => 'Sidebar Left', 'src' => $theme_uri.'/images/options/layout-left.png' ), array( 'value' => 'full', 'label' => 'Hidden', 'src' => $theme_uri.'/images/options/layout-full.png' ), ) ), ) ); if (function_exists('ot_register_meta_box')) { ot_register_meta_box( $meta_box_event ); ot_register_meta_box( $meta_box3 ); } } } add_action( 'admin_init', 'cs_post_meta_boxes' ); if ( ! function_exists( 'cs_post_meta_boxes' ) ){ function cs_post_meta_boxes() { $theme_uri = get_template_directory_uri(); //layout $meta_box = array( 'id' => 'page_layout', 'title' => 'Layout settings', 'desc' => '', 'pages' => array( 'post' ), 'context' => 'normal', 'priority' => 'high', 'fields' => array( array( 'id' => 'post_sidebar_layout', 'label' => esc_html__('Sidebar','sportcenter'), 'desc' => esc_html__('Select "Default" to use settings in Theme Options','sportcenter'), 'std' => '', 'type' => 'radio-image', 'class' => '', 'choices' => array( array( 'value' => '', 'label' => 'Default', 'src' => $theme_uri.'/images/options/layout-default.png' ), array( 'value' => 'right', 'label' => 'Sidebar Right', 'src' => $theme_uri.'/images/options/layout-right.png' ), array( 'value' => 'left', 'label' => 'Sidebar Left', 'src' => $theme_uri.'/images/options/layout-left.png' ), array( 'value' => 'full', 'label' => 'Hidden', 'src' => $theme_uri.'/images/options/layout-full.png' ), ) ), array( 'id' => 'heading_bg', 'label' => esc_html__('Heading Background','sportcenter'), 'desc' => esc_html__('Upload Custom Heading Background Image','sportcenter'), 'std' => '', 'type' => 'background', 'class' => '', 'choices' => array() ), ) ); if (function_exists('ot_register_meta_box')) { ot_register_meta_box( $meta_box ); } } }
Close