PATH:
home
/
beestk
/
sdxgating
/
wp-includes
<?php /** * Deprecated pluggable 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. * * Deprecated warnings are also thrown if one of these functions is being defined by a plugin. * * @package WordPress * @subpackage Deprecated * @see pluggable.php */ /* * Deprecated functions come here to die. */ if ( !function_exists('set_current_user') ) : /** * Changes the current user by ID or name. * * Set $id to null and specify a name if you do not know a user's ID. * * @since 2.0.1 * @deprecated 3.0.0 Use wp_set_current_user() * @see wp_set_current_user() * * @param int|null $id User ID. * @param string $name Optional. The user's username * @return WP_User returns wp_set_current_user() */ function set_current_user($id, $name = '') { _deprecated_function( __FUNCTION__, '3.0.0', 'wp_set_current_user()' ); return wp_set_current_user($id, $name); } endif; if ( !function_exists('get_currentuserinfo') ) : /** * Populate global variables with information about the currently logged in user. * * @since 0.71 * @deprecated 4.5.0 Use wp_get_current_user() * @see wp_get_current_user() * * @return bool|WP_User False on XMLRPC Request and invalid auth cookie, WP_User instance otherwise. */ function get_currentuserinfo() { _deprecated_function( __FUNCTION__, '4.5.0', 'wp_get_current_user()' ); return _wp_get_current_user(); } endif; if ( !function_exists('get_userdatabylogin') ) : /** * Retrieve user info by login name. * * @since 0.71 * @deprecated 3.3.0 Use get_user_by() * @see get_user_by() * * @param string $user_login User's username * @return bool|object False on failure, User DB row object */ function get_userdatabylogin($user_login) { _deprecated_function( __FUNCTION__, '3.3.0', "get_user_by('login')" ); return get_user_by('login', $user_login); } endif; if ( !function_exists('get_user_by_email') ) : /** * Retrieve user info by email. * * @since 2.5.0 * @deprecated 3.3.0 Use get_user_by() * @see get_user_by() * * @param string $email User's email address * @return bool|object False on failure, User DB row object */ function get_user_by_email($email) { _deprecated_function( __FUNCTION__, '3.3.0', "get_user_by('email')" ); return get_user_by('email', $email); } endif; if ( !function_exists('wp_setcookie') ) : /** * Sets a cookie for a user who just logged in. This function is deprecated. * * @since 1.5.0 * @deprecated 2.5.0 Use wp_set_auth_cookie() * @see wp_set_auth_cookie() * * @param string $username The user's username * @param string $password Optional. The user's password * @param bool $already_md5 Optional. Whether the password has already been through MD5 * @param string $home Optional. Will be used instead of COOKIEPATH if set * @param string $siteurl Optional. Will be used instead of SITECOOKIEPATH if set * @param bool $remember Optional. Remember that the user is logged in */ function wp_setcookie($username, $password = '', $already_md5 = false, $home = '', $siteurl = '', $remember = false) { _deprecated_function( __FUNCTION__, '2.5.0', 'wp_set_auth_cookie()' ); $user = get_user_by('login', $username); wp_set_auth_cookie($user->ID, $remember); } else : _deprecated_function( 'wp_setcookie', '2.5.0', 'wp_set_auth_cookie()' ); endif; if ( !function_exists('wp_clearcookie') ) : /** * Clears the authentication cookie, logging the user out. This function is deprecated. * * @since 1.5.0 * @deprecated 2.5.0 Use wp_clear_auth_cookie() * @see wp_clear_auth_cookie() */ function wp_clearcookie() { _deprecated_function( __FUNCTION__, '2.5.0', 'wp_clear_auth_cookie()' ); wp_clear_auth_cookie(); } else : _deprecated_function( 'wp_clearcookie', '2.5.0', 'wp_clear_auth_cookie()' ); endif; if ( !function_exists('wp_get_cookie_login') ): /** * Gets the user cookie login. This function is deprecated. * * This function is deprecated and should no longer be extended as it won't be * used anywhere in WordPress. Also, plugins shouldn't use it either. * * @since 2.0.3 * @deprecated 2.5.0 * * @return bool Always returns false */ function wp_get_cookie_login() { _deprecated_function( __FUNCTION__, '2.5.0' ); return false; } else : _deprecated_function( 'wp_get_cookie_login', '2.5.0' ); endif; if ( !function_exists('wp_login') ) : /** * Checks a users login information and logs them in if it checks out. This function is deprecated. * * Use the global $error to get the reason why the login failed. If the username * is blank, no error will be set, so assume blank username on that case. * * Plugins extending this function should also provide the global $error and set * what the error is, so that those checking the global for why there was a * failure can utilize it later. * * @since 1.2.2 * @deprecated 2.5.0 Use wp_signon() * @see wp_signon() * * @global string $error Error when false is returned * * @param string $username User's username * @param string $password User's password * @param string $deprecated Not used * @return bool False on login failure, true on successful check */ function wp_login($username, $password, $deprecated = '') { _deprecated_function( __FUNCTION__, '2.5.0', 'wp_signon()' ); global $error; $user = wp_authenticate($username, $password); if ( ! is_wp_error($user) ) return true; $error = $user->get_error_message(); return false; } else : _deprecated_function( 'wp_login', '2.5.0', 'wp_signon()' ); endif; /** * WordPress AtomPub API implementation. * * Originally stored in wp-app.php, and later wp-includes/class-wp-atom-server.php. * It is kept here in case a plugin directly referred to the class. * * @since 2.2.0 * @deprecated 3.5.0 * * @link https://wordpress.org/plugins/atom-publishing-protocol/ */ if ( ! class_exists( 'wp_atom_server', false ) ) { class wp_atom_server { public function __call( $name, $arguments ) { _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); } public static function __callStatic( $name, $arguments ) { _deprecated_function( __CLASS__ . '::' . $name, '3.5.0', 'the Atom Publishing Protocol plugin' ); } } }
[+]
..
[-] class-wp-theme.php
[open]
[-] class-wp-list-util.php
[open]
[-] atomlib.php
[open]
[-] media-template.php
[open]
[-] class-wp-roles.php
[open]
[-] query.php
[open]
[-] post-thumbnail-template.php
[open]
[-] general-template.php
[open]
[-] class-wp-customize-section.php
[open]
[-] author-template.php
[open]
[-] class-walker-nav-menu.php
[open]
[-] spl-autoload-compat.php
[open]
[-] class-phpmailer.php
[open]
[-] class-wp-http-requests-response.php
[open]
[-] theme.php
[open]
[-] ms-default-constants.php
[open]
[-] session.php
[open]
[-] class-wp-post-type.php
[open]
[-] widgets.php
[open]
[-] nav-menu.php
[open]
[-] class-wp-customize-panel.php
[open]
[-] class-wp-feed-cache-transient.php
[open]
[-] pluggable.php
[open]
[-] link-template.php
[open]
[-] class-wp-query.php
[open]
[-] class-wp-user-meta-session-tokens.php
[open]
[-] class-wp-image-editor.php
[open]
[-] class-IXR.php
[open]
[-] registration.php
[open]
[-] locale.php
[open]
[-] class.wp-scripts.php
[open]
[-] rest-api.php
[open]
[-] wp-diff.php
[open]
[-] rss.php
[open]
[+]
js
[-] pluggable-deprecated.php
[open]
[-] class-wp-tax-query.php
[open]
[-] embed-template.php
[open]
[-] class-wp-dependency.php
[open]
[-] class-wp-oembed-controller.php
[open]
[-] class-phpass.php
[open]
[-] ms-deprecated.php
[open]
[-] class-wp-simplepie-sanitize-kses.php
[open]
[-] script-loader.php
[open]
[-] class-wp-user.php
[open]
[-] category-template.php
[open]
[-] functions.php
[open]
[-] rss-functions.php
[open]
[-] class-wp-comment-query.php
[open]
[-] l10n.php
[open]
[-] load.php
[open]
[-] capabilities.php
[open]
[+]
certificates
[-] nav-menu-template.php
[open]
[-] class-wp-locale.php
[open]
[-] vars.php
[open]
[-] wlwmanifest.xml
[open]
[-] class-walker-comment.php
[open]
[-] functions.wp-styles.php
[open]
[+]
IXR
[-] class-http.php
[open]
[+]
fonts
[-] class-walker-category-dropdown.php
[open]
[-] default-constants.php
[open]
[-] ms-default-filters.php
[open]
[+]
SimplePie
[-] cache.php
[open]
[-] class-wp-widget-factory.php
[open]
[-] class-wp-hook.php
[open]
[+]
Requests
[-] class-wp-network.php
[open]
[-] feed-rss.php
[open]
[-] feed.php
[open]
[-] formatting.php
[open]
[+]
images
[+]
rest-api
[-] class.wp-styles.php
[open]
[-] version.php
[open]
[-] update.php
[open]
[-] class-walker-page-dropdown.php
[open]
[-] class-wp-user-query.php
[open]
[-] class-wp-http-cookie.php
[open]
[-] class-walker-page.php
[open]
[-] class-wp-error.php
[open]
[-] http.php
[open]
[-] admin-bar.php
[open]
[-] class-wp-embed.php
[open]
[-] class-wp-metadata-lazyloader.php
[open]
[+]
widgets
[-] class-requests.php
[open]
[-] bookmark-template.php
[open]
[-] class-wp-editor.php
[open]
[-] class-wp-walker.php
[open]
[-] ms-load.php
[open]
[-] embed.php
[open]
[-] class-wp-text-diff-renderer-table.php
[open]
[-] feed-rss2-comments.php
[open]
[-] class-feed.php
[open]
[-] post.php
[open]
[-] class-wp-matchesmapregex.php
[open]
[-] post-formats.php
[open]
[-] class.wp-dependencies.php
[open]
[-] class-wp-session-tokens.php
[open]
[+]
pomo
[-] class-wp-admin-bar.php
[open]
[-] taxonomy.php
[open]
[-] default-widgets.php
[open]
[-] class-wp-locale-switcher.php
[open]
[-] shortcodes.php
[open]
[-] class-wp-site.php
[open]
[-] class-wp-site-query.php
[open]
[+]
customize
[+]
css
[-] class-wp-customize-nav-menus.php
[open]
[-] class-wp-rewrite.php
[open]
[-] canonical.php
[open]
[-] class-wp.php
[open]
[-] class-snoopy.php
[open]
[-] class-wp-http-proxy.php
[open]
[-] class-wp-comment.php
[open]
[-] default-filters.php
[open]
[-] date.php
[open]
[-] functions.wp-scripts.php
[open]
[-] wp-db.php
[open]
[-] class-wp-http-requests-hooks.php
[open]
[+]
ID3
[-] media.php
[open]
[-] kses.php
[open]
[-] feed-rdf.php
[open]
[-] template-loader.php
[open]
[-] user.php
[open]
[-] post-template.php
[open]
[-] class-simplepie.php
[open]
[-] rewrite.php
[open]
[-] class-wp-http-curl.php
[open]
[-] cron.php
[open]
[-] template.php
[open]
[-] comment.php
[open]
[-] class-wp-http-encoding.php
[open]
[-] class-wp-xmlrpc-server.php
[open]
[-] comment-template.php
[open]
[-] class-wp-customize-widgets.php
[open]
[-] class-wp-simplepie-file.php
[open]
[-] feed-atom-comments.php
[open]
[-] class-smtp.php
[open]
[-] class-wp-term.php
[open]
[-] meta.php
[open]
[+]
theme-compat
[-] class-wp-widget.php
[open]
[-] class-wp-image-editor-imagick.php
[open]
[-] class-wp-customize-control.php
[open]
[-] ms-files.php
[open]
[-] class-wp-customize-setting.php
[open]
[-] class-wp-network-query.php
[open]
[-] option.php
[open]
[-] class-wp-meta-query.php
[open]
[-] registration-functions.php
[open]
[-] ms-functions.php
[open]
[+]
random_compat
[-] class-wp-term-query.php
[open]
[-] ms-settings.php
[open]
[-] bookmark.php
[open]
[-] feed-atom.php
[open]
[-] class-wp-feed-cache.php
[open]
[-] class-wp-customize-manager.php
[open]
[-] plugin.php
[open]
[-] class-wp-image-editor-gd.php
[open]
[-] class-wp-http-ixr-client.php
[open]
[-] category.php
[open]
[-] revision.php
[open]
[-] class-wp-role.php
[open]
[-] class-wp-http-streams.php
[open]
[-] class-wp-ajax-response.php
[open]
[-] class-wp-text-diff-renderer-inline.php
[open]
[-] class-wp-taxonomy.php
[open]
[-] ms-blogs.php
[open]
[-] class-wp-post.php
[open]
[-] class-oembed.php
[open]
[-] class-pop3.php
[open]
[-] feed-rss2.php
[open]
[-] class-wp-http-response.php
[open]
[-] class-json.php
[open]
[-] compat.php
[open]
[-] deprecated.php
[open]
[+]
Text
[-] class-walker-category.php
[open]