"apple.com", "affiliatepartnerid" => "30", "max_description" => "300", "qty_of_apps" => "10", "icon_size" => "128", "ss_size" => "120", "cache_time_select_box" => (24*60*60), "cache_images_locally" => "1" ); update_option('appStore_options', $arr); } } // Init plugin options to white list our options function appStore_init(){ $settings = get_option('appStore_options'); if(!$settings) appStore_add_defaults(); register_setting( 'appStore_plugin_options', 'appStore_options', 'appStore_validate_options' ); } // Add menu page function appStore_add_options_page() { add_options_page('AppStore Assistant', 'AppStore Assistant', 'manage_options', __FILE__, 'appStore_render_form'); } // Render the Plugin options form function appStore_render_form() { ?>