diff -r 000000000000 -r d970ebf37754 wp/wp-content/plugins/option-tree/includes/ot-functions-settings-page.php --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/wp/wp-content/plugins/option-tree/includes/ot-functions-settings-page.php Wed Nov 06 03:21:17 2013 +0000 @@ -0,0 +1,570 @@ + + * @copyright Copyright (c) 2013, Derek Herman + * @since 2.0 + */ + +/** + * Create option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_theme_options_ui' ) ) { + + function ot_type_theme_options_ui() { + global $blog_id; + + echo '
'; + + } + +} + +/** + * Import XML option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_import_xml' ) ) { + + function ot_type_import_xml() { + + echo ''; + + } + +} + +/** + * Import Settings option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_import_settings' ) ) { + + function ot_type_import_settings() { + + echo ''; + + } + +} + +/** + * Import Data option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_import_data' ) ) { + + function ot_type_import_data() { + + echo ''; + + } + +} + +/** + * Import Layouts option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_import_layouts' ) ) { + + function ot_type_import_layouts() { + + echo ''; + + } + +} + +/** + * Export Settings File option type. + * + * @return string + * + * @access public + * @since 2.0.8 + */ +if ( ! function_exists( 'ot_type_export_settings_file' ) ) { + + function ot_type_export_settings_file() { + global $blog_id; + + echo ''; + + } + +} + +/** + * Export Settings option type. + * + * @return string + * + * @access public + * @since 2.0 + */ +if ( ! function_exists( 'ot_type_export_settings' ) ) { + + function ot_type_export_settings() { + + /* format setting outer wrapper */ + echo '' . __( 'Export your Settings by highlighting this text and doing a copy/paste into a blank .txt file. Then save the file for importing into another install of WordPress later. Alternatively, you could just paste it into the OptionTree->Settings->Import
Settings textarea on another web site.', 'option-tree' ) . '
' . __( 'Export your Theme Options data by highlighting this text and doing a copy/paste into a blank .txt file. Then save the file for importing into another install of WordPress later. Alternatively, you could just paste it into the OptionTree->Settings->Import
Theme Options textarea on another web site.', 'option-tree' ) . '
' . __( 'Export your Layouts by highlighting this text and doing a copy/paste into a blank .txt file. Then save the file for importing into another install of WordPress later. Alternatively, you could just paste it into the OptionTree->Settings->Import
Layouts textarea on another web site.', 'option-tree' ) . '