/** * Sets up the form. * * Alternatively you may use load_{instantiated class name} method. */ public function load($oAdminWidget) { //get all hwml shortcodes $hwml_data = HWMLShortcode_Manager::get_hwml_slideshow_posts(); HW_UI_Component::empty_select_option($hwml_data); //register form fields $this->addSettingFields(array('field_id' => 'title', 'type' => 'text', 'title' => __('Tiêu đề', 'hwml'), 'default' => ''), array('field_id' => 'slider', 'type' => 'select', 'label' => $hwml_data, 'title' => __('Chọn slider', 'hwml'), 'description' => ''), array('field_id' => 'use_default_slider', 'type' => 'checkbox', 'title' => 'Lấy slider mặc định', 'description' => 'Sử dụng slider đã thiết lập mặc định <a href="' . HW_NHP_Main_Settings::get_setting_page_url() . '" target="_blank">tại đây</a>.'), array()); }
/** * get mlslides data for specific id * @param $id * @return WP_Query */ function hwmq_get_mlslider_data($id) { return HWMLShortcode_Manager::get_mlslider_metaslides($id); }