Parsed: 111314
<?php /** * Template WordPress Administration API. * * A Big Mess. Also some neat functions that are nicely written. * * @package WordPress * @subpackage Administration */ /** Walker_Category_Checklist class */ require_once ABSPATH . 'wp-admin/includes/class-walker-category-checklist.php'; /** WP_Internal_Pointers class */ require_once ABSPATH . 'wp-admin/includes/class-wp-internal-pointers.php'; // // Category Checklists. // /* function wp_category_checklist() – Output an unordered list of checkbox input elements labeled with category names. */ /* function wp_terms_checklist() – Output an unordered list of checkbox input elements labelled with term names. */ /* function wp_popular_terms_checklist() – Retrieves a list of the most popular terms from the specified taxonomy. */ /* function wp_link_category_checklist() – Outputs a link category checklist element. */ /* function get_inline_data() – Adds hidden fields with the data for use in the inline editor for posts and pages. */ /* function wp_comment_reply() – Outputs the in-line comment reply-to form in the Comments list table. */ /* function wp_comment_trashnotice() – Output ‘undo move to Trash’ text for comments */ /* function list_meta() – Outputs a post’s public meta data in the Custom Fields meta box. */ /* function _list_meta_row() – Outputs a single row of public meta data in the Custom Fields meta box. */ /* function meta_form() – Prints the form in the Custom Fields meta box. */ /* function touch_time() – Print out HTML form date elements for editing post or comment publish date. */ /* function page_template_dropdown() – Prints out option HTML elements for the page templates drop-down. */ /* function parent_dropdown() – Prints out option HTML elements for the page parents drop-down. */ /* function wp_dropdown_roles() – Print out option HTML elements for role selectors. */ /* function wp_import_upload_form() – Outputs the form used by the importers to accept the data to be imported */ /* function add_meta_box() – Adds a meta box to one or more screens. */ /* function do_block_editor_incompatible_meta_box() – Renders a "fake" meta box with an information message, shown on the block editor, when an incompatible meta box is found. */ /* function _get_plugin_from_callback() – Internal helper function to find the plugin from a meta box callback. */ /* function do_meta_boxes() – Meta-Box template function. */ /* function remove_meta_box() – Removes a meta box from one or more screens. */ /* function do_accordion_sections() – Meta Box Accordion Template Function. */ /* function add_settings_section() – Adds a new section to a settings page. */ /* function add_settings_field() – Add a new field to a section of a settings page. */ /* function do_settings_sections() – Prints out all settings sections added to a particular settings page. */ /* function do_settings_fields() – Print out the settings fields for a particular settings section. */ /* function add_settings_error() – Register a settings error to be displayed to the user. */ /* function get_settings_errors() – Fetch settings errors registered by add_settings_error(). */ /* function settings_errors() – Display settings errors registered by add_settings_error(). */ /* function find_posts_div() – Outputs the modal window used for attaching media to posts or pages in the media-listing screen. */ /* function the_post_password() – Displays the post password. */ /* function _draft_or_post_title() – Get the post title. */ /* function _admin_search_query() – Displays the search query. */ /* function iframe_header() – Generic Iframe header for use with Thickbox */ /* function iframe_footer() – Generic Iframe footer for use with Thickbox */ /* function _post_states() – Echoes or returns the post states as HTML. */ /* function get_post_states() – Retrieves an array of post states from a post. */ /* function _media_states() – Outputs the attachment media states as HTML. */ /* function get_media_states() – Retrieves an array of media states from an attachment. */ /* function compression_test() – Test support for compressing JavaScript from PHP */ /* function submit_button() – Echoes a submit button, with provided text and appropriate class(es). */ /* function get_submit_button() – Returns a submit button, with provided text and appropriate class */ /* function _wp_admin_html_begin() – */ /* function convert_to_screen() – Convert a screen string to a screen object */ /* function _local_storage_notice() – Output the HTML for restoring the post data from DOM storage */ /* function wp_star_rating() – Output a HTML element with a star rating for a given rating. */ /* function _wp_posts_page_notice() – Outputs a notice when editing the page for posts (internal use only). */ /* function _wp_block_editor_posts_page_notice() – Outputs a notice when editing the page for posts in the block editor (internal use only). */