set_parent_slug($parent_slug); $option->set_use_style_and_script(true); $option->add_field(array('id' => 'use_for', 'title' => __('For plugin', 'fansub'), 'field_callback' => 'fansub_field_select_plugin')); $option->add_field(array('id' => 'customer_email', 'title' => __('Customer email', 'fansub'))); $option->add_field(array('id' => 'license_code', 'title' => __('License code', 'fansub'))); if(!fansub_menu_page_exists('fansub_plugin_license')) { $option->add_option_tab($fansub_pos_tabs); $option->set_page_header_callback('fansub_plugin_option_page_header'); $option->set_page_footer_callback('fansub_plugin_option_page_footer'); $option->set_page_sidebar_callback('fansub_plugin_option_page_sidebar'); $option->init(); } fansub_option_add_object_to_list($option); function fansub_option_plugin_license_sanitized($input) { $use_for = isset($input['use_for']) ? $input['use_for'] : ''; if(!empty($use_for)) { $customer_email = isset($input['customer_email']) ? $input['customer_email'] : ''; if(is_email($customer_email)) { $code = isset($input['license_code']) ? $input['license_code'] : ''; $code = strtoupper($code); $option = get_option('fansub_plugin_licenses'); $use_for_key = md5($use_for); $option[$use_for_key]['customer_email'] = $customer_email; $option[$use_for_key]['license_code'] = $code; update_option('fansub_plugin_licenses', $option); } } fansub_delete_transient_license_valid(); } add_action('fansub_sanitize_' . $option->get_option_name_no_prefix() . '_option', 'fansub_option_plugin_license_sanitized');