wp admin includes template.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki
Notes: This file includes other files as well as defining an interface or housing methods. This is simply bad design and should be rectified.
Includes
- wp-admin/includes/template.php
- wp-admin/includes/class-walker-category-checklist.php
- wp-admin/includes/class-wp-internal-pointers.php
Interfaces
interface AdminTemplateFacadeInterface {
function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true );
function wp_terms_checklist( $post_id = 0, $args = array() );
function wp_popular_terms_checklist( $taxonomy, $default = 0, $number = 10, $echo = true );
function wp_link_category_checklist( $link_id = 0 );
function get_inline_data($post);
function wp_comment_reply( $position = 1, $checkbox = false, $mode = 'single', $table_row = true );
function wp_comment_trashnotice();
function list_meta( $meta );
function _list_meta_row( $entry, &$count );
function meta_form( $post = null );
function touch_time( $edit = 1, $for_post = 1, $tab_index = 0, $multi = 0 );
function page_template_dropdown( $default = '', $post_type = 'page' );
function parent_dropdown( $default = 0, $parent = 0, $level = 0, $post = null );
function wp_dropdown_roles( $selected = '' );
function wp_import_upload_form( $action );
function add_meta_box( $id, $title, $callback, $screen = null, $context = 'advanced', $priority = 'default', $callback_args = null );
function do_meta_boxes( $screen, $context, $object );
function remove_meta_box( $id, $screen, $context );
function do_accordion_sections( $screen, $context, $object );
function add_settings_section($id, $title, $callback, $page);
function add_settings_field($id, $title, $callback, $page, $section = 'default', $args = array());
function do_settings_sections( $page );
function do_settings_fields($page, $section);
function add_settings_error( $setting, $code, $message, $type = 'error' );
function get_settings_errors( $setting = '', $sanitize = false );
function settings_errors( $setting = '', $sanitize = false, $hide_on_update = false );
function find_posts_div($found_action = '');
function the_post_password();
function _draft_or_post_title( $post = 0 );
function _admin_search_query();
function iframe_header( $title = '', $deprecated = false );
function tb_close(){var win=window.dialogArguments||opener||parent||top;win.tb_remove();
function iframe_footer();
function _post_states($post);
function _media_states( $post );
function compression_test();
function submit_button( $text = null, $type = 'primary', $name = 'submit', $wrap = true, $other_attributes = null );
function get_submit_button( $text = '', $type = 'primary large', $name = 'submit', $wrap = true, $other_attributes = '' );
function _wp_admin_html_begin();
function convert_to_screen( $hook_name );
function _local_storage_notice();
function wp_star_rating( $args = array() );
function _wp_posts_page_notice();
}