mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-24 17:21:34 +01:00
78bb3e5ff5
Also adds a few inline `@see` cross-references as they apply. Affects DocBlocks for the following hooks: * `views_{$this->screen->id}` * `bulk_actions-{$this->screen->id}` * `manage_{$this->screen->id}_sortable_columns` * `theme_action_links_$stylesheet` * `after_theme_row_$stylesheet` * `install_plugins_table_api_args_$tab` * `$prefix . plugin_action_links` * `after_plugin_row_$plugin_file` * `manage_taxonomies_for_{$post_type}_columns` * `manage_{$post_type}_posts_columns` * `manage_{$post->post_type}_posts_custom_column` * `{$taxonomy}_row_actions` * `manage_{$this->screen->taxonomy}_custom_column` * `install_themes_table_api_args_' . $tab` * `auto_update_ . $type` * `{$action}_prefilter` * `admin_head_{$content_func}` * `nav_menu_items_{$post_type_name}` * `activate_ . $plugin` * `deactivate_ . $plugin` * `edit_{$post_type}_per_page` * `postbox_classes_{$page}_{$id}` * `_wp_post_revision_field_$field` * `manage_{$screen->id}_columns` * `in_plugin_update_message-{$file}` * `in_theme_update_message-{$theme_key}` See #30552. Built from https://develop.svn.wordpress.org/trunk@30648 git-svn-id: http://core.svn.wordpress.org/trunk@30638 1a063a9b-81f0-0310-95a4-ce76da25c4cd
36 lines
629 B
PHP
36 lines
629 B
PHP
<?php
|
|
/**
|
|
* The WordPress version string
|
|
*
|
|
* @global string $wp_version
|
|
*/
|
|
$wp_version = '4.1-beta2-30648';
|
|
|
|
/**
|
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
|
*
|
|
* @global int $wp_db_version
|
|
*/
|
|
$wp_db_version = 30133;
|
|
|
|
/**
|
|
* Holds the TinyMCE version
|
|
*
|
|
* @global string $tinymce_version
|
|
*/
|
|
$tinymce_version = '4106-20141119';
|
|
|
|
/**
|
|
* Holds the required PHP version
|
|
*
|
|
* @global string $required_php_version
|
|
*/
|
|
$required_php_version = '5.2.4';
|
|
|
|
/**
|
|
* Holds the required MySQL version
|
|
*
|
|
* @global string $required_mysql_version
|
|
*/
|
|
$required_mysql_version = '5.0';
|