wp-admin/includes/deprecated.php
Lines:
1 to 100 of 178
<?php /** * Deprecated admin functions from past WordPress versions. You shouldn't use these * functions and look for the alternatives instead. The functions will be removed * in a later version. * * @package WordPress * @subpackage Deprecated */ /* * Deprecated functions come here to die. */ /* function tinymce_include() – */ /* function documentation_link() – Unused Admin function. */ /* function wp_shrink_dimensions() – Calculates the new dimensions for a downsampled image. */ /* function get_udims() – Calculated the new dimensions for a downsampled image. */ /* function dropdown_categories() – Legacy function used to generate the categories checklist control. */ /* function dropdown_link_categories() – Legacy function used to generate a link categories checklist control. */ /* function get_real_file_to_edit() – Get the real filesystem path to a file to edit within the admin. */ /* function wp_dropdown_cats() – Legacy function used for generating a categories drop-down control. */ /* function add_option_update_handler() – Register a setting and its sanitization callback */ /* function remove_option_update_handler() – Unregister a setting */ /* function codepress_get_lang() – Determines the language to use for CodePress syntax highlighting. */ /* function codepress_footer_js() – Adds JavaScript required to make CodePress work on the theme/plugin editors. */ /* function use_codepress() – Determine whether to use CodePress. */ /* function get_author_user_ids() – Get all user IDs. */ /* function get_editable_authors() – Gets author users who can edit posts. */ /* function get_editable_user_ids() – Gets the IDs of any users who can edit posts. */ /* function get_nonauthor_user_ids() – Gets all users who are not authors. */ if ( ! class_exists( 'WP_User_Search', false ) ) : /* class WP_User_Search */ /* function WP_User_Search::__construct() – PHP5 Constructor – Sets up the object properties. */ /* function WP_User_Search::WP_User_Search() – PHP4 Constructor – Sets up the object properties. */ /* function WP_User_Search::prepare_query() – Prepares the user search query (legacy). */ /* function WP_User_Search::query() – Executes the user search query. */ /* function WP_User_Search::prepare_vars_for_template_usage() – Prepares variables for use in templates. */ /* function WP_User_Search::do_paging() – Handles paging for the user search query. */ /* function WP_User_Search::get_results() – Retrieves the user search query results. */ /* function WP_User_Search::page_links() – Displaying paging text. */ /* function WP_User_Search::results_are_paged() – Whether paging is enabled. */ /* function WP_User_Search::is_search() – Whether there are search terms. */ endif; /* function get_others_unpublished_posts() – Retrieves editable posts from other users. */ /* function get_others_drafts() – Retrieve drafts from other users. */ /* function get_others_pending() – Retrieve pending review posts from other users. */ /* function wp_dashboard_quick_press_output() – Output the QuickPress dashboard widget. */ /* function wp_tiny_mce() – Outputs the TinyMCE editor. */ /* function wp_preload_dialogs() – Preloads TinyMCE dialogs. */ /* function wp_print_editor_js() – Prints TinyMCE editor JS. */ /* function wp_quicktags() – Handles quicktags. */ /* function screen_layout() – Returns the screen layout options. */ /* function screen_options() – Returns the screen’s per-page options. */ /* function screen_meta() – Renders the screen’s help. */ /* function favorite_actions() – Favorite actions were deprecated in version 3.2. Use the admin bar instead. */ /* function media_upload_image() – Handles uploading an image. */ /* function media_upload_audio() – Handles uploading an audio file. */ /* function media_upload_video() – Handles uploading a video file. */ /* function media_upload_file() – Handles uploading a generic file. */ /* function type_url_form_image() – Handles retrieving the insert-from-URL form for an image. */ /* function type_url_form_audio() – Handles retrieving the insert-from-URL form for an audio file. */ /* function type_url_form_video() – Handles retrieving the insert-from-URL form for a video file. */