mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-22 22:45:39 +00:00
Affects DocBlocks for the following hooks: * `pre_option_ . $option` * `default_option_ . $option` * `option_ . $option` * `pre_update_option_ . $option` * `update_option_{$option}` * `add_option_{$option}` * `delete_option_$option` * `delete_transient_ . $transient` * `pre_transient_ . $transient` * `transient_ . $transient` * `pre_set_transient_ . $transient` * `set_transient_ . $transient` * `pre_site_option_ . $option` * `default_site_option_ . $option` * `site_option_ . $option` * `pre_add_site_option_ . $option` * `add_site_option_{$option}` * `pre_delete_site_option_ . $option` * `delete_site_option_{$option}` * `pre_update_site_option_ . $option` * `update_site_option_{$option}` * `delete_site_transient_ . $transient` * `pre_site_transient_ . $transient` * `site_transient_ . $transient` * `pre_set_site_transient_ . $transient` * `set_site_transient_ . $transient` See #30552. Built from https://develop.svn.wordpress.org/trunk@30652 git-svn-id: http://core.svn.wordpress.org/trunk@30642 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-30652';
|
|
|
|
/**
|
|
* 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';
|