File: /var/www/html/wpmuhibbah/wp-content/themes/goodwish/framework/admin/options/contentbottom/map.php
<?php
if ( ! function_exists('goodwish_edge_content_bottom_options_map') ) {
function goodwish_edge_content_bottom_options_map() {
goodwish_edge_add_admin_page(
array(
'slug' => '_content_bottom_page',
'title' => esc_html__('Content Bottom', 'goodwish'),
'icon' => 'fa fa-level-down'
)
);
$panel_content_bottom = goodwish_edge_add_admin_panel(
array(
'page' => '_content_bottom_page',
'name' => 'panel_content_bottom',
'title' => esc_html__('Content Bottom Area', 'goodwish')
)
);
goodwish_edge_add_admin_field(array(
'name' => 'enable_content_bottom_area',
'type' => 'yesno',
'default_value' => 'no',
'label' => esc_html__('Enable Content Bottom Area', 'goodwish'),
'description' => esc_html__('This option will enable Content Bottom area on pages', 'goodwish'),
'args' => array(
'dependence' => true,
'dependence_hide_on_yes' => '',
'dependence_show_on_yes' => '#edgtf_enable_content_bottom_area_container'
),
'parent' => $panel_content_bottom
));
$enable_content_bottom_area_container = goodwish_edge_add_admin_container(
array(
'parent' => $panel_content_bottom,
'name' => 'enable_content_bottom_area_container',
'hidden_property' => 'enable_content_bottom_area',
'hidden_value' => 'no'
)
);
$custom_sidebars = goodwish_edge_get_custom_sidebars();
goodwish_edge_add_admin_field(array(
'type' => 'selectblank',
'name' => 'content_bottom_sidebar_custom_display',
'default_value' => '',
'label' => esc_html__('Widget Area to Display', 'goodwish'),
'description' => esc_html__('Choose a Content Bottom widget area to display', 'goodwish'),
'options' => $custom_sidebars,
'parent' => $enable_content_bottom_area_container
));
goodwish_edge_add_admin_field(array(
'type' => 'yesno',
'name' => 'content_bottom_in_grid',
'default_value' => 'yes',
'label' => esc_html__('Display in Grid', 'goodwish'),
'description' => esc_html__('Enabling this option will place Content Bottom in grid', 'goodwish'),
'parent' => $enable_content_bottom_area_container
));
goodwish_edge_add_admin_field(array(
'type' => 'color',
'name' => 'content_bottom_background_color',
'default_value' => '',
'label' => esc_html__('Background Color', 'goodwish'),
'description' => esc_html__('Choose a background color for Content Bottom area', 'goodwish'),
'parent' => $enable_content_bottom_area_container
));
}
add_action( 'goodwish_edge_options_map', 'goodwish_edge_content_bottom_options_map', 7);
}