settings_api = new MAGE_Setting_API; add_action( 'admin_init', array($this, 'admin_init') ); add_action( 'admin_menu', array($this, 'admin_menu') ); } function admin_init() { //set the settings $this->settings_api->set_sections( $this->get_settings_sections() ); $this->settings_api->set_fields( $this->get_settings_fields() ); //initialize settings $this->settings_api->admin_init(); } function admin_menu() { //add_options_page( 'Event Settings', 'Event Settings', 'delete_posts', 'mep_event_settings_page', array($this, 'plugin_page') ); add_submenu_page('edit.php?post_type=mep_events', __('Event Settings','mage-eventpress'), __('Event Settings','mage-eventpress'), 'manage_options', 'mep_event_settings_page', array($this, 'plugin_page')); } function get_settings_sections() { $sections = array( array( 'id' => 'general_setting_sec', 'title' => __( 'General Settings', 'mage-eventpress' ) ), array( 'id' => 'email_setting_sec', 'title' => __( 'Email Settings', 'mage-eventpress' ) ), array( 'id' => 'style_setting_sec', 'title' => __( 'Style Settings', 'mage-eventpress' ) ), array( 'id' => 'label_setting_sec', 'title' => __( 'Label Settings', 'mage-eventpress' ) ) ); return $sections; } /** * Returns all the settings fields * * @return array settings fields */ function get_settings_fields() { $settings_fields = array( 'general_setting_sec' => array( array( 'name' => 'google-map-api', 'label' => __( 'Google Map API Key', 'mage-eventpress' ), 'desc' => __( 'Enter Your Google Map API key. Get KEY', 'mage-eventpress' ), 'type' => 'text', 'default' => '' ), array( 'name' => 'mep_global_single_template', 'label' => __( 'Event Details Template', 'mage-eventpress' ), 'desc' => __( 'Event Details Template', 'mage-eventpress' ), 'type' => 'select', 'default' => 'no', 'options' => event_template_name() ), array( 'name' => 'mep_event_price_show', 'label' => __( 'Show Event Price in List?', 'mage-eventpress' ), 'desc' => __( 'Please select if you want to show event price in the list Yes/No', 'mage-eventpress' ), 'type' => 'select', 'default' => 'yes', 'options' => array( 'yes' => 'Yes', 'no' => 'No' ) ), array( 'name' => 'event-price-label', 'label' => __( 'Event Price Label', 'mage-eventpress' ), 'desc' => __( 'Enter The text which you want to show as price label, Its only displayed if Show Event price value is YES above. ', 'mage-eventpress' ), 'type' => 'text', 'default' => 'Price Starts from:' ), array( 'name' => 'mep_event_time_format', 'label' => __( 'Event Time Format', 'mage-eventpress' ), 'desc' => __( 'Please select what format time you want to display in event fronntend.', 'mage-eventpress' ), 'type' => 'select', 'default' => '12', 'options' => array( '12' => '12 Hour', '24' => '24 Hour' ) ) ), 'email_setting_sec' => array( array( 'name' => 'mep_email_form_name', 'label' => __( 'Email Form Name', 'mage-eventpress' ), 'desc' => __( 'Email Form Name', 'mage-eventpress' ), 'type' => 'text' ), array( 'name' => 'mep_email_form_email', 'label' => __( 'Form Email', 'mage-eventpress' ), 'desc' => __( 'Form Email', 'mage-eventpress' ), 'type' => 'text' ), array( 'name' => 'mep_email_subject', 'label' => __( 'Email Subject', 'mage-eventpress' ), 'desc' => __( 'Email Subject', 'mage-eventpress' ), 'type' => 'text' ), array( 'name' => 'mep_confirmation_email_text', 'label' => __( 'Confirmation Email Text', 'mage-eventpress' ), 'desc' => __( 'Confirmation Email Text', 'mage-eventpress' ), 'type' => 'textarea', 'default' => '', ), ), 'label_setting_sec' => array( array( 'name' => 'mep_event_ticket_type_text', 'label' => __( 'Ticket Type Table Label', 'mage-eventpress' ), 'desc' => __( 'Enter the text which you want to display as ticket type table in event details page.', 'mage-eventpress' ), 'type' => 'text', 'default' => 'Ticket Type:' ), array( 'name' => 'mep_event_extra_service_text', 'label' => __( 'Extra Service Table Label', 'mage-eventpress' ), 'desc' => __( 'Enter the text which you want to display as extra service table in event details page.', 'mage-eventpress' ), 'type' => 'text', 'default' => 'Extra Service:' ), array( 'name' => 'mep_cart_btn_text', 'label' => __( 'Cart Button Label', 'mage-eventpress' ), 'desc' => __( 'Enter the text which you want to display in Cart button in event details page.', 'mage-eventpress' ), 'type' => 'text', 'default' => 'Register This Event' ), array( 'name' => 'mep_calender_btn_text', 'label' => __( 'Add Calender Button Label', 'mage-eventpress' ), 'desc' => __( 'Enter the text which you want to display in Add you calender in event details page.', 'mage-eventpress' ), 'type' => 'text', 'default' => 'ADD TO YOUR CALENDAR' ), array( 'name' => 'mep_share_text', 'label' => __( 'Social Share Label', 'mage-eventpress' ), 'desc' => __( 'Enter the text which you want to display as share button title in event details page.', 'mage-eventpress' ), 'type' => 'text', 'default' => 'Share This Event' ), ), 'style_setting_sec' => array( array( 'name' => 'mep_base_color', 'label' => __( 'Base Color', 'mage-eventpress' ), 'desc' => __( 'Select a Basic Color, It will chanage the icon background color, border color', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_title_bg_color', 'label' => __( 'Label Background Color', 'mage-eventpress' ), 'desc' => __( 'Select a Color Label Background', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_title_text_color', 'label' => __( 'Label Text Color', 'mage-eventpress' ), 'desc' => __( 'Select a Color Label Text', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_cart_btn_bg_color', 'label' => __( 'Cart Button Background Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for Cart Button Background', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_cart_btn_text_color', 'label' => __( 'Cart Button Text Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for Cart Button Text', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_calender_btn_bg_color', 'label' => __( 'Calender Button Background Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for Calender Button Background', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_calender_btn_text_color', 'label' => __( 'Calender Button Text Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for Calender Button Text', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_faq_title_bg_color', 'label' => __( 'FAQ Title Background Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for FAQ title Background', 'mage-eventpress' ), 'type' => 'color', ), array( 'name' => 'mep_faq_title_text_color', 'label' => __( 'FAQ Title Text Color', 'mage-eventpress' ), 'desc' => __( 'Select a color for FAQ Title Text', 'mage-eventpress' ), 'type' => 'color', ), ) ); return $settings_fields; } function plugin_page() { echo '