%PDF- %PDF-
| Direktori : /home/gachan/www/wp-content/themes/medicure/framework/admin/options/ |
| Current File : /home/gachan/www/wp-content/themes/medicure/framework/admin/options/cmsms-theme-options-product.php |
<?php
/**
* @package WordPress
* @subpackage Medicure
* @since Medicure 1.0
*
* Product Options Functions
* Created by CMSMasters
*
*/
$cmsms_option = cmsms_get_global_options();
$cmsms_global_layout = (isset($cmsms_option[CMSMS_SHORTNAME . '_layout']) && $cmsms_option[CMSMS_SHORTNAME . '_layout'] !== '') ? $cmsms_option[CMSMS_SHORTNAME . '_layout'] : 'r_sidebar';
$cmsms_global_top_sidebar = (isset($cmsms_option[CMSMS_SHORTNAME . '_top_sidebar']) && $cmsms_option[CMSMS_SHORTNAME . '_top_sidebar'] !== '') ? (($cmsms_option[CMSMS_SHORTNAME . '_top_sidebar'] == 1) ? 'true' : 'false') : 'false';
$cmsms_global_middle_sidebar = (isset($cmsms_option[CMSMS_SHORTNAME . '_middle_sidebar']) && $cmsms_option[CMSMS_SHORTNAME . '_middle_sidebar'] !== '') ? (($cmsms_option[CMSMS_SHORTNAME . '_middle_sidebar'] == 1) ? 'true' : 'false') : 'false';
$cmsms_global_bottom_sidebar = (isset($cmsms_option[CMSMS_SHORTNAME . '_bottom_sidebar']) && $cmsms_option[CMSMS_SHORTNAME . '_bottom_sidebar'] !== '') ? (($cmsms_option[CMSMS_SHORTNAME . '_bottom_sidebar'] == 1) ? 'true' : 'false') : 'true';
$cmsms_global_seo = (isset($cmsms_option[CMSMS_SHORTNAME . '_seo']) && $cmsms_option[CMSMS_SHORTNAME . '_seo'] !== '') ? (($cmsms_option[CMSMS_SHORTNAME . '_seo'] == 1) ? true : false) : false;
$cmsms_option_name = 'cmsms_product_';
$tabs_array = array();
$tabs_array['cmsms_layout'] = array(
'label' => __('Layout', 'cmsmasters'),
'value' => 'cmsms_layout'
);
$tabs_array['cmsms_bg'] = array(
'label' => __('Background', 'cmsmasters'),
'value' => 'cmsms_bg'
);
$tabs_array['cmsms_heading'] = array(
'label' => __('Heading', 'cmsmasters'),
'value' => 'cmsms_heading'
);
if ($cmsms_global_seo) {
$tabs_array['cmsms_seo'] = array(
'label' => __('SEO', 'cmsmasters'),
'value' => 'cmsms_seo'
);
}
$custom_product_meta_fields = array(
array(
'id' => $cmsms_option_name . 'tabs',
'type' => 'tabs',
'std' => 'cmsms_layout',
'options' => $tabs_array
),
array(
'id' => 'cmsms_layout',
'type' => 'tab_start',
'std' => 'true'
),
array(
'label' => __('Page Layout', 'cmsmasters'),
'desc' => '',
'id' => 'cmsms_layout',
'type' => 'radio_img',
'hide' => '',
'std' => $cmsms_global_layout,
'options' => array(
'r_sidebar' => array(
'img' => get_template_directory_uri() . '/framework/admin/inc/img/sidebar_r.png',
'label' => __('Right Sidebar', 'cmsmasters'),
'value' => 'r_sidebar'
),
'l_sidebar' => array(
'img' => get_template_directory_uri() . '/framework/admin/inc/img/sidebar_l.png',
'label' => __('Left Sidebar', 'cmsmasters'),
'value' => 'l_sidebar'
),
'fullwidth' => array(
'img' => get_template_directory_uri() . '/framework/admin/inc/img/fullwidth.png',
'label' => __('Full Width', 'cmsmasters'),
'value' => 'fullwidth'
)
)
),
array(
'label' => __('Choose Right\Left Sidebar', 'cmsmasters'),
'desc' => '',
'id' => 'cmsms_sidebar_id',
'type' => 'select_sidebar',
'hide' => 'true',
'std' => ''
),
array(
'label' => __('Top Sidebar', 'cmsmasters'),
'desc' => __('Show', 'cmsmasters'),
'id' => 'cmsms_top_sidebar',
'type' => 'checkbox',
'hide' => '',
'std' => $cmsms_global_top_sidebar
),
array(
'label' => __('Choose Top Sidebar', 'cmsmasters'),
'desc' => '',
'id' => 'cmsms_top_sidebar_id',
'type' => 'select_sidebar',
'hide' => 'true',
'std' => ''
),
array(
'label' => __('Middle Sidebar', 'cmsmasters'),
'desc' => __('Show', 'cmsmasters'),
'id' => 'cmsms_middle_sidebar',
'type' => 'checkbox',
'hide' => '',
'std' => $cmsms_global_middle_sidebar
),
array(
'label' => __('Choose Middle Sidebar', 'cmsmasters'),
'desc' => '',
'id' => 'cmsms_middle_sidebar_id',
'type' => 'select_sidebar',
'hide' => 'true',
'std' => ''
),
array(
'label' => __('Bottom Sidebar', 'cmsmasters'),
'desc' => __('Show', 'cmsmasters'),
'id' => 'cmsms_bottom_sidebar',
'type' => 'checkbox',
'hide' => '',
'std' => $cmsms_global_bottom_sidebar
),
array(
'label' => __('Choose Bottom Sidebar', 'cmsmasters'),
'desc' => '',
'id' => 'cmsms_bottom_sidebar_id',
'type' => 'select_sidebar',
'hide' => 'true',
'std' => ''
),
array(
'id' => 'cmsms_layout',
'type' => 'tab_finish'
)
);
function add_custom_product_meta_box() {
add_meta_box(
'cmsms_product_meta_box',
'Cmsmasters' . ' ' . __('Product Options', 'cmsmasters'),
'show_cmsms_meta_box',
'product',
'normal',
'high'
);
}
add_action('add_meta_boxes', 'add_custom_product_meta_box');