From 56ed90b20dc41f1e46f75fe32dce1168c9156208 Mon Sep 17 00:00:00 2001 From: Marian <42134098+IanDelMar@users.noreply.github.com> Date: Sat, 14 Sep 2024 07:50:09 +0200 Subject: [PATCH] Remove superfluous comments --- src/Visitor.php | 37 + wordpress-stubs.php | 5533 ------------------------------------------- 2 files changed, 37 insertions(+), 5533 deletions(-) diff --git a/src/Visitor.php b/src/Visitor.php index 51b7864..ba005d5 100644 --- a/src/Visitor.php +++ b/src/Visitor.php @@ -73,6 +73,8 @@ public function enterNode(Node $node) return null; } + $node = $this->getCleanCommentsNode($node); + $docComment = $node->getDocComment(); if (! ($docComment instanceof Doc)) { @@ -870,4 +872,39 @@ static function (Node $node): bool { } return ''; } + + private function getCleanCommentsNode(Node $node): Node + { + if (count($node->getComments()) === 0) { + return $node; + } + + // Remove "//" comments. + $comments = []; + foreach ($node->getComments() as $comment) { + if (strpos(trim($comment->getText()), '//') === 0) { + continue; + } + $comments[] = $comment; + } + + $node->setAttribute('comments', $comments); + + if ($node->getDocComment() === null) { + return $node; + } + + // Remove file comments that are bound to the first node in a file. + $comments = $node->getComments(); + if ( + $comments[0]->getText() !== (string)$node->getDocComment() + && strpos($comments[0]->getText(), '/**#@') !== 0 + ) { + array_shift($comments); + } + + $node->setAttribute('comments', $comments); + + return $node; + } } diff --git a/wordpress-stubs.php b/wordpress-stubs.php index 2555af5..b24542b 100644 --- a/wordpress-stubs.php +++ b/wordpress-stubs.php @@ -6,13 +6,6 @@ */ namespace { - /** - * Upgrader API: WP_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Generic Skin for the WordPress Upgrader classes. This skin is designed to be extended for specific purposes. * @@ -214,13 +207,6 @@ public function hide_process_failed($wp_error) { } } - /** - * Upgrader API: Automatic_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Upgrader Skin for Automatic WordPress Upgrades. * @@ -294,13 +280,6 @@ public function footer() { } } - /** - * Upgrader API: Bulk_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Generic Bulk Upgrader Skin for WordPress Upgrades. * @@ -438,13 +417,6 @@ public function flush_output() { } } - /** - * Upgrader API: Bulk_Plugin_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Bulk Plugin Upgrader Skin for WordPress Plugin Upgrades. * @@ -502,13 +474,6 @@ public function bulk_footer() { } } - /** - * Upgrader API: Bulk_Plugin_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Bulk Theme Upgrader Skin for WordPress Theme Upgrades. * @@ -969,13 +934,6 @@ public function delete_temp_backup(array $temp_backups = array()) { } } - /** - * Upgrade API: Core_Upgrader class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for updating core. * @@ -1051,12 +1009,6 @@ public function check_files() { } } - /** - * The custom background script. - * - * @package WordPress - * @subpackage Administration - */ /** * The custom background class. * @@ -1176,12 +1128,6 @@ public function wp_set_background_image() { } } - /** - * The custom header image script. - * - * @package WordPress - * @subpackage Administration - */ /** * The custom header image class. * @@ -1547,13 +1493,6 @@ public function get_previous_crop($attachment) { } } - /** - * Upgrade API: File_Upload_Upgrader class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for handling file uploads. * @@ -1658,9 +1597,6 @@ function __construct($port_mode = \FALSE, $verb = \FALSE, $le = \FALSE) function ftp_base($port_mode = \FALSE) { } - // - // - // function parselisting($line) { } @@ -1787,39 +1723,19 @@ function glob_regexp($pattern, $subject) function dirlist($remote) { } - // - // - // function _checkCode() { } function _list($arg = "", $cmd = "LIST", $fnction = "_list") { } - // - // - // - // Gnre une erreur pour traitement externe la classe function PushError($fctname, $msg, $desc = \false) { } - // Rcupre une erreur externe function PopError() { } } - /** - * PemFTP - An Ftp implementation in pure PHP - * - * @package PemFTP - * @since 2.5.0 - * - * @version 1.0 - * @copyright Alexey Dotsenko - * @author Alexey Dotsenko - * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html - * @license LGPL https://opensource.org/licenses/lgpl-license.html - */ /** * FTP implementation using fsockopen to connect. * @@ -1838,9 +1754,6 @@ class ftp_pure extends \ftp_base function __construct($verb = \FALSE, $le = \FALSE) { } - // - // - // function _settimeout($sock) { } @@ -1872,18 +1785,6 @@ function _quit($force = \FALSE) { } } - /** - * PemFTP - An Ftp implementation in pure PHP - * - * @package PemFTP - * @since 2.5.0 - * - * @version 1.0 - * @copyright Alexey Dotsenko - * @author Alexey Dotsenko - * @link https://www.phpclasses.org/package/1743-PHP-FTP-client-in-pure-PHP.html - * @license LGPL https://opensource.org/licenses/lgpl-license.html - */ /** * Socket Based FTP implementation * @@ -1902,9 +1803,6 @@ class ftp_sockets extends \ftp_base function __construct($verb = \FALSE, $le = \FALSE) { } - // - // - // function _settimeout($sock) { } @@ -1939,13 +1837,6 @@ function _quit() class ftp extends \ftp_sockets { } - /** - * Upgrader API: Language_Pack_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Translation Upgrader Skin for WordPress Translation Upgrades. * @@ -2008,13 +1899,6 @@ public function bulk_footer() { } } - /** - * Upgrade API: Language_Pack_Upgrader class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for updating/installing language packs (translations) * for plugins, themes, and core. @@ -2152,804 +2036,168 @@ public function clear_destination($remote_destination) define( 'PCLZIP_CB_PRE_DELETE', 78007 ); define( 'PCLZIP_CB_POST_DELETE', 78008 ); */ - // -------------------------------------------------------------------------------- - // Class : PclZip - // Description : - // PclZip is the class that represent a Zip archive. - // The public methods allow the manipulation of the archive. - // Attributes : - // Attributes must not be accessed directly. - // Methods : - // PclZip() : Object creator - // create() : Creates the Zip archive - // listContent() : List the content of the Zip archive - // extract() : Extract the content of the archive - // properties() : List the properties of the archive - // -------------------------------------------------------------------------------- class PclZip { - // ----- Filename of the zip file var $zipname = ''; - // ----- File descriptor of the zip file var $zip_fd = 0; - // ----- Internal error handling var $error_code = 1; var $error_string = ''; - // ----- Current status of the magic_quotes_runtime - // This value store the php configuration for magic_quotes - // The class can then disable the magic_quotes and reset it after var $magic_quotes_status; - // -------------------------------------------------------------------------------- - // Function : PclZip() - // Description : - // Creates a PclZip object and set the name of the associated Zip archive - // filename. - // Note that no real action is taken, if the archive does not exist it is not - // created. Use create() for that. - // -------------------------------------------------------------------------------- function __construct($p_zipname) { } public function PclZip($p_zipname) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : - // create($p_filelist, $p_add_dir="", $p_remove_dir="") - // create($p_filelist, $p_option, $p_option_value, ...) - // Description : - // This method supports two different synopsis. The first one is historical. - // This method creates a Zip Archive. The Zip file is created in the - // filesystem. The files and directories indicated in $p_filelist - // are added in the archive. See the parameters description for the - // supported format of $p_filelist. - // When a directory is in the list, the directory and its content is added - // in the archive. - // In this synopsis, the function takes an optional variable list of - // options. See below the supported options. - // Parameters : - // $p_filelist : An array containing file or directory names, or - // a string containing one filename or one directory name, or - // a string containing a list of filenames and/or directory - // names separated by spaces. - // $p_add_dir : A path to add before the real path of the archived file, - // in order to have it memorized in the archive. - // $p_remove_dir : A path to remove from the real path of the file to archive, - // in order to have a shorter path memorized in the archive. - // When $p_add_dir and $p_remove_dir are set, $p_remove_dir - // is removed first, before $p_add_dir is added. - // Options : - // PCLZIP_OPT_ADD_PATH : - // PCLZIP_OPT_REMOVE_PATH : - // PCLZIP_OPT_REMOVE_ALL_PATH : - // PCLZIP_OPT_COMMENT : - // PCLZIP_CB_PRE_ADD : - // PCLZIP_CB_POST_ADD : - // Return Values : - // 0 on failure, - // The list of the added files, with a status of the add action. - // (see PclZip::listContent() for list entry format) - // -------------------------------------------------------------------------------- function create($p_filelist) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : - // add($p_filelist, $p_add_dir="", $p_remove_dir="") - // add($p_filelist, $p_option, $p_option_value, ...) - // Description : - // This method supports two synopsis. The first one is historical. - // This methods add the list of files in an existing archive. - // If a file with the same name already exists, it is added at the end of the - // archive, the first one is still present. - // If the archive does not exist, it is created. - // Parameters : - // $p_filelist : An array containing file or directory names, or - // a string containing one filename or one directory name, or - // a string containing a list of filenames and/or directory - // names separated by spaces. - // $p_add_dir : A path to add before the real path of the archived file, - // in order to have it memorized in the archive. - // $p_remove_dir : A path to remove from the real path of the file to archive, - // in order to have a shorter path memorized in the archive. - // When $p_add_dir and $p_remove_dir are set, $p_remove_dir - // is removed first, before $p_add_dir is added. - // Options : - // PCLZIP_OPT_ADD_PATH : - // PCLZIP_OPT_REMOVE_PATH : - // PCLZIP_OPT_REMOVE_ALL_PATH : - // PCLZIP_OPT_COMMENT : - // PCLZIP_OPT_ADD_COMMENT : - // PCLZIP_OPT_PREPEND_COMMENT : - // PCLZIP_CB_PRE_ADD : - // PCLZIP_CB_POST_ADD : - // Return Values : - // 0 on failure, - // The list of the added files, with a status of the add action. - // (see PclZip::listContent() for list entry format) - // -------------------------------------------------------------------------------- function add($p_filelist) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : listContent() - // Description : - // This public method, gives the list of the files and directories, with their - // properties. - // The properties of each entries in the list are (used also in other functions) : - // filename : Name of the file. For a create or add action it is the filename - // given by the user. For an extract function it is the filename - // of the extracted file. - // stored_filename : Name of the file / directory stored in the archive. - // size : Size of the stored file. - // compressed_size : Size of the file's data compressed in the archive - // (without the headers overhead) - // mtime : Last known modification date of the file (UNIX timestamp) - // comment : Comment associated with the file - // folder : true | false - // index : index of the file in the archive - // status : status of the action (depending of the action) : - // Values are : - // ok : OK ! - // filtered : the file / dir is not extracted (filtered by user) - // already_a_directory : the file can not be extracted because a - // directory with the same name already exists - // write_protected : the file can not be extracted because a file - // with the same name already exists and is - // write protected - // newer_exist : the file was not extracted because a newer file exists - // path_creation_fail : the file is not extracted because the folder - // does not exist and can not be created - // write_error : the file was not extracted because there was an - // error while writing the file - // read_error : the file was not extracted because there was an error - // while reading the file - // invalid_header : the file was not extracted because of an archive - // format error (bad file header) - // Note that each time a method can continue operating when there - // is an action error on a file, the error is only logged in the file status. - // Return Values : - // 0 on an unrecoverable failure, - // The list of the files in the archive. - // -------------------------------------------------------------------------------- function listContent() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : - // extract($p_path="./", $p_remove_path="") - // extract([$p_option, $p_option_value, ...]) - // Description : - // This method supports two synopsis. The first one is historical. - // This method extract all the files / directories from the archive to the - // folder indicated in $p_path. - // If you want to ignore the 'root' part of path of the memorized files - // you can indicate this in the optional $p_remove_path parameter. - // By default, if a newer file with the same name already exists, the - // file is not extracted. - // - // If both PCLZIP_OPT_PATH and PCLZIP_OPT_ADD_PATH options - // are used, the path indicated in PCLZIP_OPT_ADD_PATH is append - // at the end of the path value of PCLZIP_OPT_PATH. - // Parameters : - // $p_path : Path where the files and directories are to be extracted - // $p_remove_path : First part ('root' part) of the memorized path - // (if any similar) to remove while extracting. - // Options : - // PCLZIP_OPT_PATH : - // PCLZIP_OPT_ADD_PATH : - // PCLZIP_OPT_REMOVE_PATH : - // PCLZIP_OPT_REMOVE_ALL_PATH : - // PCLZIP_CB_PRE_EXTRACT : - // PCLZIP_CB_POST_EXTRACT : - // Return Values : - // 0 or a negative value on failure, - // The list of the extracted files, with a status of the action. - // (see PclZip::listContent() for list entry format) - // -------------------------------------------------------------------------------- function extract() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : - // extractByIndex($p_index, $p_path="./", $p_remove_path="") - // extractByIndex($p_index, [$p_option, $p_option_value, ...]) - // Description : - // This method supports two synopsis. The first one is historical. - // This method is doing a partial extract of the archive. - // The extracted files or folders are identified by their index in the - // archive (from 0 to n). - // Note that if the index identify a folder, only the folder entry is - // extracted, not all the files included in the archive. - // Parameters : - // $p_index : A single index (integer) or a string of indexes of files to - // extract. The form of the string is "0,4-6,8-12" with only numbers - // and '-' for range or ',' to separate ranges. No spaces or ';' - // are allowed. - // $p_path : Path where the files and directories are to be extracted - // $p_remove_path : First part ('root' part) of the memorized path - // (if any similar) to remove while extracting. - // Options : - // PCLZIP_OPT_PATH : - // PCLZIP_OPT_ADD_PATH : - // PCLZIP_OPT_REMOVE_PATH : - // PCLZIP_OPT_REMOVE_ALL_PATH : - // PCLZIP_OPT_EXTRACT_AS_STRING : The files are extracted as strings and - // not as files. - // The resulting content is in a new field 'content' in the file - // structure. - // This option must be used alone (any other options are ignored). - // PCLZIP_CB_PRE_EXTRACT : - // PCLZIP_CB_POST_EXTRACT : - // Return Values : - // 0 on failure, - // The list of the extracted files, with a status of the action. - // (see PclZip::listContent() for list entry format) - // -------------------------------------------------------------------------------- - //function extractByIndex($p_index, options...) function extractByIndex($p_index) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : - // delete([$p_option, $p_option_value, ...]) - // Description : - // This method removes files from the archive. - // If no parameters are given, then all the archive is emptied. - // Parameters : - // None or optional arguments. - // Options : - // PCLZIP_OPT_BY_INDEX : - // PCLZIP_OPT_BY_NAME : - // PCLZIP_OPT_BY_EREG : - // PCLZIP_OPT_BY_PREG : - // Return Values : - // 0 on failure, - // The list of the files which are still present in the archive. - // (see PclZip::listContent() for list entry format) - // -------------------------------------------------------------------------------- function delete() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : deleteByIndex() - // Description : - // ***** Deprecated ***** - // delete(PCLZIP_OPT_BY_INDEX, $p_index) should be preferred. - // -------------------------------------------------------------------------------- function deleteByIndex($p_index) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : properties() - // Description : - // This method gives the properties of the archive. - // The properties are : - // nb : Number of files in the archive - // comment : Comment associated with the archive file - // status : not_exist, ok - // Parameters : - // None - // Return Values : - // 0 on failure, - // An array with the archive properties. - // -------------------------------------------------------------------------------- function properties() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : duplicate() - // Description : - // This method creates an archive by copying the content of an other one. If - // the archive already exist, it is replaced by the new one without any warning. - // Parameters : - // $p_archive : The filename of a valid archive, or - // a valid PclZip object. - // Return Values : - // 1 on success. - // 0 or a negative value on error (error code). - // -------------------------------------------------------------------------------- function duplicate($p_archive) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : merge() - // Description : - // This method merge the $p_archive_to_add archive at the end of the current - // one ($this). - // If the archive ($this) does not exist, the merge becomes a duplicate. - // If the $p_archive_to_add archive does not exist, the merge is a success. - // Parameters : - // $p_archive_to_add : It can be directly the filename of a valid zip archive, - // or a PclZip object archive. - // Return Values : - // 1 on success, - // 0 or negative values on error (see below). - // -------------------------------------------------------------------------------- function merge($p_archive_to_add) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : errorCode() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function errorCode() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : errorName() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function errorName($p_with_code = \false) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : errorInfo() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function errorInfo($p_full = \false) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // ***** UNDER THIS LINE ARE DEFINED PRIVATE INTERNAL FUNCTIONS ***** - // ***** ***** - // ***** THESES FUNCTIONS MUST NOT BE USED DIRECTLY ***** - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privCheckFormat() - // Description : - // This method check that the archive exists and is a valid zip archive. - // Several level of check exists. (future) - // Parameters : - // $p_level : Level of check. Default 0. - // 0 : Check the first bytes (magic codes) (default value)) - // 1 : 0 + Check the central directory (future) - // 2 : 1 + Check each file header (future) - // Return Values : - // true on success, - // false on error, the error code is set. - // -------------------------------------------------------------------------------- function privCheckFormat($p_level = 0) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privParseOptions() - // Description : - // This internal methods reads the variable list of arguments ($p_options_list, - // $p_size) and generate an array with the options and values ($v_result_list). - // $v_requested_options contains the options that can be present and those that - // must be present. - // $v_requested_options is an array, with the option value as key, and 'optional', - // or 'mandatory' as value. - // Parameters : - // See above. - // Return Values : - // 1 on success. - // 0 on failure. - // -------------------------------------------------------------------------------- function privParseOptions(&$p_options_list, $p_size, &$v_result_list, $v_requested_options = \false) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privOptionDefaultThreshold() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privOptionDefaultThreshold(&$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privFileDescrParseAtt() - // Description : - // Parameters : - // Return Values : - // 1 on success. - // 0 on failure. - // -------------------------------------------------------------------------------- function privFileDescrParseAtt(&$p_file_list, &$p_filedescr, $v_options, $v_requested_options = \false) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privFileDescrExpand() - // Description : - // This method look for each item of the list to see if its a file, a folder - // or a string to be added as file. For any other type of files (link, other) - // just ignore the item. - // Then prepare the information that will be stored for that file. - // When its a folder, expand the folder with all the files that are in that - // folder (recursively). - // Parameters : - // Return Values : - // 1 on success. - // 0 on failure. - // -------------------------------------------------------------------------------- function privFileDescrExpand(&$p_filedescr_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privCreate() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privCreate($p_filedescr_list, &$p_result_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privAdd() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privAdd($p_filedescr_list, &$p_result_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privOpenFd() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function privOpenFd($p_mode) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privCloseFd() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function privCloseFd() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privAddList() - // Description : - // $p_add_dir and $p_remove_dir will give the ability to memorize a path which is - // different from the real path of the file. This is useful if you want to have PclTar - // running in any directory, and memorize relative path from an other directory. - // Parameters : - // $p_list : An array containing the file or directory names to add in the tar - // $p_result_list : list of added files with their properties (specially the status field) - // $p_add_dir : Path to add in the filename path archived - // $p_remove_dir : Path to remove in the filename path archived - // Return Values : - // -------------------------------------------------------------------------------- - // function privAddList($p_list, &$p_result_list, $p_add_dir, $p_remove_dir, $p_remove_all_dir, &$p_options) function privAddList($p_filedescr_list, &$p_result_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privAddFileList() - // Description : - // Parameters : - // $p_filedescr_list : An array containing the file description - // or directory names to add in the zip - // $p_result_list : list of added files with their properties (specially the status field) - // Return Values : - // -------------------------------------------------------------------------------- function privAddFileList($p_filedescr_list, &$p_result_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privAddFile() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privAddFile($p_filedescr, &$p_header, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privAddFileUsingTempFile() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privAddFileUsingTempFile($p_filedescr, &$p_header, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privCalculateStoredFilename() - // Description : - // Based on file descriptor properties and global options, this method - // calculate the filename that will be stored in the archive. - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privCalculateStoredFilename(&$p_filedescr, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privWriteFileHeader() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privWriteFileHeader(&$p_header) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privWriteCentralFileHeader() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privWriteCentralFileHeader(&$p_header) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privWriteCentralHeader() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privWriteCentralHeader($p_nb_entries, $p_size, $p_offset, $p_comment) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privList() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privList(&$p_list) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privConvertHeader2FileInfo() - // Description : - // This function takes the file information from the central directory - // entries and extract the interesting parameters that will be given back. - // The resulting file infos are set in the array $p_info - // $p_info['filename'] : Filename with full path. Given by user (add), - // extracted in the filesystem (extract). - // $p_info['stored_filename'] : Stored filename in the archive. - // $p_info['size'] = Size of the file. - // $p_info['compressed_size'] = Compressed size of the file. - // $p_info['mtime'] = Last modification date of the file. - // $p_info['comment'] = Comment associated with the file. - // $p_info['folder'] = true/false : indicates if the entry is a folder or not. - // $p_info['status'] = status of the action on the file. - // $p_info['crc'] = CRC of the file content. - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privConvertHeader2FileInfo($p_header, &$p_info) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privExtractByRule() - // Description : - // Extract a file or directory depending of rules (by index, by name, ...) - // Parameters : - // $p_file_list : An array where will be placed the properties of each - // extracted file - // $p_path : Path to add while writing the extracted files - // $p_remove_path : Path to remove (from the file memorized path) while writing the - // extracted files. If the path does not match the file path, - // the file is extracted with its memorized path. - // $p_remove_path does not apply to 'list' mode. - // $p_path and $p_remove_path are commulative. - // Return Values : - // 1 on success,0 or less on error (see error code list) - // -------------------------------------------------------------------------------- function privExtractByRule(&$p_file_list, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privExtractFile() - // Description : - // Parameters : - // Return Values : - // - // 1 : ... ? - // PCLZIP_ERR_USER_ABORTED(2) : User ask for extraction stop in callback - // -------------------------------------------------------------------------------- function privExtractFile(&$p_entry, $p_path, $p_remove_path, $p_remove_all_path, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privExtractFileUsingTempFile() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privExtractFileUsingTempFile(&$p_entry, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privExtractFileInOutput() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privExtractFileInOutput(&$p_entry, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privExtractFileAsString() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privExtractFileAsString(&$p_entry, &$p_string, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privReadFileHeader() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privReadFileHeader(&$p_header) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privReadCentralFileHeader() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privReadCentralFileHeader(&$p_header) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privCheckFileHeaders() - // Description : - // Parameters : - // Return Values : - // 1 on success, - // 0 on error; - // -------------------------------------------------------------------------------- function privCheckFileHeaders(&$p_local_header, &$p_central_header) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privReadEndCentralDir() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privReadEndCentralDir(&$p_central_dir) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privDeleteByRule() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privDeleteByRule(&$p_result_list, &$p_options) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privDirCheck() - // Description : - // Check if a directory exists, if not it creates it and all the parents directory - // which may be useful. - // Parameters : - // $p_dir : Directory path to check. - // Return Values : - // 1 : OK - // -1 : Unable to create directory - // -------------------------------------------------------------------------------- function privDirCheck($p_dir, $p_is_dir = \false) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privMerge() - // Description : - // If $p_archive_to_add does not exist, the function exit with a success result. - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privMerge(&$p_archive_to_add) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privDuplicate() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privDuplicate($p_archive_filename) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privErrorLog() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function privErrorLog($p_error_code = 0, $p_error_string = '') { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privErrorReset() - // Description : - // Parameters : - // -------------------------------------------------------------------------------- function privErrorReset() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privDisableMagicQuotes() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privDisableMagicQuotes() { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : privSwapBackMagicQuotes() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function privSwapBackMagicQuotes() { } // -------------------------------------------------------------------------------- } - /** - * Upgrader API: Plugin_Installer_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Plugin Installer Skin for WordPress Plugin Installer. * @@ -3005,13 +2253,6 @@ public function after() { } } - /** - * Upgrader API: Plugin_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Plugin Upgrader Skin for WordPress Plugin Upgrades. * @@ -3068,13 +2309,6 @@ public function after() { } } - /** - * Upgrade API: Plugin_Upgrader class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for upgrading/installing plugins. * @@ -3285,13 +2519,6 @@ public function delete_old_plugin($removed, $local_destination, $remote_destinat { } } - /** - * Upgrader API: Theme_Installer_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Theme Installer Skin for the WordPress Theme Installer. * @@ -3347,13 +2574,6 @@ public function after() { } } - /** - * Upgrader API: Theme_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Theme Upgrader Skin for WordPress Theme Upgrades. * @@ -3394,13 +2614,6 @@ public function after() { } } - /** - * Upgrade API: Theme_Upgrader class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for upgrading/installing themes. * @@ -3835,13 +3048,6 @@ public function unset_children($element, &$children_elements) { } } - /** - * Taxonomy API: Walker_Category_Checklist class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Core walker class to output an unordered list of category checkbox input elements. * @@ -3855,7 +3061,6 @@ class Walker_Category_Checklist extends \Walker { public $tree_type = 'category'; public $db_fields = array('parent' => 'parent', 'id' => 'term_id'); - // TODO: Decouple this. /** * Starts the list before the elements are added. * @@ -3955,13 +3160,6 @@ public function end_el(&$output, $data_object, $depth = 0, $args = array()) { } } - /** - * Nav Menu API: Walker_Nav_Menu class - * - * @package WordPress - * @subpackage Nav_Menus - * @since 4.6.0 - */ /** * Core class used to implement an HTML list of nav menu items. * @@ -4066,13 +3264,6 @@ protected function build_atts($atts = array()) { } } - /** - * Navigation Menu API: Walker_Nav_Menu_Checklist class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Create HTML list of nav menu input items. * @@ -4137,13 +3328,6 @@ public function start_el(&$output, $data_object, $depth = 0, $args = \null, $cur { } } - /** - * Navigation Menu API: Walker_Nav_Menu_Edit class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Create HTML list of nav menu input items. * @@ -4201,13 +3385,6 @@ public function start_el(&$output, $data_object, $depth = 0, $args = \null, $cur { } } - /** - * Upgrader API: WP_Ajax_Upgrader_Skin class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Upgrader Skin for Ajax WordPress upgrades. * @@ -4310,13 +3487,6 @@ public function feedback($feedback, ...$args) { } } - /** - * Administration API: WP_List_Table class - * - * @package WordPress - * @subpackage List_Table - * @since 3.1.0 - */ /** * Base class for displaying a list of items in an ajaxified HTML table. * @@ -4956,13 +4126,6 @@ public function _js_vars() { } } - /** - * List Table API: WP_Application_Passwords_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 5.6.0 - */ /** * Class for displaying the list of application password items. * @@ -5093,13 +4256,6 @@ public function print_js_template_row() { } } - /** - * Upgrade API: WP_Automatic_Updater class - * - * @package WordPress - * @subpackage Upgrader - * @since 4.6.0 - */ /** * Core class used for handling automatic background updates. * @@ -5283,13 +4439,6 @@ protected function has_fatal_error() { } } - /** - * List Table API: WP_Comments_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying comments in a list table. * @@ -5505,13 +4654,6 @@ public function column_default($item, $column_name) { } } - /** - * Administration: Community Events class. - * - * @package WordPress - * @subpackage Administration - * @since 4.8.0 - */ /** * Class WP_Community_Events. * @@ -5830,12 +4972,6 @@ public static function get_sizes() { } } - /** - * Base WordPress Filesystem - * - * @package WordPress - * @subpackage Filesystem - */ /** * Base WordPress Filesystem class which Filesystem implementations extend. * @@ -6435,12 +5571,6 @@ public function dirlist($path, $include_hidden = \true, $recursive = \false) { } } - /** - * WordPress Direct Filesystem. - * - * @package WordPress - * @subpackage Filesystem - */ /** * WordPress Filesystem Class for direct PHP file and folder manipulation. * @@ -6836,12 +5966,6 @@ public function dirlist($path, $include_hidden = \true, $recursive = \false) { } } - /** - * WordPress FTP Filesystem. - * - * @package WordPress - * @subpackage Filesystem - */ /** * WordPress Filesystem Class for implementing FTP. * @@ -7271,12 +6395,6 @@ public function __destruct() { } } - /** - * WordPress FTP Sockets Filesystem. - * - * @package WordPress - * @subpackage Filesystem - */ /** * WordPress Filesystem Class for implementing FTP Sockets. * @@ -8262,13 +7380,6 @@ public function stop_the_insanity() { } } - /** - * Administration API: WP_Internal_Pointers class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Core class used to implement an internal admin pointers API. * @@ -8345,13 +7456,6 @@ public static function dismiss_pointers_for_new_users($user_id) { } } - /** - * List Table API: WP_Links_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying links in a list table. * @@ -8533,13 +7637,6 @@ protected function handle_row_actions($item, $column_name, $primary) { } } - /** - * Helper functions for displaying a list of items in an ajaxified HTML table. - * - * @package WordPress - * @subpackage List_Table - * @since 4.7.0 - */ /** * Helper class to be used only by back compat functions. * @@ -8582,13 +7679,6 @@ public function get_columns() { } } - /** - * List Table API: WP_Media_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying media items in a list table. * @@ -8808,13 +7898,6 @@ protected function handle_row_actions($item, $column_name, $primary) { } } - /** - * List Table API: WP_MS_Sites_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying sites in a list table for the network admin. * @@ -9045,13 +8128,6 @@ protected function handle_row_actions($item, $column_name, $primary) { } } - /** - * List Table API: WP_MS_Themes_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying themes in a list table for the network admin. * @@ -9116,7 +8192,6 @@ public function prepare_items() public function _search_callback($theme) { } - // Not used by any core columns. /** * @global string $orderby * @global string $order @@ -9258,13 +8333,6 @@ public function single_row($theme) { } } - /** - * List Table API: WP_MS_Users_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying users in a list table for the network admin. * @@ -9453,13 +8521,6 @@ protected function handle_row_actions($item, $column_name, $primary) { } } - /** - * List Table API: WP_Plugin_Install_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying plugins to install in a list table. * @@ -9636,13 +8697,6 @@ protected function get_more_details_link($name, $slug) { } } - /** - * List Table API: WP_Plugins_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying installed plugins in a list table. * @@ -9862,13 +8916,6 @@ protected function get_view_details_link($name, $slug) { } } - /** - * List Table API: WP_Post_Comments_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Core class used to implement displaying post comments in a list table. * @@ -9904,13 +8951,6 @@ public function get_per_page($comment_status = \false) { } } - /** - * List Table API: WP_Posts_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying posts in a list table. * @@ -10637,13 +9677,6 @@ public static function add_suggested_content() { } } - /** - * Screen API: WP_Screen class - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Core class used to implement an admin screen API. * @@ -11782,13 +10815,6 @@ public function should_suggest_persistent_object_cache() { } } - /** - * Administration API: WP_Site_Icon class - * - * @package WordPress - * @subpackage Administration - * @since 4.3.0 - */ /** * Core class used to implement site icon functionality. * @@ -11921,13 +10947,6 @@ public function get_post_metadata($value, $post_id, $meta_key, $single) { } } - /** - * List Table API: WP_Terms_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying terms in a list table. * @@ -12099,13 +11118,6 @@ public function inline_edit() { } } - /** - * List Table API: WP_Themes_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying installed themes in a list table. * @@ -12197,13 +11209,6 @@ public function _js_vars($extra_args = array()) { } } - /** - * List Table API: WP_Theme_Install_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying themes to install in a list table. * @@ -12339,13 +11344,6 @@ public function _js_vars($extra_args = array()) { } } - /** - * List Table API: WP_Users_List_Table class - * - * @package WordPress - * @subpackage Administration - * @since 3.1.0 - */ /** * Core class used to implement displaying users in a list table. * @@ -13477,12 +12475,8 @@ public static function mb_basename($path, $suffix = '') { } } - // End: Defines class getID3 { - /* - * Settings - */ /** * CASE SENSITIVE! - i.e. (must be supported by iconv()). Examples: ISO-8859-1 UTF-8 UTF-16 UTF-16BE * @@ -13501,9 +12495,6 @@ class getID3 * @var bool */ public $encoding_id3v1_autodetect = \false; - /* - * Optional tag checks - disable for speed. - */ /** * Read and process ID3v1 tags * @@ -13540,27 +12531,18 @@ class getID3 * @var bool */ public $option_tags_html = \true; - /* - * Optional tag/comment calculations - */ /** * Calculate additional info such as bitrate, channelmode etc * * @var bool */ public $option_extra_info = \true; - /* - * Optional handling of embedded attachments (e.g. images) - */ /** * Defaults to true (ATTACHMENTS_INLINE) for backward compatibility * * @var bool|string */ public $option_save_attachments = \true; - /* - * Optional calculations - */ /** * Get MD5 sum of data part - slow * @@ -13592,7 +12574,6 @@ class getID3 * @var int */ public $option_fread_buffer_size = 32768; - // module-specific options /** archive.rar * if true use PHP RarArchive extension, if false (non-extension parsing not yet written in getID3) * @@ -13704,7 +12685,6 @@ class getID3 * @var int */ public $options_misc_torrent_max_torrent_filesize = 1048576; - // Public variables /** * Filename of file being analysed. * @@ -13924,7 +12904,6 @@ abstract class getid3_handler * @var getID3 */ protected $getid3; - // pointer /** * Analyzing filepointer or string. * @@ -14500,7 +13479,6 @@ public function getHeight() { } } - // [FD] -- Relative position of the data that should be in position of the virtual block. /** * @tutorial http://www.matroska.org/technical/specs/index.html * @@ -14561,7 +13539,6 @@ public static function displayUnit($value) { } } - // needed for ISO 639-2 language code lookup class getid3_quicktime extends \getid3_handler { /** audio-video.quicktime @@ -14791,7 +13768,6 @@ public function quicktime_bookmark_time_scale($info) class getid3_riff extends \getid3_handler { protected $container = 'riff'; - // default /** * @return bool * @@ -15036,7 +14012,6 @@ class getid3_dts extends \getid3_handler // 14-bit big-endian 3 => "\xff\x1f\x00\xe8", ); - // 14-bit little-endian /** * @return bool */ @@ -15889,7 +14864,6 @@ class IXR_Client var $debug = \false; var $timeout; var $headers = array(); - // Storage place for an error message var $error = \false; /** * PHP5 constructor. @@ -16136,23 +15110,17 @@ class IXR_Message { var $message = \false; var $messageType = \false; - // methodCall / methodResponse / fault var $faultCode = \false; var $faultString = \false; var $methodName = ''; var $params = array(); - // Current variable stacks var $_arraystructs = array(); - // The stack used to keep track of the current array/struct var $_arraystructstypes = array(); - // Stack keeping track of if things are structs or array var $_currentStructName = array(); - // A stack as well var $_param; var $_value; var $_currentTag; var $_currentTagContents; - // The XML parser var $_parser; /** * PHP5 constructor. @@ -21170,7 +20138,6 @@ public static function parse_multiple(&$response, $request) protected static function decode_chunked($data) { } - // @codeCoverageIgnoreEnd /** * Convert a key => value array to a 'key: value' array for headers * @@ -22062,7 +21029,6 @@ public function __construct($data, $callback) public function __unserialize($data) { } - // phpcs:enable /** * Perform reinitialization tasks. * @@ -22171,47 +21137,6 @@ public static function is_curl_handle($input) } } namespace { - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Manages all author-related data * @@ -22288,47 +21213,6 @@ public function get_email() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Used to create cache objects * @@ -22491,47 +21375,6 @@ public function touch(); */ public function unlink(); } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Base class for database-based caches * @@ -22552,47 +21395,6 @@ protected static function prepare_simplepie_object_for_cache($data) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Caches data to the filesystem * @@ -22678,47 +21480,6 @@ public function unlink() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Caches data to memcache * @@ -22804,47 +21565,6 @@ public function unlink() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Caches data to memcached * @@ -22922,47 +21642,6 @@ public function unlink() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Caches data to a MySQL database * @@ -23048,15 +21727,6 @@ public function unlink() { } } - /** - * SimplePie Redis Cache Extension - * - * @package SimplePie - * @author Jan Kozak - * @link http://galvani.cz/ - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - * @version 0.2.9 - */ /** * Caches data to redis * @@ -23154,47 +21824,6 @@ public function unlink() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles `` captions as defined in Media RSS. * @@ -23301,47 +21930,6 @@ public function get_type() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Manages all category-related data * @@ -23438,47 +22026,6 @@ public function get_type() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Content-type sniffing * @@ -23550,47 +22097,6 @@ public function feed_or_html() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Manages `` copyright tags as defined in Media RSS * @@ -23762,7 +22268,6 @@ class SimplePie * @access private */ public $autodiscovery_cache_duration = 604800; - // 7 Days. /** * @var string Cache location (relative to executing script) * @see SimplePie::set_cache_location() @@ -24885,47 +23390,6 @@ public static function merge_items($urls, $start = 0, $end = 0, $limit = 0) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * SimplePie class. * @@ -24938,47 +23402,6 @@ public static function merge_items($urls, $start = 0, $end = 0, $limit = 0) class SimplePie_Core extends \SimplePie { } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles `` as defined in Media RSS * @@ -25054,47 +23477,6 @@ public function get_name() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Decode HTML Entities * @@ -25180,47 +23562,6 @@ public function entity() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles everything related to enclosures (including Media RSS and iTunes RSS) * @@ -25763,47 +24104,6 @@ public function get_real_type($find_handler = \false) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * General SimplePie exception class * @@ -25812,47 +24112,6 @@ public function get_real_type($find_handler = \false) class SimplePie_Exception extends \Exception { } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Used for fetching remote files and reading local files * @@ -25880,47 +24139,6 @@ public function __construct($url, $timeout = 10, $redirects = 5, $headers = \nul { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * HTTP Response Parser * @@ -26118,47 +24336,6 @@ public static function prepareHeaders($headers, $count = 1) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * IRI parser/serialiser/normaliser * @@ -26471,47 +24648,6 @@ protected function get_authority() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Manages all item-related data * @@ -26956,47 +25092,6 @@ public function get_source() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Used for feed auto-discovery * @@ -27056,47 +25151,6 @@ public function body(&$array) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Miscellanous utilities * @@ -27311,47 +25365,6 @@ public static function url_remove_credentials($url) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Class to validate and to work with IPv6 addresses. * @@ -27429,47 +25442,6 @@ public static function checkIPv6($ip) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Date Parser * @@ -27901,47 +25873,6 @@ public function date_strtotime($date) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Parses XML into something sane * @@ -28006,47 +25937,6 @@ public function split_ns($string) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles `` or `` tags as defined in Media RSS and iTunes RSS respectively * @@ -28107,47 +25997,6 @@ public function get_value() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles creating objects and calling methods * @@ -28231,47 +26080,6 @@ public function &call($type, $method, $parameters = array()) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles `` as defined in Media RSS * @@ -28347,47 +26155,6 @@ public function get_value() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Used for data cleanup and post-processing * @@ -28399,9 +26166,7 @@ public function get_value() */ class SimplePie_Sanitize { - // Private vars var $base; - // Options var $remove_div = \true; var $image_handler = ''; var $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style'); @@ -28517,47 +26282,6 @@ protected function add_attr($tag, $valuePairs, $document) { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Handles `` * @@ -28646,47 +26370,6 @@ public function get_image_url() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Parses the XML Declaration * @@ -28816,47 +26499,6 @@ public function standalone_value() { } } - /** - * SimplePie - * - * A PHP-Based RSS and Atom Feed Framework. - * Takes the hard work out of managing a complete RSS/Atom solution. - * - * Copyright (c) 2004-2016, Ryan Parman, Sam Sneddon, Ryan McCue, and contributors - * All rights reserved. - * - * Redistribution and use in source and binary forms, with or without modification, are - * permitted provided that the following conditions are met: - * - * * Redistributions of source code must retain the above copyright notice, this list of - * conditions and the following disclaimer. - * - * * Redistributions in binary form must reproduce the above copyright notice, this list - * of conditions and the following disclaimer in the documentation and/or other materials - * provided with the distribution. - * - * * Neither the name of the SimplePie Team nor the names of its contributors may be used - * to endorse or promote products derived from this software without specific prior - * written permission. - * - * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS - * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY - * AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS - * AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR - * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR - * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY - * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR - * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE - * POSSIBILITY OF SUCH DAMAGE. - * - * @package SimplePie - * @copyright 2004-2016 Ryan Parman, Sam Sneddon, Ryan McCue - * @author Ryan Parman - * @author Sam Sneddon - * @author Ryan McCue - * @link http://simplepie.org/ SimplePie - * @license http://www.opensource.org/licenses/bsd-license.php BSD License - */ /** * Decode 'gzip' encoded HTTP data * @@ -29709,16 +27351,6 @@ function _encode(&$string) { } } - /** - * Atom Syndication Format PHP Library - * - * @package AtomLib - * @link http://code.google.com/p/phpatomlib/ - * - * @author Elias Torres - * @version 0.4 - * @since 2.3.0 - */ /** * Structure that store common Atom Feed Properties * @@ -29860,11 +27492,6 @@ function xml_escape($content) { } } - /** - * Server-side rendering of the `core/navigation` block. - * - * @package WordPress - */ /** * Helper functions used to render the navigation block. * @@ -29888,30 +27515,24 @@ public static function render($attributes, $content, $block) } } namespace Avifinfo { - //------------------------------------------------------------------------------ - // Features are parsed into temporary property associations. class Tile { - // Tile item id <-> parent item id associations. public $tile_item_id; public $parent_item_id; } class Prop { - // Property index <-> item id associations. public $property_index; public $item_id; } class Dim_Prop { - // Property <-> features associations. public $property_index; public $width; public $height; } class Chan_Prop { - // Property <-> features associations. public $property_index; public $bit_depth; public $num_channels; @@ -29919,9 +27540,7 @@ class Chan_Prop class Features { public $has_primary_item = false; - // True if "pitm" was parsed. public $has_alpha = false; - // True if an alpha "auxC" was parsed. public $primary_item_id; public $primary_item_features = array( // Deduced from the data below. @@ -29934,11 +27553,8 @@ class Features 'num_channels' => UNDEFINED, ); public $tiles = array(); - // Tile[] public $props = array(); - // Prop[] public $dim_props = array(); - // Dim_Prop[] public $chan_props = array(); /** * Finds the width, height, bit depth and number of channels of the primary item. @@ -29949,19 +27565,13 @@ public function get_primary_item_features() { } } - //------------------------------------------------------------------------------ class Box { public $size; - // In bytes. public $type; - // Four characters. public $version; - // 0 or actual version if this is a full box. public $flags; - // 0 or actual value if this is a full box. public $content_size; - // 'size' minus the header size. /** * Reads the box header. * @@ -29974,7 +27584,6 @@ public function parse($handle, &$num_parsed_boxes, $num_remaining_bytes = MAX_SI { } } - //------------------------------------------------------------------------------ class Parser { public $features; @@ -30004,13 +27613,6 @@ public function parse_file() } } namespace { - /** - * Portable PHP password hashing framework. - * @package phpass - * @since 2.5.0 - * @version 0.5 / WordPress - * @link https://www.openwall.com/phpass/ - */ # # Portable PHP password hashing framework. # @@ -30097,32 +27699,14 @@ function CheckPassword($password, $stored_hash) class POP3 { var $ERROR = ''; - // Error string. var $TIMEOUT = 60; - // Default timeout before giving up on a - // network operation. var $COUNT = -1; - // Mailbox msg count var $BUFFER = 512; - // Socket buffer for socket fgets() calls. - // Per RFC 1939 the returned line a POP3 - // server can send is 512 bytes. var $FP = ''; - // The connection to the server's - // file descriptor var $MAILSERVER = ''; - // Set this to hard code the server name var $DEBUG = \FALSE; - // set to true to echo pop3 - // commands and responses to error_log - // this WILL log passwords! var $BANNER = ''; - // Holds the banner returned by the - // pop server - used for apop() var $ALLOWAPOP = \FALSE; - // Allow or disallow apop() - // This must be set to true - // manually /** * PHP5 constructor. */ @@ -30183,8 +27767,6 @@ function uidl($msgNum = "") function delete($msgNum = "") { } - // ********************************************************* - // The following methods are internal to the class. function is_ok($cmd = "") { } @@ -30233,13 +27815,6 @@ public static function register_autoloader() { } } - /** - * Taxonomy API: Walker_CategoryDropdown class - * - * @package WordPress - * @subpackage Template - * @since 4.4.0 - */ /** * Core class used to create an HTML dropdown list of Categories. * @@ -30310,13 +27885,6 @@ public function start_el(&$output, $data_object, $depth = 0, $args = array(), $c { } } - /** - * Taxonomy API: Walker_Category class - * - * @package WordPress - * @subpackage Template - * @since 4.4.0 - */ /** * Core class used to create an HTML list of categories. * @@ -30496,13 +28064,6 @@ public function end_el(&$output, $data_object, $depth = 0, $args = array()) { } } - /** - * Comment API: Walker_Comment class - * - * @package WordPress - * @subpackage Comments - * @since 4.4.0 - */ /** * Core walker class used to create an HTML list of comments. * @@ -30695,13 +28256,6 @@ protected function html5_comment($comment, $depth, $args) { } } - /** - * Post API: Walker_PageDropdown class - * - * @package WordPress - * @subpackage Post - * @since 4.4.0 - */ /** * Core class used to create an HTML drop-down list of pages. * @@ -30766,13 +28320,6 @@ public function start_el(&$output, $data_object, $depth = 0, $args = array(), $c { } } - /** - * Post API: Walker_Page class - * - * @package WordPress - * @subpackage Template - * @since 4.4.0 - */ /** * Core walker class used to create an HTML list of pages. * @@ -30865,13 +28412,6 @@ public function end_el(&$output, $data_object, $depth = 0, $args = array()) { } } - /** - * Toolbar API: WP_Admin_Bar class - * - * @package WordPress - * @subpackage Toolbar - * @since 3.1.0 - */ /** * Core class used to implement the Toolbar API. * @@ -31194,12 +28734,6 @@ public function send() { } } - /** - * WP_Application_Passwords class - * - * @package WordPress - * @since 5.6.0 - */ /** * Class for displaying, modifying, and sanitizing application passwords. * @@ -31422,15 +28956,6 @@ public static function chunk_password($raw_password) { } } - /** - * Block Bindings API: WP_Block_Bindings_Registry class. - * - * Supports overriding content in blocks by connecting them to different sources. - * - * @package WordPress - * @subpackage Block Bindings - * @since 6.5.0 - */ /** * Core class used for interacting with block bindings sources. * @@ -31548,14 +29073,6 @@ public static function get_instance() { } } - /** - * Block Bindings API: WP_Block_Bindings_Source class. - * - * - * @package WordPress - * @subpackage Block Bindings - * @since 6.5.0 - */ /** * Class representing block bindings source. * @@ -31626,12 +29143,6 @@ public function __wakeup() { } } - /** - * Blocks API: WP_Block_Editor_Context class - * - * @package WordPress - * @since 5.8.0 - */ /** * Contains information about a block editor being rendered. * @@ -31676,12 +29187,6 @@ public function __construct(array $settings = array()) { } } - /** - * Blocks API: WP_Block_List class - * - * @package WordPress - * @since 5.5.0 - */ /** * Class representing a list of block instances. * @@ -31865,11 +29370,6 @@ public function count() { } } - /** - * Block Serialization Parser - * - * @package WordPress - */ /** * Class WP_Block_Parser_Block * @@ -31888,7 +29388,6 @@ class WP_Block_Parser_Block * @var string */ public $blockName; - // phpcs:ignore WordPress.NamingConventions.ValidVariableName /** * Optional set of attributes from block comment delimiters * @@ -31906,7 +29405,6 @@ class WP_Block_Parser_Block * @var WP_Block_Parser_Block[] */ public $innerBlocks; - // phpcs:ignore WordPress.NamingConventions.ValidVariableName /** * Resultant HTML from inside block comment delimiters * after removing inner blocks @@ -31917,7 +29415,6 @@ class WP_Block_Parser_Block * @var string */ public $innerHTML; - // phpcs:ignore WordPress.NamingConventions.ValidVariableName /** * List of string fragments and null markers where inner blocks were found * @@ -31931,7 +29428,6 @@ class WP_Block_Parser_Block * @var array */ public $innerContent; - // phpcs:ignore WordPress.NamingConventions.ValidVariableName /** * Constructor. * @@ -31949,11 +29445,6 @@ public function __construct($name, $attrs, $inner_blocks, $inner_html, $inner_co { } } - /** - * Block Serialization Parser - * - * @package WordPress - */ /** * Class WP_Block_Parser_Frame * @@ -32017,11 +29508,6 @@ public function __construct($block, $token_start, $token_length, $prev_offset = { } } - /** - * Block Serialization Parser - * - * @package WordPress - */ /** * Class WP_Block_Parser * @@ -32157,13 +29643,6 @@ public function add_block_from_stack($end_offset = \null) { } } - /** - * Blocks API: WP_Block_Pattern_Categories_Registry class - * - * @package WordPress - * @subpackage Blocks - * @since 5.5.0 - */ /** * Class used for interacting with block pattern categories. */ @@ -32246,13 +29725,6 @@ public static function get_instance() { } } - /** - * Blocks API: WP_Block_Patterns_Registry class - * - * @package WordPress - * @subpackage Blocks - * @since 5.5.0 - */ /** * Class used for interacting with block patterns. * @@ -32386,13 +29858,6 @@ public static function get_instance() { } } - /** - * Blocks API: WP_Block_Styles_Registry class - * - * @package WordPress - * @subpackage Blocks - * @since 5.3.0 - */ /** * Class used for interacting with block styles. * @@ -32511,13 +29976,6 @@ public static function get_instance() { } } - /** - * Block support flags. - * - * @package WordPress - * - * @since 5.6.0 - */ /** * Class encapsulating and implementing Block Supports. * @@ -32580,12 +30038,6 @@ public function apply_block_supports() { } } - /** - * Blocks API: WP_Block_Template class - * - * @package WordPress - * @since 5.8.0 - */ /** * Class representing a block template. * @@ -32719,13 +30171,6 @@ class WP_Block_Template */ public $modified; } - /** - * Blocks API: WP_Block_Type_Registry class - * - * @package WordPress - * @subpackage Blocks - * @since 5.0.0 - */ /** * Core class used for interacting with block types. * @@ -32841,13 +30286,6 @@ public static function get_instance() { } } - /** - * Blocks API: WP_Block_Type class - * - * @package WordPress - * @subpackage Blocks - * @since 5.0.0 - */ /** * Core class representing a block type. * @@ -33303,12 +30741,6 @@ public function get_uses_context() { } } - /** - * Blocks API: WP_Block class - * - * @package WordPress - * @since 5.5.0 - */ /** * Class representing a parsed instance of a block. * @@ -33468,12 +30900,6 @@ public function render($options = array()) { } } - /** - * WP_Classic_To_Block_Menu_Converter class - * - * @package WordPress - * @since 6.3.0 - */ /** * Converts a Classic Menu to Block Menu blocks. * @@ -33496,13 +30922,6 @@ public static function convert($menu) { } } - /** - * Comment API: WP_Comment_Query class - * - * @package WordPress - * @subpackage Comments - * @since 4.4.0 - */ /** * Core class used for querying comments. * @@ -33948,13 +31367,6 @@ protected function parse_order($order) { } } - /** - * Comment API: WP_Comment class - * - * @package WordPress - * @subpackage Comments - * @since 4.4.0 - */ /** * Core class used to organize comments as instantiated objects with defined members. * @@ -34222,13 +31634,6 @@ public function __get($name) { } } - /** - * WordPress Customize Control classes - * - * @package WordPress - * @subpackage Customize - * @since 3.4.0 - */ /** * Customize Control class. * @@ -34614,13 +32019,6 @@ protected function content_template() { } } - /** - * WordPress Customize Manager classes - * - * @package WordPress - * @subpackage Customize - * @since 3.4.0 - */ /** * Customize Manager class. * @@ -36114,13 +33512,6 @@ public function _render_custom_logo_partial() { } } - /** - * WordPress Customize Nav Menus classes - * - * @package WordPress - * @subpackage Customize - * @since 4.3.0 - */ /** * Customize Nav Menus class. * @@ -36326,9 +33717,6 @@ public function print_templates() public function available_items_template() { } - // - // Start functionality specific to partial-refresh of menu changes in Customizer preview. - // /** * Nav menu args used for each instance, keyed by the args HMAC. * @@ -36478,13 +33866,6 @@ public function render_nav_menu_partial($partial, $nav_menu_args) { } } - /** - * WordPress Customize Panel classes - * - * @package WordPress - * @subpackage Customize - * @since 4.0.0 - */ /** * Customize Panel class. * @@ -36755,13 +34136,6 @@ protected function content_template() { } } - /** - * WordPress Customize Section classes - * - * @package WordPress - * @subpackage Customize - * @since 3.4.0 - */ /** * Customize Section class. * @@ -37025,13 +34399,6 @@ protected function render_template() { } } - /** - * WordPress Customize Setting classes - * - * @package WordPress - * @subpackage Customize - * @since 3.4.0 - */ /** * Customize Setting class. * @@ -37518,13 +34885,6 @@ protected final function multidimensional_isset($root, $keys) { } } - /** - * WordPress Customize Widgets classes - * - * @package WordPress - * @subpackage Customize - * @since 3.9.0 - */ /** * Customize Widgets class. * @@ -38095,9 +35455,6 @@ public function call_widget_update($widget_id) public function wp_ajax_update_widget() { } - /* - * Selective Refresh Methods - */ /** * Filters arguments for dynamic widget partials. * @@ -38668,14 +36025,6 @@ public function sanitize_relation($relation) { } } - /** - * Dependencies API: WP_Dependencies base class - * - * @since 2.6.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Core base class extended to register items. * @@ -38934,14 +36283,6 @@ public function set_group($handle, $recursion, $group) { } } - /** - * Dependencies API: _WP_Dependency class - * - * @since 4.7.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Class _WP_Dependency * @@ -38992,7 +36333,6 @@ class _WP_Dependency * @var array */ public $args = \null; - // Custom property, such as $in_footer or $media. /** * Extra data to supply to the handle. * @@ -39051,38 +36391,6 @@ public function set_translations($domain, $path = '') { } } - /** - * WP_Duotone class - * - * Parts of this source were derived and modified from colord, - * released under the MIT license. - * - * https://github.com/omgovich/colord - * - * Copyright (c) 2020 Vlad Shilov omgovich@ya.ru - * - * Permission is hereby granted, free of charge, to any person obtaining - * a copy of this software and associated documentation files (the - * "Software"), to deal in the Software without restriction, including - * without limitation the rights to use, copy, modify, merge, publish, - * distribute, sublicense, and/or sell copies of the Software, and to - * permit persons to whom the Software is furnished to do so, subject to - * the following conditions: - * - * The above copyright notice and this permission notice shall be - * included in all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, - * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF - * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND - * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE - * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION - * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION - * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. - * - * @package WordPress - * @since 6.3.0 - */ /** * Manages duotone block supports and global styles. * @@ -39684,11 +36992,6 @@ public function find_oembed_post_id($cache_key) { } } - /** - * WordPress Error API. - * - * @package WordPress - */ /** * WordPress Error class. * @@ -39892,12 +37195,6 @@ protected static function copy_errors(\WP_Error $from, \WP_Error $to) { } } - /** - * Error Protection API: WP_Fatal_Error_Handler class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used as the default shutdown handler for fatal errors. * @@ -39986,13 +37283,6 @@ protected function display_default_error_template($error, $handled) { } } - /** - * Feed API: WP_Feed_Cache_Transient class - * - * @package WordPress - * @subpackage Feed - * @since 4.7.0 - */ /** * Core class used to implement feed cache transients. * @@ -40111,13 +37401,6 @@ public function create($location, $filename, $extension) { } } - /** - * Plugin API: WP_Hook class - * - * @package WordPress - * @subpackage Plugin - * @since 4.7.0 - */ /** * Core class used to implement action and filter hook functionality. * @@ -40402,13 +37685,6 @@ public function rewind() { } } - /** - * HTTP API: WP_Http_Cookie class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to encapsulate a single cookie object for internal use. * @@ -40570,13 +37846,6 @@ public function get_attributes() { } } - /** - * HTTP API: WP_Http_Curl class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to integrate Curl as an HTTP transport. * @@ -40615,13 +37884,6 @@ public static function test($args = array()) { } } - /** - * HTTP API: WP_Http_Encoding class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to implement deflate and gzip transfer encoding support for HTTP requests. * @@ -40771,13 +38033,6 @@ public function query(...$args) { } } - /** - * HTTP API: WP_HTTP_Proxy class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to implement HTTP API proxy support. * @@ -40919,13 +38174,6 @@ public function send_through_proxy($uri) { } } - /** - * HTTP API: Requests hook bridge class - * - * @package WordPress - * @subpackage HTTP - * @since 4.7.0 - */ /** * Bridge to connect Requests internal hooks to WordPress actions. * @@ -40968,13 +38216,6 @@ public function dispatch($hook, $parameters = array()) { } } - /** - * HTTP API: WP_HTTP_Response class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to prepare HTTP responses. * @@ -41103,13 +38344,6 @@ public function jsonSerialize() { } } - /** - * HTTP API: WP_HTTP_Requests_Response class - * - * @package WordPress - * @subpackage HTTP - * @since 4.6.0 - */ /** * Core wrapper object for a WpOrg\Requests\Response for standardization. * @@ -41248,13 +38482,6 @@ public function to_array() { } } - /** - * HTTP API: WP_Http_Streams class - * - * @package WordPress - * @subpackage HTTP - * @since 4.4.0 - */ /** * Core class used to integrate PHP Streams as an HTTP transport. * @@ -41749,12 +38976,6 @@ public static function is_ip_address($maybe_ip) { } } - /** - * Base WordPress Image Editor - * - * @package WordPress - * @subpackage Image_Editor - */ /** * Base image editor class from which implementations extend * @@ -41769,7 +38990,6 @@ abstract class WP_Image_Editor protected $output_mime_type = \null; protected $default_mime_type = 'image/jpeg'; protected $quality = \false; - // Deprecated since 5.8.1. See get_default_quality() below. protected $default_quality = 82; /** * Each instance handles a single file. @@ -42094,12 +39314,6 @@ protected static function get_extension($mime_type = \null) { } } - /** - * WordPress GD Image Editor - * - * @package WordPress - * @subpackage Image_Editor - */ /** * WordPress Image Editor Class for Image Manipulation through GD * @@ -42399,12 +39613,6 @@ protected function make_image($filename, $callback, $arguments) { } } - /** - * WordPress Imagick Image Editor - * - * @package WordPress - * @subpackage Image_Editor - */ /** * WordPress Image Editor Class for Image Manipulation through Imagick PHP Module * @@ -42784,12 +39992,6 @@ protected function pdf_load_source() { } } - /** - * WordPress List utility class - * - * @package WordPress - * @since 4.7.0 - */ /** * List utility. * @@ -42891,13 +40093,6 @@ public function sort($orderby = array(), $order = 'ASC', $preserve_keys = \false { } } - /** - * Locale API: WP_Locale_Switcher class - * - * @package WordPress - * @subpackage i18n - * @since 4.7.0 - */ /** * Core class used for switching locales. * @@ -43012,13 +40207,6 @@ public function filter_locale($locale) { } } - /** - * Locale API: WP_Locale class - * - * @package WordPress - * @subpackage i18n - * @since 4.6.0 - */ /** * Core class used to store translated data for a locale. * @@ -43298,12 +40486,6 @@ public function get_word_count_type() { } } - /** - * WP_MatchesMapRegex helper class - * - * @package WordPress - * @since 4.7.0 - */ /** * Helper class to remove the need to use eval to replace $matches[] in query strings. * @@ -43324,7 +40506,6 @@ class WP_MatchesMapRegex * @var string */ public $_pattern = '(\\$matches\\[[1-9]+[0-9]*\\])'; - // Magic number. /** * constructor * @@ -43356,13 +40537,6 @@ public function callback($matches) { } } - /** - * Meta API: WP_Meta_Query class - * - * @package WordPress - * @subpackage Meta - * @since 4.4.0 - */ /** * Core class used to implement meta queries for the Meta API. * @@ -43718,13 +40892,6 @@ public function has_or_relation() { } } - /** - * Meta API: WP_Metadata_Lazyloader class - * - * @package WordPress - * @subpackage Meta - * @since 4.5.0 - */ /** * Core class used for lazy-loading object metadata. * @@ -43848,15 +41015,6 @@ public function lazyload_meta_callback($check, $object_id, $meta_key, $single, $ { } } - /** - * WP_Navigation_Fallback class - * - * Manages fallback behavior for Navigation menus. - * - * @package WordPress - * @subpackage Navigation - * @since 6.3.0 - */ /** * Manages fallback behavior for Navigation menus. * @@ -43895,13 +41053,6 @@ public static function get_fallback() { } } - /** - * Network API: WP_Network_Query class - * - * @package WordPress - * @subpackage Multisite - * @since 4.6.0 - */ /** * Core class used for querying networks. * @@ -44120,13 +41271,6 @@ protected function parse_order($order) { } } - /** - * Network API: WP_Network class - * - * @package WordPress - * @subpackage Multisite - * @since 4.4.0 - */ /** * Core class used for interacting with a multisite network. * @@ -44260,13 +41404,6 @@ public static function get_by_path($domain = '', $path = '', $segments = \null) { } } - /** - * Object Cache API: WP_Object_Cache class - * - * @package WordPress - * @subpackage Cache - * @since 5.4.0 - */ /** * Core class that implements an object cache. * @@ -44628,13 +41765,6 @@ public function stats() { } } - /** - * WP_oEmbed_Controller class, used to provide an oEmbed endpoint. - * - * @package WordPress - * @subpackage Embeds - * @since 4.4.0 - */ /** * oEmbed API endpoint controller. * @@ -44695,17 +41825,6 @@ public function get_proxy_item($request) { } } - /** - * API for fetching the HTML to embed remote content based on a provided URL - * - * Used internally by the WP_Embed class, but is designed to be generic. - * - * @link https://developer.wordpress.org/advanced-administration/wordpress/oembed/ - * @link http://oembed.com/ - * - * @package WordPress - * @subpackage oEmbed - */ /** * Core class used to implement oEmbed functionality. * @@ -44909,12 +42028,6 @@ public function _strip_newlines($html, $data, $url) { } } - /** - * Error Protection API: WP_Paused_Extensions_Storage class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used for storing paused extensions. * @@ -45037,13 +42150,6 @@ protected function get_option_name() { } } - /** - * WordPress Plugin Administration API: WP_Plugin_Dependencies class - * - * @package WordPress - * @subpackage Administration - * @since 6.5.0 - */ /** * Core class for installing plugin dependencies. * @@ -45401,13 +42507,6 @@ protected static function convert_to_slug($plugin_file) { } } - /** - * Post API: WP_Post_Type class - * - * @package WordPress - * @subpackage Post - * @since 4.6.0 - */ /** * Core class used for interacting with post types. * @@ -46021,13 +43120,6 @@ public static function reset_default_labels() { } } - /** - * Post API: WP_Post class - * - * @package WordPress - * @subpackage Post - * @since 4.4.0 - */ /** * Core class used to implement the WP_Post object. * @@ -46283,13 +43375,6 @@ public function to_array() { } } - /** - * Query API: WP_Query class - * - * @package WordPress - * @subpackage Query - * @since 4.7.0 - */ /** * The WordPress Query class. * @@ -47733,12 +44818,6 @@ public function lazyload_comment_meta($check, $comment_id) { } } - /** - * Error Protection API: WP_Recovery_Mode_Cookie_Service class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used to set, validate, and clear cookies that identify a Recovery Mode session. * @@ -47802,12 +44881,6 @@ public function get_session_id_from_cookie($cookie = '') { } } - /** - * Error Protection API: WP_Recovery_Mode_Email_Link class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used to send an email with a link to begin Recovery Mode. * @@ -47860,12 +44933,6 @@ public function clear_rate_limit() { } } - /** - * Error Protection API: WP_Recovery_Mode_Key_Service class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used to generate and validate keys used to enter Recovery Mode. * @@ -47925,12 +44992,6 @@ public function clean_expired_keys($ttl) { } } - /** - * Error Protection API: WP_Recovery_Mode_Link_Handler class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used to generate and handle recovery mode links. * @@ -47978,12 +45039,6 @@ public function handle_begin_link($ttl) { } } - /** - * Error Protection API: WP_Recovery_Mode class - * - * @package WordPress - * @since 5.2.0 - */ /** * Core class used to implement Recovery Mode. * @@ -48175,13 +45230,6 @@ protected function redirect_protected() { } } - /** - * Rewrite API: WP_Rewrite class - * - * @package WordPress - * @subpackage Rewrite - * @since 1.5.0 - */ /** * Core class used to implement a rewrite component API. * @@ -49082,13 +46130,6 @@ public function __construct() { } } - /** - * User API: WP_Role class - * - * @package WordPress - * @subpackage Users - * @since 4.4.0 - */ /** * Core class used to extend the user roles API. * @@ -49160,13 +46201,6 @@ public function has_cap($cap) { } } - /** - * User API: WP_Roles class - * - * @package WordPress - * @subpackage Users - * @since 4.4.0 - */ /** * Core class used to implement a user roles API. * @@ -49412,14 +46446,6 @@ protected function get_roles_data() { } } - /** - * Script Modules API: WP_Script_Modules class. - * - * Native support for ES Modules and Import Maps. - * - * @package WordPress - * @subpackage Script Modules - */ /** * Core class used to register script modules. * @@ -49569,14 +46595,6 @@ public function print_import_map() { } } - /** - * Dependencies API: WP_Scripts class - * - * @since 2.6.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Core class used to register scripts. * @@ -49953,13 +46971,6 @@ public function reset() { } } - /** - * Session API: WP_Session_Tokens class - * - * @package WordPress - * @subpackage Session - * @since 4.7.0 - */ /** * Abstract class for managing user session tokens. * @@ -50162,13 +47173,6 @@ public static function drop_sessions() { } } - /** - * Feed API: WP_SimplePie_File class - * - * @package WordPress - * @subpackage Feed - * @since 4.7.0 - */ /** * Core class for fetching remote files and reading local files with SimplePie. * @@ -50208,13 +47212,6 @@ public function __construct($url, $timeout = 10, $redirects = 5, $headers = \nul { } } - /** - * Feed API: WP_SimplePie_Sanitize_KSES class - * - * @package WordPress - * @subpackage Feed - * @since 4.7.0 - */ /** * Core class used to implement SimplePie feed sanitization. * @@ -50243,13 +47240,6 @@ public function sanitize($data, $type, $base = '') { } } - /** - * Site API: WP_Site_Query class - * - * @package WordPress - * @subpackage Sites - * @since 4.6.0 - */ /** * Core class used for querying sites. * @@ -50584,13 +47574,6 @@ protected function parse_order($order) { } } - /** - * Site API: WP_Site class - * - * @package WordPress - * @subpackage Multisite - * @since 4.5.0 - */ /** * Core class used for interacting with a multisite site. * @@ -50795,14 +47778,6 @@ public function __set($key, $value) { } } - /** - * Dependencies API: WP_Styles class - * - * @since 2.6.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Core class used to register styles. * @@ -51000,13 +47975,6 @@ public function reset() { } } - /** - * Taxonomy API: WP_Tax_Query class - * - * @package WordPress - * @subpackage Taxonomy - * @since 4.4.0 - */ /** * Core class used to implement taxonomy queries for the Taxonomy API. * @@ -51272,13 +48240,6 @@ public function transform_query(&$query, $resulting_field) { } } - /** - * Taxonomy API: WP_Taxonomy class - * - * @package WordPress - * @subpackage Taxonomy - * @since 4.7.0 - */ /** * Core class used for interacting with taxonomies. * @@ -51645,13 +48606,6 @@ public static function reset_default_labels() { } } - /** - * Taxonomy API: WP_Term_Query class. - * - * @package WordPress - * @subpackage Taxonomy - * @since 4.6.0 - */ /** * Class used for querying terms. * @@ -52054,13 +49008,6 @@ protected function generate_cache_key(array $args, $sql) { } } - /** - * Taxonomy API: WP_Term class - * - * @package WordPress - * @subpackage Taxonomy - * @since 4.4.0 - */ /** * Core class used to implement the WP_Term object. * @@ -52203,13 +49150,6 @@ public function __get($key) { } } - /** - * Diff API: WP_Text_Diff_Renderer_inline class - * - * @package WordPress - * @subpackage Diff - * @since 4.7.0 - */ /** * Better word splitting than the PEAR package provides. * @@ -52231,13 +49171,6 @@ public function _splitOnWords($string, $newlineEscape = "\n") { } } - /** - * Diff API: WP_Text_Diff_Renderer_Table class - * - * @package WordPress - * @subpackage Diff - * @since 4.7.0 - */ /** * Table renderer to display the diff lines. * @@ -52536,16 +49469,6 @@ public function __unset($name) { } } - /** - * Locale API: WP_Textdomain_Registry class. - * - * This file uses rtrim() instead of untrailingslashit() and trailingslashit() - * to avoid formatting.php dependency. - * - * @package WordPress - * @subpackage i18n - * @since 6.1.0 - */ /** * Core class used for registering text domains. * @@ -52728,13 +49651,6 @@ public function invalidate_mo_files_cache($upgrader, $hook_extra) { } } - /** - * WP_Theme_JSON_Data class - * - * @package WordPress - * @subpackage Theme - * @since 6.1.0 - */ /** * Class to provide access to update a theme.json structure. */ @@ -52788,13 +49704,6 @@ public function get_theme_json() { } } - /** - * WP_Theme_JSON_Resolver class - * - * @package WordPress - * @subpackage Theme - * @since 5.8.0 - */ /** * Class that abstracts the processing of the different data sources * for site-level config and offers an API to work with them. @@ -53129,13 +50038,6 @@ public static function resolve_theme_file_uris($theme_json) { } } - /** - * WP_Theme_JSON_Schema class - * - * @package WordPress - * @subpackage Theme - * @since 5.9.0 - */ /** * Class that migrates a given theme.json structure to the latest schema. * @@ -53170,13 +50072,6 @@ public static function migrate($theme_json, $origin = 'theme') { } } - /** - * WP_Theme_JSON class - * - * @package WordPress - * @subpackage Theme - * @since 5.8.0 - */ /** * Class that encapsulates the processing of structures that adhere to the theme.json spec. * @@ -55077,12 +51972,6 @@ public static function sort_by_name(&$themes) { } } - /** - * Class for efficiently looking up and mapping string keys to string values, with limits. - * - * @package WordPress - * @since 6.6.0 - */ /** * WP_Token_Map class. * @@ -55403,13 +52292,6 @@ public function precomputed_php_source_table($indent = "\t") { } } - /** - * Session API: WP_User_Meta_Session_Tokens class - * - * @package WordPress - * @subpackage Session - * @since 4.7.0 - */ /** * Meta-based user sessions token manager. * @@ -55497,13 +52379,6 @@ public static function drop_sessions() { } } - /** - * User API: WP_User_Query class - * - * @package WordPress - * @subpackage Users - * @since 4.4.0 - */ /** * Core class used for querying users. * @@ -55535,7 +52410,6 @@ class WP_User_Query * @var string */ public $request; - // SQL clauses. public $query_fields; public $query_from; public $query_where; @@ -56041,13 +52915,6 @@ public function __construct($post) { } } - /** - * User API: WP_User class - * - * @package WordPress - * @subpackage Users - * @since 4.4.0 - */ /** * Core class used to implement the WP_User object. * @@ -56497,13 +53364,6 @@ public function get_site_id() { } } - /** - * Widget API: WP_Widget_Factory class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Singleton that registers and instantiates WP_Widget classes. * @@ -56599,13 +53459,6 @@ public function get_widget_key($id_base) { } } - /** - * Widget API: WP_Widget base class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core base class extended to register widgets. * @@ -56686,9 +53539,6 @@ class WP_Widget * @var bool */ public $updated = \false; - // - // Member functions that must be overridden by subclasses. - // /** * Echoes the widget content. * @@ -56736,7 +53586,6 @@ public function update($new_instance, $old_instance) public function form($instance) { } - // Functions you'll need to call. /** * PHP5 constructor. * @@ -56975,12 +53824,6 @@ public function get_settings() { } } - /** - * XML-RPC protocol support for WordPress. - * - * @package WordPress - * @subpackage Publishing - */ /** * WordPress XMLRPC server implementation. * @@ -58720,10 +55563,6 @@ public function wp_getRevisions($args) public function wp_restoreRevision($args) { } - /* - * Blogger API functions. - * Specs on http://plant.blogger.com/api and https://groups.yahoo.com/group/bloggerDev/ - */ /** * Retrieves blogs that user owns. * @@ -58948,10 +55787,6 @@ public function blogger_editPost($args) public function blogger_deletePost($args) { } - /* - * MetaWeblog API functions. - * Specs on wherever Dave Winer wants them to be. - */ /** * Creates a new post. * @@ -59146,10 +55981,6 @@ public function mw_getCategories($args) public function mw_newMediaObject($args) { } - /* - * MovableType API functions. - * Specs archive on http://web.archive.org/web/20050220091302/http://www.movabletype.org:80/docs/mtmanual_programmatic.html - */ /** * Retrieves the post titles of recent posts. * @@ -59295,10 +56126,6 @@ public function mt_getTrackbackPings($post_id) public function mt_publishPost($args) { } - /* - * Pingback functions. - * Specs on www.hixie.ch/specs/pingback/pingback - */ /** * Retrieves a pingback and registers it. * @@ -59922,9 +56749,6 @@ class wpdb * @var string */ public $termmeta; - // - // Global and Multisite tables - // /** * WordPress User Metadata table. * @@ -61421,13 +58245,6 @@ public function db_server_info() { } } - /** - * Customize API: WP_Customize_Media_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Media Control class. * @@ -61546,13 +58363,6 @@ public function get_default_button_labels() { } } - /** - * Customize API: WP_Customize_Upload_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Upload Control Class. * @@ -61584,11 +58394,8 @@ class WP_Customize_Upload_Control extends \WP_Customize_Media_Control */ public $button_labels = array(); public $removed = ''; - // Unused. public $context; - // Unused. public $extensions = array(); - // Unused. /** * Refresh the parameters passed to the JavaScript via JSON. * @@ -61600,13 +58407,6 @@ public function to_json() { } } - /** - * Customize API: WP_Customize_Image_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Image Control class. * @@ -61668,13 +58468,6 @@ public function print_tab_image($url, $thumbnail_url = \null) { } } - /** - * Customize API: WP_Customize_Background_Image_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Background Image Control class. * @@ -61711,13 +58504,6 @@ public function enqueue() { } } - /** - * Customize API: WP_Customize_Background_Image_Setting class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customizer Background Image Setting class. * @@ -61743,13 +58529,6 @@ public function update($value) { } } - /** - * Customize API: WP_Customize_Background_Position_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.7.0 - */ /** * Customize Background Position Control class. * @@ -61783,13 +58562,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Code_Editor_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.9.0 - */ /** * Customize Code Editor Control class. * @@ -61858,13 +58630,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Color_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Color Control class. * @@ -61961,13 +58726,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Cropped_Image_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Cropped Image Control class. * @@ -62031,15 +58789,6 @@ public function to_json() { } } - /** - * Customize API: WP_Customize_Custom_CSS_Setting class - * - * This handles validation, sanitization and saving of the value. - * - * @package WordPress - * @subpackage Customize - * @since 4.7.0 - */ /** * Custom Setting to handle WP Custom CSS. * @@ -62159,13 +58908,6 @@ public function update($value) { } } - /** - * Customize API: WP_Customize_Date_Time_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.9.0 - */ /** * Customize Date Time Control class. * @@ -62292,13 +59034,6 @@ public function format_gmt_offset($offset) { } } - /** - * Customize API: WP_Customize_Filter_Setting class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * A setting that is used to filter a value, but will not save the results. * @@ -62321,13 +59056,6 @@ public function update($value) { } } - /** - * Customize API: WP_Customize_Header_Image_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Header Image Control class. * @@ -62397,13 +59125,6 @@ public function render_content() { } } - /** - * Customize API: WP_Customize_Header_Image_Setting class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * A setting that is used to filter a value, but will not save the results. * @@ -62433,13 +59154,6 @@ public function update($value) { } } - /** - * Customize API: WP_Customize_Nav_Menu_Auto_Add_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize control to represent the auto_add field for a given menu. * @@ -62473,13 +59187,6 @@ protected function content_template() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Nav Menu Control Class. * @@ -62523,13 +59230,6 @@ public function json() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Item_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize control to represent the name field for a given menu. * @@ -62614,13 +59314,6 @@ public function json() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Item_Setting class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Setting to represent a nav_menu. * @@ -62934,13 +59627,6 @@ public function amend_customize_save_response($data) { } } - /** - * Customize API: WP_Customize_Nav_Menu_Location_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Menu Location Control Class. * @@ -62987,13 +59673,6 @@ public function render_content() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Locations_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.9.0 - */ /** * Customize Nav Menu Locations Control Class. * @@ -63027,13 +59706,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Name_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize control to represent the name field for a given menu. * @@ -63067,13 +59739,6 @@ protected function content_template() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Section class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Menu Section Class * @@ -63102,13 +59767,6 @@ public function json() { } } - /** - * Customize API: WP_Customize_Nav_Menu_Setting class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Setting to represent a nav_menu. * @@ -63404,13 +60062,6 @@ public function amend_customize_save_response($data) { } } - /** - * Customize API: WP_Customize_Nav_Menus_Panel class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Nav Menus Panel Class * @@ -63566,13 +60217,6 @@ protected function render() { } } - /** - * Customize API: WP_Customize_Partial class - * - * @package WordPress - * @subpackage Customize - * @since 4.5.0 - */ /** * Core Customizer class for implementing selective refresh partials. * @@ -63808,13 +60452,6 @@ public final function check_capabilities() { } } - /** - * Customize API: WP_Customize_Selective_Refresh class - * - * @package WordPress - * @subpackage Customize - * @since 4.5.0 - */ /** * Core Customizer class for implementing selective refresh. * @@ -63979,13 +60616,6 @@ public function handle_render_partials_request() { } } - /** - * Customize API: WP_Customize_Sidebar_Section class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customizer section representing widget area (sidebar). * @@ -64030,13 +60660,6 @@ public function active_callback() { } } - /** - * Customize API: WP_Customize_Site_Icon_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Site Icon control class. * @@ -64098,13 +60721,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Theme_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Theme Control class. * @@ -64155,13 +60771,6 @@ public function content_template() { } } - /** - * Customize API: WP_Customize_Themes_Panel class - * - * @package WordPress - * @subpackage Customize - * @since 4.9.0 - */ /** * Customize Themes Panel Class * @@ -64204,13 +60813,6 @@ protected function content_template() { } } - /** - * Customize API: WP_Customize_Themes_Section class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Customize Themes Section class. * @@ -64289,13 +60891,6 @@ protected function filter_drawer_content_template() { } } - /** - * Customize API: WP_Sidebar_Block_Editor_Control class. - * - * @package WordPress - * @subpackage Customize - * @since 5.8.0 - */ /** * Core class used to implement the widgets block editor control in the * customizer. @@ -64323,13 +60918,6 @@ public function render_content() { } } - /** - * Customize API: WP_Widget_Area_Customize_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Widget Area Customize Control class. * @@ -64370,13 +60958,6 @@ public function render_content() { } } - /** - * Customize API: WP_Widget_Form_Customize_Control class - * - * @package WordPress - * @subpackage Customize - * @since 4.4.0 - */ /** * Widget Form Customize Control class. * @@ -64471,15 +61052,6 @@ public function active_callback() { } } - /** - * Font Collection class. - * - * This file contains the Font Collection class definition. - * - * @package WordPress - * @subpackage Fonts - * @since 6.5.0 - */ /** * Font Collection class. * @@ -64525,13 +61097,6 @@ public function get_data() { } } - /** - * WP_Font_Face_Resolver class. - * - * @package WordPress - * @subpackage Fonts - * @since 6.4.0 - */ /** * The Font Face Resolver abstracts the processing of different data sources * (such as theme.json) for processing within the Font Face. @@ -64554,13 +61119,6 @@ public static function get_fonts_from_theme_json() { } } - /** - * WP_Font_Face class. - * - * @package WordPress - * @subpackage Fonts - * @since 6.4.0 - */ /** * Font Face generates and prints `@font-face` styles for given fonts. * @@ -64608,15 +61166,6 @@ public function generate_and_print(array $fonts) { } } - /** - * Font Library class. - * - * This file contains the Font Library class definition. - * - * @package WordPress - * @subpackage Fonts - * @since 6.5.0 - */ /** * Font Library class. * @@ -64689,15 +61238,6 @@ public static function get_instance() { } } - /** - * Font Utils class. - * - * Provides utility functions for working with font families. - * - * @package WordPress - * @subpackage Fonts - * @since 6.5.0 - */ /** * A class of utilities for working with the Font Library. * @@ -64798,13 +61338,6 @@ public static function get_allowed_font_mime_types() { } } - /** - * HTML API: WP_HTML_Active_Formatting_Elements class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used by the HTML processor during HTML parsing * for managing the stack of active formatting elements. @@ -64933,13 +61466,6 @@ public function walk_up() { } } - /** - * HTML API: WP_HTML_Attribute_Token class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.2.0 - */ /** * Core class used by the HTML tag processor as a data structure for the attribute token, * allowing to drastically improve performance. @@ -65195,13 +61721,6 @@ public static function code_point_to_utf8_bytes($code_point) { } } - /** - * HTML API: WP_HTML_Open_Elements class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used by the HTML processor during HTML parsing * for managing the stack of open elements. @@ -65486,9 +62005,6 @@ public function walk_down() public function walk_up($above_this_node = \null) { } - /* - * Internal helpers. - */ /** * Updates internal flags after adding an element. * @@ -65530,13 +62046,6 @@ public function __wakeup() { } } - /** - * HTML API: WP_HTML_Processor_State class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used by the HTML processor during HTML parsing * for managing the internal parsing state. @@ -65662,27 +62171,6 @@ public function __construct() { } } - /** - * HTML API: WP_HTML_Tag_Processor class - * - * Scans through an HTML document to find specific tags, then - * transforms those tags by adding, removing, or updating the - * values of the HTML attributes within that tag (opener). - * - * Does not fully parse HTML or _recurse_ into the HTML structure - * Instead this scans linearly through a document and only parses - * the HTML tag openers. - * - * ### Possible future direction for this module - * - * - Prune the whitespace when removing classes/attributes: e.g. "a b c" -> "c" not " c". - * This would increase the size of the changes for some operations but leave more - * natural-looking output HTML. - * - * @package WordPress - * @subpackage HTML-API - * @since 6.2.0 - */ /** * Core class used to modify attributes in an HTML document for tags matching a query. * @@ -66906,13 +63394,6 @@ public function get_updated_html() */ const COMMENT_AS_INVALID_HTML = 'COMMENT_AS_INVALID_HTML'; } - /** - * HTML API: WP_HTML_Processor class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used to safely parse and modify an HTML document. * @@ -67055,9 +63536,6 @@ class WP_HTML_Processor extends \WP_HTML_Tag_Processor * @var int */ const MAX_BOOKMARKS = 100; - /* - * Public Interface Functions - */ /** * Creates an HTML processor in the fragment parsing mode. * @@ -67325,9 +63803,6 @@ public function get_breadcrumbs() public function get_current_depth() { } - /* - * HTML semantic overrides for Tag Processor - */ /** * Returns the uppercase name of the matched tag. * @@ -67725,9 +64200,6 @@ public function set_bookmark($bookmark_name) public function has_bookmark($bookmark_name) { } - /* - * HTML Specification Helpers - */ /** * Returns whether an element of a given name is in the HTML special category. * @@ -67813,13 +64285,6 @@ public static function is_void($tag_name) */ const CONSTRUCTOR_UNLOCK_CODE = 'Use WP_HTML_Processor::create_fragment() instead of calling the class constructor directly.'; } - /** - * HTML API: WP_HTML_Span class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.2.0 - */ /** * Core class used by the HTML tag processor to represent a textual span * inside an HTML document. @@ -67865,13 +64330,6 @@ public function __construct($start, $length) { } } - /** - * HTML API: WP_HTML_Stack_Event class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.6.0 - */ /** * Core class used by the HTML Processor as a record for stack operations. * @@ -67939,13 +64397,6 @@ public function __construct($token, $operation, $provenance) { } } - /** - * HTML API: WP_HTML_Text_Replacement class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.2.0 - */ /** * Core class used by the HTML tag processor as a data structure for replacing * existing content from start to end, allowing to drastically improve performance. @@ -67997,13 +64448,6 @@ public function __construct($start, $length, $text) { } } - /** - * HTML API: WP_HTML_Token class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used by the HTML processor during HTML parsing * for referring to tokens in the input HTML string. @@ -68091,13 +64535,6 @@ public function __wakeup() { } } - /** - * HTML API: WP_HTML_Unsupported_Exception class - * - * @package WordPress - * @subpackage HTML-API - * @since 6.4.0 - */ /** * Core class used by the HTML processor during HTML parsing * for indicating that a given operation is unsupported. @@ -68120,13 +64557,6 @@ public function __wakeup() class WP_HTML_Unsupported_Exception extends \Exception { } - /** - * Interactivity API: WP_Interactivity_API_Directives_Processor class. - * - * @package WordPress - * @subpackage Interactivity API - * @since 6.5.0 - */ /** * Class used to iterate over the tags of an HTML string and help process the * directive attributes. @@ -68236,13 +64666,6 @@ public function has_and_visits_its_closer_tag() : bool { } } - /** - * Interactivity API: WP_Interactivity_API class. - * - * @package WordPress - * @subpackage Interactivity API - * @since 6.5.0 - */ /** * Class used to process the Interactivity API on the server. * @@ -68359,13 +64782,6 @@ public function print_router_loading_and_screen_reader_markup() { } } - /** - * I18N: WP_Translation_Controller class. - * - * @package WordPress - * @subpackage I18N - * @since 6.5.0 - */ /** * Class WP_Translation_Controller. * @@ -68519,13 +64935,6 @@ public function get_entries(string $textdomain = 'default') : array { } } - /** - * I18N: WP_Translation_File class. - * - * @package WordPress - * @subpackage I18N - * @since 6.5.0 - */ /** * Class WP_Translation_File. * @@ -68720,13 +65129,6 @@ protected abstract function parse_file(); */ public abstract function export(); } - /** - * I18N: WP_Translation_File_MO class. - * - * @package WordPress - * @subpackage I18N - * @since 6.5.0 - */ /** * Class WP_Translation_File_MO. * @@ -68784,13 +65186,6 @@ public function export() : string { } } - /** - * I18N: WP_Translation_File_PHP class. - * - * @package WordPress - * @subpackage I18N - * @since 6.5.0 - */ /** * Class WP_Translation_File_PHP. * @@ -68818,13 +65213,6 @@ public function export() : string { } } - /** - * I18N: WP_Translations class. - * - * @package WordPress - * @subpackage I18N - * @since 6.5.0 - */ /** * Class WP_Translations. * @@ -69999,13 +66387,6 @@ public function merge_with(&$other) { } } - /** - * REST API: WP_REST_Request class - * - * @package WordPress - * @subpackage REST_API - * @since 4.4.0 - */ /** * Core class used to implement a REST request object. * @@ -70632,13 +67013,6 @@ public static function from_url($url) { } } - /** - * REST API: WP_REST_Response class - * - * @package WordPress - * @subpackage REST_API - * @since 4.4.0 - */ /** * Core class used to implement a REST response object. * @@ -70814,13 +67188,6 @@ public function get_curies() { } } - /** - * REST API: WP_REST_Server class - * - * @package WordPress - * @subpackage REST_API - * @since 4.4.0 - */ /** * Core class used to implement the WordPress REST API server. * @@ -71390,13 +67757,6 @@ public function get_headers($server) { } } - /** - * REST API: WP_REST_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core base controller for managing and interacting with REST API items. * @@ -71742,13 +68102,6 @@ public function sanitize_slug($slug) { } } - /** - * REST API: WP_REST_Application_Passwords_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.6.0 - */ /** * Core class to access a user's application passwords via the REST API. * @@ -72018,13 +68371,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Posts_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class to access posts via the REST API. * @@ -72514,13 +68860,6 @@ public function sanitize_post_statuses($statuses, $request, $parameter) { } } - /** - * REST API: WP_REST_Attachments_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core controller used to access attachments via the REST API. * @@ -72800,13 +69139,6 @@ protected function get_edit_media_item_args() { } } - /** - * REST API: WP_REST_Revisions_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to access revisions via the REST API. * @@ -73006,13 +69338,6 @@ protected function prepare_excerpt_response($excerpt, $post) { } } - /** - * REST API: WP_REST_Autosaves_Controller class. - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Core class used to access autosaves via the REST API. * @@ -73163,13 +69488,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Block_Directory_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.5.0 - */ /** * Controller which provides REST endpoint for the blocks. * @@ -73269,13 +69587,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Block_Pattern_Categories_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.0.0 - */ /** * Core class used to access block pattern categories via the REST API. * @@ -73346,13 +69657,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Block_Patterns_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.0.0 - */ /** * Core class used to access block patterns via the REST API. * @@ -73447,13 +69751,6 @@ public function get_item_schema() { } } - /** - * Block Renderer REST API: WP_REST_Block_Renderer_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Controller which provides REST endpoint for rendering a block. * @@ -73518,13 +69815,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Block_Types_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.5.0 - */ /** * Core class used to access block types via the REST API. * @@ -73680,13 +69970,6 @@ public function get_collection_params() { } } - /** - * Synced patterns REST API: WP_REST_Blocks_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Controller which provides a REST endpoint for the editor to read, create, * edit, and delete synced patterns (formerly called reusable blocks). @@ -73734,13 +70017,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Comments_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core controller used to access comments via the REST API. * @@ -74052,12 +70328,6 @@ protected function check_is_comment_content_allowed($prepared_comment) { } } - /** - * REST API: WP_REST_Edit_Site_Export_Controller class - * - * @package WordPress - * @subpackage REST_API - */ /** * Controller which provides REST endpoint for exporting current templates * and template parts. @@ -74106,15 +70376,6 @@ public function export() { } } - /** - * Rest Font Collections Controller. - * - * This file contains the class for the REST API Font Collections Controller. - * - * @package WordPress - * @subpackage REST_API - * @since 6.5.0 - */ /** * Font Library Controller class. * @@ -74213,13 +70474,6 @@ public function get_items_permissions_check($request) { } } - /** - * REST API: WP_REST_Font_Faces_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.5.0 - */ /** * Class to access font faces through the REST API. */ @@ -74483,13 +70737,6 @@ protected function get_settings_from_post($post) { } } - /** - * REST API: WP_REST_Font_Families_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.5.0 - */ /** * Font Families Controller class. * @@ -74684,13 +70931,6 @@ protected function get_settings_from_post($post) { } } - /** - * REST API: WP_REST_Global_Styles_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.9.0 - */ /** * Base Global Styles REST API Controller. */ @@ -74913,13 +71153,6 @@ protected function validate_custom_css($css) { } } - /** - * REST API: WP_REST_Global_Styles_Revisions_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.3.0 - */ /** * Core class used to access global styles revisions via the REST API. * @@ -75025,13 +71258,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Menu_Items_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.9.0 - */ /** * Core class to access nav items via the REST API. * @@ -75210,13 +71436,6 @@ protected function get_menu_id($menu_item_id) { } } - /** - * REST API: WP_REST_Menu_Locations_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.9.0 - */ /** * Core class used to access menu locations via the REST API. * @@ -75332,13 +71551,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Terms_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to managed terms associated with a taxonomy via the REST API. * @@ -75602,13 +71814,6 @@ protected function check_is_taxonomy_allowed($taxonomy) { } } - /** - * REST API: WP_REST_Menus_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.9.0 - */ /** * Core class used to managed menu terms associated via the REST API. * @@ -75788,15 +71993,6 @@ public function get_item_schema() { } } - /** - * WP_REST_Navigation_Fallback_Controller class - * - * REST Controller to create/fetch a fallback Navigation Menu. - * - * @package WordPress - * @subpackage REST_API - * @since 6.3.0 - */ /** * REST Controller to fetch a fallback Navigation Block Menu. If needed it creates one. * @@ -75865,13 +72061,6 @@ public function prepare_item_for_response($item, $request) { } } - /** - * Block Pattern Directory REST API: WP_REST_Pattern_Directory_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.8.0 - */ /** * Controller which provides REST endpoint for block patterns. * @@ -75977,13 +72166,6 @@ protected function get_transient_key($query_args) { } } - /** - * REST API: WP_REST_Plugins_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.5.0 - */ /** * Core class to access plugins via the REST API. * @@ -76286,13 +72468,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Post_Statuses_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to access post statuses via the REST API. * @@ -76409,13 +72584,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Post_Types_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class to access post types via the REST API. * @@ -76524,13 +72692,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Search_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Core class to search through all WordPress content via the REST API. * @@ -76673,13 +72834,6 @@ protected function get_search_handler($request) { } } - /** - * REST API: WP_REST_Settings_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage a site's settings via the REST API. * @@ -76807,15 +72961,6 @@ protected function set_additional_properties_to_false($schema) { } } - /** - * REST API: WP_REST_Sidebars_Controller class - * - * Original code from {@link https://github.com/martin-pettersson/wp-rest-api-sidebars Martin Pettersson (martin_pettersson@outlook.com)}. - * - * @package WordPress - * @subpackage REST_API - * @since 5.8.0 - */ /** * Core class used to manage a site's sidebars. * @@ -76994,13 +73139,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Site_Health_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.6.0 - */ /** * Core class for interacting with Site Health tests. * @@ -77134,13 +73272,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Taxonomies_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage taxonomies via the REST API. * @@ -77259,13 +73390,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Template_Autosaves_Controller class. - * - * @package WordPress - * @subpackage REST_API - * @since 6.4.0 - */ /** * Core class used to access template autosaves via the REST API. * @@ -77351,13 +73475,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Template_Revisions_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 6.4.0 - */ /** * Core class used to access template revisions via the REST API. * @@ -77443,13 +73560,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Templates_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.8.0 - */ /** * Base Templates REST API Controller. * @@ -77708,13 +73818,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Themes_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Core class used to manage themes via the REST API. * @@ -77898,13 +74001,6 @@ public function sanitize_theme_status($statuses, $request, $parameter) { } } - /** - * REST API: WP_REST_URL_Details_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.9.0 - */ /** * Controller which provides REST endpoint for retrieving information * from a remote site's HTML response. @@ -77963,13 +74059,6 @@ public function permissions_check() { } } - /** - * REST API: WP_REST_Users_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage users via the REST API. * @@ -78303,13 +74392,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Widget_Types_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.8.0 - */ /** * Core class to access widget types via the REST API. * @@ -78498,13 +74580,6 @@ public function get_collection_params() { } } - /** - * REST API: WP_REST_Widgets_Controller class - * - * @package WordPress - * @subpackage REST_API - * @since 5.8.0 - */ /** * Core class to access widgets via the REST API. * @@ -78753,13 +74828,6 @@ public function get_item_schema() { } } - /** - * REST API: WP_REST_Meta_Fields class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class to manage meta values for an object via the REST API. * @@ -78982,13 +75050,6 @@ protected static function get_empty_value_for_type($type) { } } - /** - * REST API: WP_REST_Comment_Meta_Fields class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class to manage comment meta via the REST API. * @@ -79029,13 +75090,6 @@ public function get_rest_field_type() { } } - /** - * REST API: WP_REST_Post_Meta_Fields class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage meta values for posts via the REST API. * @@ -79095,13 +75149,6 @@ public function get_rest_field_type() { } } - /** - * REST API: WP_REST_Term_Meta_Fields class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage meta values for terms via the REST API. * @@ -79159,13 +75206,6 @@ public function get_rest_field_type() { } } - /** - * REST API: WP_REST_User_Meta_Fields class - * - * @package WordPress - * @subpackage REST_API - * @since 4.7.0 - */ /** * Core class used to manage meta values for users via the REST API. * @@ -79206,13 +75246,6 @@ public function get_rest_field_type() { } } - /** - * REST API: WP_REST_Search_Handler class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Core base class representing a search handler for an object type in the REST API. * @@ -79296,13 +75329,6 @@ public abstract function prepare_item($id, array $fields); */ public abstract function prepare_item_links($id); } - /** - * REST API: WP_REST_Post_Format_Search_Handler class - * - * @package WordPress - * @subpackage REST_API - * @since 5.6.0 - */ /** * Core class representing a search handler for post formats in the REST API. * @@ -79377,13 +75403,6 @@ public function prepare_item_links($id) { } } - /** - * REST API: WP_REST_Post_Search_Handler class - * - * @package WordPress - * @subpackage REST_API - * @since 5.0.0 - */ /** * Core class representing a search handler for posts in the REST API. * @@ -79485,13 +75504,6 @@ protected function detect_rest_item_route($post) { } } - /** - * REST API: WP_REST_Term_Search_Handler class - * - * @package WordPress - * @subpackage REST_API - * @since 5.6.0 - */ /** * Core class representing a search handler for terms in the REST API. * @@ -79568,15 +75580,6 @@ public function prepare_item_links($id) { } } - /** - * Sitemaps: WP_Sitemaps_Index class. - * - * Generates the sitemap index. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Class WP_Sitemaps_Index. * Builds the sitemap index page that lists the links to all of the sitemaps. @@ -79626,15 +75629,6 @@ public function get_index_url() { } } - /** - * Sitemaps: WP_Sitemaps_Provider class - * - * This class is a base class for other sitemap providers to extend and contains shared functionality. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Class WP_Sitemaps_Provider. * @@ -79727,15 +75721,6 @@ public function get_object_subtypes() { } } - /** - * Sitemaps: WP_Sitemaps_Registry class - * - * Handles registering sitemap providers. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Class WP_Sitemaps_Registry. * @@ -79778,15 +75763,6 @@ public function get_providers() { } } - /** - * Sitemaps: WP_Sitemaps_Renderer class - * - * Responsible for rendering Sitemaps data to XML in accordance with sitemap protocol. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Class WP_Sitemaps_Renderer * @@ -79886,15 +75862,6 @@ public function get_sitemap_xml($url_list) { } } - /** - * Sitemaps: WP_Sitemaps_Stylesheet class - * - * This class provides the XSL stylesheets to style all sitemaps. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Stylesheet provider class. * @@ -79940,15 +75907,6 @@ public function get_stylesheet_css() { } } - /** - * Sitemaps: WP_Sitemaps class - * - * This is the main class integrating all other classes. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Class WP_Sitemaps. * @@ -80063,15 +76021,6 @@ public function add_robots($output, $is_public) { } } - /** - * Sitemaps: WP_Sitemaps_Posts class - * - * Builds the sitemaps for the 'post' object type. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Posts XML sitemap provider. * @@ -80139,15 +76088,6 @@ protected function get_posts_query_args($post_type) { } } - /** - * Sitemaps: WP_Sitemaps_Taxonomies class - * - * Builds the sitemaps for the 'taxonomy' object type. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Taxonomies XML sitemap provider. * @@ -80212,15 +76152,6 @@ protected function get_taxonomies_query_args($taxonomy) { } } - /** - * Sitemaps: WP_Sitemaps_Users class - * - * Builds the sitemaps for the 'user' object type. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Users XML sitemap provider. * @@ -80276,13 +76207,6 @@ protected function get_users_query_args() { } } - /** - * Style Engine: WP_Style_Engine_CSS_Declarations class - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * Core class used for style engine CSS declarations. * @@ -80411,13 +76335,6 @@ protected function sanitize_property($property) { } } - /** - * Style Engine: WP_Style_Engine_CSS_Rule class - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * Core class used for style engine CSS rules. * @@ -80550,13 +76467,6 @@ public function get_css($should_prettify = \false, $indent_count = 0) { } } - /** - * Style Engine: WP_Style_Engine_CSS_Rules_Store class - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * Core class used as a store for WP_Style_Engine_CSS_Rule objects. * @@ -80676,13 +76586,6 @@ public function remove_rule($selector) { } } - /** - * Style Engine: WP_Style_Engine_Processor class - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * Core class used to compile styles from stores or collection of CSS rules. * @@ -80754,13 +76657,6 @@ public function get_css($options = array()) { } } - /** - * Style Engine: WP_Style_Engine class - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * The main class integrating all other WP_Style_Engine_* classes. * @@ -80915,13 +76811,6 @@ public static function compile_stylesheet_from_css_rules($css_rules, $options = { } } - /** - * Widget API: WP_Nav_Menu_Widget class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement the Navigation Menu widget. * @@ -80978,13 +76867,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Archives class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement the Archives widget. * @@ -81038,13 +76920,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Block class - * - * @package WordPress - * @subpackage Widgets - * @since 5.8.0 - */ /** * Core class used to implement a Block widget. * @@ -81118,13 +76993,6 @@ public function set_is_wide_widget_in_customizer($is_wide, $widget_id) { } } - /** - * Widget API: WP_Widget_Calendar class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement the Calendar widget. * @@ -81178,13 +77046,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Categories class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Categories widget. * @@ -81240,13 +77101,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Custom_HTML class - * - * @package WordPress - * @subpackage Widgets - * @since 4.8.1 - */ /** * Core class used to implement a Custom HTML widget. * @@ -81369,13 +77223,6 @@ public static function add_help_text() { } } - /** - * Widget API: WP_Widget_Links class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Links widget. * @@ -81429,13 +77276,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Media_Widget class - * - * @package WordPress - * @subpackage Widgets - * @since 4.8.0 - */ /** * Core class that implements a media widget. * @@ -81684,13 +77524,6 @@ protected static function get_l10n_defaults() { } } - /** - * Widget API: WP_Widget_Media_Audio class - * - * @package WordPress - * @subpackage Widgets - * @since 4.8.0 - */ /** * Core class that implements an audio widget. * @@ -81763,13 +77596,6 @@ public function render_control_template_scripts() { } } - /** - * Widget API: WP_Widget_Media_Gallery class - * - * @package WordPress - * @subpackage Widgets - * @since 4.9.0 - */ /** * Core class that implements a gallery widget. * @@ -81841,13 +77667,6 @@ protected function has_content($instance) { } } - /** - * Widget API: WP_Widget_Media_Image class - * - * @package WordPress - * @subpackage Widgets - * @since 4.8.0 - */ /** * Core class that implements an image widget. * @@ -81908,13 +77727,6 @@ public function render_control_template_scripts() { } } - /** - * Widget API: WP_Widget_Media_Video class - * - * @package WordPress - * @subpackage Widgets - * @since 4.8.0 - */ /** * Core class that implements a video widget. * @@ -81999,13 +77811,6 @@ public function render_control_template_scripts() { } } - /** - * Widget API: WP_Widget_Meta class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Meta widget. * @@ -82061,13 +77866,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Pages class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Pages widget. * @@ -82121,13 +77919,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Recent_Comments class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Recent Comments widget. * @@ -82202,13 +77993,6 @@ public function flush_widget_cache() { } } - /** - * Widget API: WP_Widget_Recent_Posts class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Recent Posts widget. * @@ -82263,13 +78047,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_RSS class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a RSS widget. * @@ -82324,13 +78101,6 @@ public function form($instance) { } } - /** - * Widget API: WP_Widget_Search class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Search widget. * @@ -82384,13 +78154,6 @@ public function update($new_instance, $old_instance) { } } - /** - * Widget API: WP_Widget_Tag_Cloud class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Tag cloud widget. * @@ -82456,13 +78219,6 @@ public function _get_current_taxonomy($instance) { } } - /** - * Widget API: WP_Widget_Text class - * - * @package WordPress - * @subpackage Widgets - * @since 4.4.0 - */ /** * Core class used to implement a Text widget. * @@ -82636,7 +78392,6 @@ public static function render_control_template_scripts() * Note PHP 8.2 added native support for AVIF, so this class can be removed when WordPress requires PHP 8.2. */ namespace Avifinfo { - // Value was not yet parsed. /** * Reads an unsigned integer with most significant bits first. * @@ -82664,7 +78419,6 @@ function read($handle, $num_bytes) * @param int $num_bytes Number of skipped bytes. Can be 0. * @return bool True on success or false on failure. */ - // Skips 'num_bytes' from the 'stream'. 'num_bytes' can be zero. function skip($handle, $num_bytes) { } @@ -82710,16 +78464,6 @@ function export_add_js() function export_date_options($post_type = 'post') { } - /** - * Administration API: Core Ajax handlers - * - * @package WordPress - * @subpackage Administration - * @since 2.1.0 - */ - // - // No-privilege Ajax handlers. - // /** * Handles the Heartbeat API in the no-privilege context via AJAX . * @@ -82731,9 +78475,6 @@ function export_date_options($post_type = 'post') function wp_ajax_nopriv_heartbeat() { } - // - // GET-based Ajax handlers. - // /** * Handles fetching a list table via AJAX. * @@ -82816,9 +78557,6 @@ function wp_ajax_dashboard_widgets() function wp_ajax_logged_in() { } - // - // Ajax helpers. - // /** * Sends back current comment total and new page links if they need to be updated. * @@ -82833,9 +78571,6 @@ function wp_ajax_logged_in() function _wp_ajax_delete_comment_response($comment_id, $delta = -1) { } - // - // POST-based Ajax handlers. - // /** * Handles adding a hierarchical term via AJAX. * @@ -83681,12 +79416,6 @@ function wp_ajax_toggle_auto_updates() function wp_ajax_send_password_reset() { } - /** - * WordPress Bookmark Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Adds a link using values provided in $_POST. * @@ -83852,92 +79581,21 @@ function wp_update_link($linkdata) function wp_link_manager_disabled_message() { } - // End of class - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilPathReduction() - // Description : - // Parameters : - // Return Values : - // -------------------------------------------------------------------------------- function PclZipUtilPathReduction($p_dir) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilPathInclusion() - // Description : - // This function indicates if the path $p_path is under the $p_dir tree. Or, - // said in an other way, if the file or sub-dir $p_path is inside the dir - // $p_dir. - // The function indicates also if the path is exactly the same as the dir. - // This function supports path with duplicated '/' like '//', but does not - // support '.' or '..' statements. - // Parameters : - // Return Values : - // 0 if $p_path is not inside directory $p_dir - // 1 if $p_path is inside directory $p_dir - // 2 if $p_path is exactly the same as $p_dir - // -------------------------------------------------------------------------------- function PclZipUtilPathInclusion($p_dir, $p_path) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilCopyBlock() - // Description : - // Parameters : - // $p_mode : read/write compression mode - // 0 : src & dest normal - // 1 : src gzip, dest normal - // 2 : src normal, dest gzip - // 3 : src & dest gzip - // Return Values : - // -------------------------------------------------------------------------------- function PclZipUtilCopyBlock($p_src, $p_dest, $p_size, $p_mode = 0) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilRename() - // Description : - // This function tries to do a simple rename() function. If it fails, it - // tries to copy the $p_src file in a new $p_dest file and then unlink the - // first one. - // Parameters : - // $p_src : Old filename - // $p_dest : New filename - // Return Values : - // 1 on success, 0 on failure. - // -------------------------------------------------------------------------------- function PclZipUtilRename($p_src, $p_dest) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilOptionText() - // Description : - // Translate option value in text. Mainly for debug purpose. - // Parameters : - // $p_option : the option value. - // Return Values : - // The option text value. - // -------------------------------------------------------------------------------- function PclZipUtilOptionText($p_option) { } - // -------------------------------------------------------------------------------- - // -------------------------------------------------------------------------------- - // Function : PclZipUtilTranslateWinPath() - // Description : - // Translate windows path by replacing '\' by '/' and optionally removing - // drive letter. - // Parameters : - // $p_path : path to translate. - // $p_remove_disk_letter : true | false - // Return Values : - // The path translated. - // -------------------------------------------------------------------------------- function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = \true) { } @@ -83952,13 +79610,6 @@ function PclZipUtilTranslateWinPath($p_path, $p_remove_disk_letter = \true) function get_cli_args($param, $required = \false) { } - /** - * WordPress Comment Administration API. - * - * @package WordPress - * @subpackage Administration - * @since 2.3.0 - */ /** * Determines if a comment exists based on author and date. * @@ -84043,13 +79694,6 @@ function enqueue_comment_hotkeys_js() function comment_footer_die($msg) { } - /** - * WordPress Credits Administration API. - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Retrieves the contributor credits. * @@ -84110,12 +79754,6 @@ function wp_credits_section_title($group_data = array()) function wp_credits_section_list($credits = array(), $slug = '') { } - /** - * WordPress Dashboard Widget Administration Screen API - * - * @package WordPress - * @subpackage Administration - */ /** * Registers dashboard widgets. * @@ -84175,9 +79813,6 @@ function _wp_dashboard_control_callback($dashboard, $meta_box) function wp_dashboard() { } - // - // Dashboard Widgets. - // /** * Dashboard widget that displays some basic stats about the site. * @@ -84310,9 +79945,6 @@ function wp_dashboard_rss_output($widget_id) function wp_dashboard_cached_rss_widget($widget_id, $callback, $check_urls = array(), ...$args) { } - // - // Dashboard Widgets Controls. - // /** * Calls widget control callback. * @@ -84474,14 +80106,6 @@ function wp_dashboard_empty() function wp_welcome_panel() { } - /** - * Deprecated admin 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. - * - * @package WordPress - * @subpackage Deprecated - */ /* * Deprecated functions come here to die. */ @@ -85958,12 +81582,6 @@ function wp_opcache_invalidate($filepath, $force = \false) function wp_opcache_invalidate_directory($dir) { } - /** - * WordPress Image Editor - * - * @package WordPress - * @subpackage Administration - */ /** * Loads the WP image-editing interface. * @@ -86132,12 +81750,6 @@ function wp_restore_image($post_id) function wp_save_image($post_id) { } - /** - * File contains all the administration image manipulation functions. - * - * @package WordPress - * @subpackage Administration - */ /** * Crops an image to a given size. * @@ -86367,12 +81979,6 @@ function _load_image_to_edit_path($attachment_id, $size = 'full') function _copy_image_file($attachment_id) { } - /** - * WordPress Administration Importer API. - * - * @package WordPress - * @subpackage Administration - */ /** * Retrieves the list of importers. * @@ -86447,13 +82053,6 @@ function wp_import_handle_upload() function wp_get_popular_importers() { } - /** - * Helper functions for displaying a list of items in an ajaxified HTML table. - * - * @package WordPress - * @subpackage List_Table - * @since 3.1.0 - */ /** * Fetches an instance of a WP_List_Table class. * @@ -86498,12 +82097,6 @@ function register_column_headers($screen, $columns) function print_column_headers($screen, $with_id = \true) { } - /** - * WordPress Administration Media API. - * - * @package WordPress - * @subpackage Administration - */ /** * Defines the default media upload tabs. * @@ -87131,15 +82724,6 @@ function add_menu_classes($menu) function sort_menu($a, $b) { } - /** - * WordPress Administration Meta Boxes API. - * - * @package WordPress - * @subpackage Administration - */ - // - // Post-related Meta Boxes. - // /** * Displays post submit form fields. * @@ -87357,9 +82941,6 @@ function post_author_meta_box($post) function post_revisions_meta_box($post) { } - // - // Page-related Meta Boxes. - // /** * Displays page attributes form fields. * @@ -87370,9 +82951,6 @@ function post_revisions_meta_box($post) function page_attributes_meta_box($post) { } - // - // Link-related Meta Boxes. - // /** * Displays link create form fields. * @@ -87471,12 +83049,6 @@ function attachment_id3_data_meta_box($post) function register_and_do_post_meta_boxes($post) { } - /** - * Misc WordPress Administration API. - * - * @package WordPress - * @subpackage Administration - */ /** * Returns whether the server is running Apache with the mod_rewrite module loaded. * @@ -87940,16 +83512,6 @@ function _wp_privacy_settings_filter_draft_page_titles($title, $page) function wp_check_php_version() { } - /** - * Multisite: Deprecated admin functions from past versions and WordPress MU - * - * These functions should not be used and will be removed in a later version. - * It is suggested to use for the alternatives instead when available. - * - * @package WordPress - * @subpackage Deprecated - * @since 3.0.0 - */ /** * Outputs the WPMU menu. * @@ -88052,13 +83614,6 @@ function install_global_terms() function sync_category_tag_slugs($term, $taxonomy) { } - /** - * Multisite administration functions. - * - * @package WordPress - * @subpackage Multisite - * @since 3.0.0 - */ /** * Determines whether uploaded file exceeds space quota. * @@ -88188,7 +83743,6 @@ function _access_denied_splash() function check_import_new_users($permission) { } - // See "import_allow_fetch_attachments" and "import_attachment_size_limit" filters too. /** * Generates and displays a drop-down of available languages. * @@ -88531,13 +84085,6 @@ function wp_nav_menu_update_menu_items($nav_menu_selected_id, $nav_menu_selected function _wp_expand_nav_menu_post_data() { } - /** - * WordPress Network Administration API. - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Check for an existing network. * @@ -88609,13 +84156,6 @@ function network_step1($errors = \false) function network_step2($errors = \false) { } - /** - * WordPress Options Administration API. - * - * @package WordPress - * @subpackage Administration - * @since 4.4.0 - */ /** * Output JavaScript to toggle display of additional settings if avatars are disabled. * @@ -88648,12 +84188,6 @@ function options_reading_add_js() function options_reading_blog_charset() { } - /** - * WordPress Plugin Install Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Retrieves plugin installer pages from the WordPress.org Plugins API. * @@ -88908,12 +84442,6 @@ function install_plugin_information() function wp_get_plugin_action_button($name, $data, $compatible_php, $compatible_wp) { } - /** - * WordPress Plugin Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Parses the plugin contents to retrieve plugin's metadata. * @@ -89338,9 +84866,6 @@ function is_uninstallable_plugin($plugin) function uninstall_plugin($plugin) { } - // - // Menu. - // /** * Adds a top-level menu page. * @@ -89719,9 +85244,6 @@ function remove_submenu_page($menu_slug, $submenu_slug) function menu_page_url($menu_slug, $display = \true) { } - // - // Pluggable Menu Support -- Private. - // /** * Gets the parent file of the current admin page. * @@ -89807,7 +85329,6 @@ function get_plugin_page_hookname($plugin_page, $parent_page) function user_can_access_admin_page() { } - /* Allowed list functions */ /** * Refreshes the value of the allowed options list available via the 'allowed_options' hook. * @@ -89995,12 +85516,6 @@ function paused_plugins_notice() function deactivated_plugins_notice() { } - /** - * WordPress Post Administration API. - * - * @package WordPress - * @subpackage Administration - */ /** * Renames `$_POST` data from form names to DB post columns. * @@ -90117,9 +85632,6 @@ function wp_write_post() function write_post() { } - // - // Post Meta. - // /** * Adds post meta data defined in the `$_POST` superglobal for a post with given ID. * @@ -90208,9 +85720,6 @@ function has_meta($post_id) function update_meta($meta_id, $meta_key, $meta_value) { } - // - // Private. - // /** * Replaces hrefs of attachment anchors with up-to-date permalinks. * @@ -90539,12 +86048,6 @@ function _disable_content_editor_for_navigation_post_type($post) function _enable_content_editor_for_navigation_post_type($post) { } - /** - * WordPress Administration Privacy Tools API. - * - * @package WordPress - * @subpackage Administration - */ /** * Resend an existing request and return the result. * @@ -90689,13 +86192,6 @@ function wp_privacy_process_personal_data_export_page($response, $exporter_index function wp_privacy_process_personal_data_erasure_page($response, $eraser_index, $email_address, $page, $request_id) { } - /** - * WordPress Administration Revisions API - * - * @package WordPress - * @subpackage Administration - * @since 3.6.0 - */ /** * Get the revision UI diff. * @@ -90892,12 +86388,6 @@ function populate_network_meta($network_id, array $meta = array()) function populate_site_meta($site_id, array $meta = array()) { } - /** - * WordPress Administration Screen API. - * - * @package WordPress - * @subpackage Administration - */ /** * Get the column headers for a screen * @@ -90979,15 +86469,6 @@ function get_current_screen() function set_current_screen($hook_name = '') { } - /** - * WordPress Taxonomy Administration API. - * - * @package WordPress - * @subpackage Administration - */ - // - // Category. - // /** * Checks whether a category exists. * @@ -91085,9 +86566,6 @@ function wp_insert_category($catarr, $wp_error = \false) function wp_update_category($catarr) { } - // - // Tags. - // /** * Checks whether a post tag with a given name exists. * @@ -91149,9 +86627,6 @@ function get_terms_to_edit($post_id, $taxonomy = 'post_tag') function wp_create_term($tag_name, $taxonomy = 'post_tag') { } - // - // Category Checklists. - // /** * Outputs an unordered list of checkbox input elements labeled with category names. * @@ -92070,12 +87545,6 @@ function display_themes() function install_theme_information() { } - /** - * WordPress Theme Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Removes a theme. * @@ -92388,12 +87857,6 @@ function resume_theme($theme, $redirect = '') function paused_themes_notice() { } - /** - * WordPress Translation Installation Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Retrieve translations from WordPress Translation API. * @@ -92597,12 +88060,6 @@ function _upgrade_440_force_deactivate_incompatible_plugins() function _upgrade_core_deactivate_incompatible_plugins() { } - /** - * WordPress Administration Update API - * - * @package WordPress - * @subpackage Administration - */ /** * Selects the first update version from the update_core option. * @@ -93465,9 +88922,6 @@ function upgrade_650() function upgrade_network() { } - // - // General functions we use to actually do stuff. - // /** * Creates a table in the database, if it doesn't already exist. * @@ -93743,12 +89197,6 @@ function pre_schema_upgrade() function wp_should_upgrade_global_tables() { } - /** - * WordPress user administration API. - * - * @package WordPress - * @subpackage Administration - */ /** * Creates a new user from the "Users" form using $_POST information. * @@ -93943,12 +89391,6 @@ function wp_is_authorize_application_password_request_valid($request, $user) function wp_is_authorize_application_redirect_url_valid($url) { } - /** - * WordPress Widgets Administration API - * - * @package WordPress - * @subpackage Administration - */ /** * Display list of the available widgets. * @@ -94041,7 +89483,6 @@ function wp_widgets_access_body_class($classes) function display_header($body_classes = '') { } - // End display_header(). /** * Displays installer setup form. * @@ -94274,13 +89715,6 @@ function do_undismiss_core_update() function _get_cron_lock() { } - /** - * Toolbar API: Top-level Toolbar functionality - * - * @package WordPress - * @subpackage Toolbar - * @since 3.1.0 - */ /** * Instantiates the admin bar object and set it up as a global for access elsewhere. * @@ -94582,16 +90016,6 @@ function is_admin_bar_showing() function _get_admin_bar_pref($context = 'front', $user = 0) { } - /** - * Author Template functions for use in themes. - * - * These functions must be used within the WordPress Loop. - * - * @link https://codex.wordpress.org/Author_Templates - * - * @package WordPress - * @subpackage Template - */ /** * Retrieves the author of the current post. * @@ -94878,15 +90302,6 @@ function is_multi_author() function __clear_multi_author_cache() { } - /** - * Block Bindings API - * - * Contains functions for managing block bindings in WordPress. - * - * @package WordPress - * @subpackage Block Bindings - * @since 6.5.0 - */ /** * Registers a new block bindings source. * @@ -95009,13 +90424,6 @@ function get_all_registered_block_bindings_sources() function get_block_bindings_source(string $source_name) { } - /** - * Pattern Overrides source for the Block Bindings. - * - * @since 6.5.0 - * @package WordPress - * @subpackage Block Bindings - */ /** * Gets value for the Pattern Overrides source. * @@ -95040,13 +90448,6 @@ function _block_bindings_pattern_overrides_get_value(array $source_args, $block_ function _register_block_bindings_pattern_overrides_source() { } - /** - * Post Meta source for the block bindings. - * - * @since 6.5.0 - * @package WordPress - * @subpackage Block Bindings - */ /** * Gets value for Post Meta source. * @@ -95070,13 +90471,6 @@ function _block_bindings_post_meta_get_value(array $source_args, $block_instance function _register_block_bindings_post_meta_source() { } - /** - * Block Editor API. - * - * @package WordPress - * @subpackage Editor - * @since 5.8.0 - */ /** * Returns the list of default categories for block types. * @@ -95316,12 +90710,6 @@ function _register_remote_theme_patterns() function _register_theme_block_patterns() { } - /** - * Align block support flag. - * - * @package WordPress - * @since 5.6.0 - */ /** * Registers the align block attribute for block types that support it. * @@ -95347,12 +90735,6 @@ function wp_register_alignment_support($block_type) function wp_apply_alignment_support($block_type, $block_attributes) { } - /** - * Background block support flag. - * - * @package WordPress - * @since 6.4.0 - */ /** * Registers the style block attribute for block types that support it. * @@ -95383,13 +90765,6 @@ function wp_register_background_support($block_type) function wp_render_background_support($block_content, $block) { } - /** - * Block support to enable per-section styling of block types via - * block style variations. - * - * @package WordPress - * @since 6.6.0 - */ /** * Generate block style variation instance name. * @@ -95487,12 +90862,6 @@ function wp_enqueue_block_style_variation_styles() function wp_register_block_style_variations_from_theme_json_partials($variations) { } - /** - * Border block support flag. - * - * @package WordPress - * @since 5.8.0 - */ /** * Registers the style attribute used by the border feature if needed for block * types that support borders. @@ -95540,12 +90909,6 @@ function wp_apply_border_support($block_type, $block_attributes) function wp_has_border_feature_support($block_type, $feature, $default_value = \false) { } - /** - * Colors block support flag. - * - * @package WordPress - * @since 5.6.0 - */ /** * Registers the style and colors block attributes for block types that support it. * @@ -95574,12 +90937,6 @@ function wp_register_colors_support($block_type) function wp_apply_colors_support($block_type, $block_attributes) { } - /** - * Custom classname block support flag. - * - * @package WordPress - * @since 5.6.0 - */ /** * Registers the custom classname block attribute for block types that support it. * @@ -95605,16 +90962,6 @@ function wp_register_custom_classname_support($block_type) function wp_apply_custom_classname_support($block_type, $block_attributes) { } - /** - * Dimensions block support flag. - * - * This does not include the `spacing` block support even though that visually - * appears under the "Dimensions" panel in the editor. It remains in its - * original `spacing.php` file for compatibility with core. - * - * @package WordPress - * @since 5.9.0 - */ /** * Registers the style block attribute for block types that support it. * @@ -95657,12 +91004,6 @@ function wp_apply_dimensions_support($block_type, $block_attributes) function wp_render_dimensions_support($block_content, $block) { } - /** - * Elements styles block support. - * - * @package WordPress - * @since 5.8.0 - */ /** * Gets the elements class names. * @@ -95721,12 +91062,6 @@ function wp_render_elements_support_styles($parsed_block) function wp_render_elements_class_name($block_content, $block) { } - /** - * Generated classname block support flag. - * - * @package WordPress - * @since 5.6.0 - */ /** * Gets the generated classname from a given block name. * @@ -95753,12 +91088,6 @@ function wp_get_block_default_classname($block_name) function wp_apply_generated_classname_support($block_type) { } - /** - * Layout block support flag. - * - * @package WordPress - * @since 5.8.0 - */ /** * Returns layout definitions, keyed by layout type. * @@ -95871,12 +91200,6 @@ function wp_restore_group_inner_container($block_content, $block) function wp_restore_image_outer_container($block_content, $block) { } - /** - * Position block support flag. - * - * @package WordPress - * @since 6.2.0 - */ /** * Registers the style block attribute for block types that support it. * @@ -95901,12 +91224,6 @@ function wp_register_position_support($block_type) function wp_render_position_support($block_content, $block) { } - /** - * Block level presets support. - * - * @package WordPress - * @since 6.2.0 - */ /** * Get the class name used on block level presets. * @@ -95953,12 +91270,6 @@ function _wp_add_block_level_presets_class($block_content, $block) function _wp_add_block_level_preset_styles($pre_render, $block) { } - /** - * Shadow block support flag. - * - * @package WordPress - * @since 6.3.0 - */ /** * Registers the style and shadow block attributes for block types that support it. * @@ -95986,15 +91297,6 @@ function wp_register_shadow_support($block_type) function wp_apply_shadow_support($block_type, $block_attributes) { } - /** - * Spacing block support flag. - * - * For backwards compatibility, this remains separate to the dimensions.php - * block support despite both belonging under a single panel in the editor. - * - * @package WordPress - * @since 5.8.0 - */ /** * Registers the style block attribute for block types that support it. * @@ -96021,12 +91323,6 @@ function wp_register_spacing_support($block_type) function wp_apply_spacing_support($block_type, $block_attributes) { } - /** - * Typography block support flag. - * - * @package WordPress - * @since 5.6.0 - */ /** * Registers the style and typography block attributes for block types that support it. * @@ -96175,13 +91471,6 @@ function wp_get_computed_fluid_typography_value($args = array()) function wp_get_typography_font_size_value($preset, $settings = array()) { } - /** - * Block support utility functions. - * - * @package WordPress - * @subpackage Block Supports - * @since 6.0.0 - */ /** * Checks whether serialization of the current block's supported properties * should occur. @@ -96648,11 +91937,6 @@ function get_template_hierarchy($slug, $is_custom = \false, $template_prefix = ' function inject_ignored_hooked_blocks_metadata_attributes($changes, $deprecated = \null) { } - /** - * Block template loader functions. - * - * @package WordPress - */ /** * Adds necessary hooks to resolve '_wp-find-template' requests. * @@ -96774,13 +92058,6 @@ function _block_template_render_without_post_block_context($context) function _resolve_template_for_new_post($wp_query) { } - /** - * Functions related to registering and parsing blocks. - * - * @package WordPress - * @subpackage Blocks - * @since 5.0.0 - */ /** * Removes the block asset's path prefix if provided. * @@ -97827,11 +93104,6 @@ function _wp_footnotes_kses_init() function _wp_footnotes_force_filtered_html_on_import_filter($arg) { } - /** - * Server-side rendering of the `core/archives` block. - * - * @package WordPress - */ /** * Renders the `core/archives` block on server. * @@ -97854,11 +93126,6 @@ function render_block_core_archives($attributes) function register_block_core_archives() { } - /** - * Server-side rendering of the `core/avatar` block. - * - * @package WordPress - */ /** * Renders the `core/avatar` block on the server. * @@ -97892,11 +93159,6 @@ function get_block_core_avatar_border_attributes($attributes) function register_block_core_avatar() { } - /** - * Server-side rendering of the `core/block` block. - * - * @package WordPress - */ /** * Renders the `core/block` block on server. * @@ -97919,11 +93181,6 @@ function render_block_core_block($attributes) function register_block_core_block() { } - /** - * Server-side rendering of the `core/button` block. - * - * @package WordPress - */ /** * Renders the `core/button` block on the server, * @@ -97946,11 +93203,6 @@ function render_block_core_button($attributes, $content) function register_block_core_button() { } - /** - * Server-side rendering of the `core/calendar` block. - * - * @package WordPress - */ /** * Renders the `core/calendar` block on server. * @@ -98024,11 +93276,6 @@ function block_core_calendar_update_has_published_post_on_delete($post_id) function block_core_calendar_update_has_published_post_on_transition_post_status($new_status, $old_status, $post) { } - /** - * Server-side rendering of the `core/categories` block. - * - * @package WordPress - */ /** * Renders the `core/categories` block on server. * @@ -98061,11 +93308,6 @@ function build_dropdown_script_block_core_categories($dropdown_id) function register_block_core_categories() { } - /** - * Server-side rendering of the `core/comment-author-name` block. - * - * @package WordPress - */ /** * Renders the `core/comment-author-name` block on the server. * @@ -98087,11 +93329,6 @@ function render_block_core_comment_author_name($attributes, $content, $block) function register_block_core_comment_author_name() { } - /** - * Server-side rendering of the `core/comment-content` block. - * - * @package WordPress - */ /** * Renders the `core/comment-content` block on the server. * @@ -98113,11 +93350,6 @@ function render_block_core_comment_content($attributes, $content, $block) function register_block_core_comment_content() { } - /** - * Server-side rendering of the `core/comment-date` block. - * - * @package WordPress - */ /** * Renders the `core/comment-date` block on the server. * @@ -98139,11 +93371,6 @@ function render_block_core_comment_date($attributes, $content, $block) function register_block_core_comment_date() { } - /** - * Server-side rendering of the `core/comment-edit-link` block. - * - * @package WordPress - */ /** * Renders the `core/comment-edit-link` block on the server. * @@ -98166,11 +93393,6 @@ function render_block_core_comment_edit_link($attributes, $content, $block) function register_block_core_comment_edit_link() { } - /** - * Server-side rendering of the `core/comment-reply-link` block. - * - * @package WordPress - */ /** * Renders the `core/comment-reply-link` block on the server. * @@ -98192,11 +93414,6 @@ function render_block_core_comment_reply_link($attributes, $content, $block) function register_block_core_comment_reply_link() { } - /** - * Server-side rendering of the `core/comment-template` block. - * - * @package WordPress - */ /** * Function that recursively renders a list of nested comments. * @@ -98234,11 +93451,6 @@ function render_block_core_comment_template($attributes, $content, $block) function register_block_core_comment_template() { } - /** - * Server-side rendering of the `core/comments-pagination-next` block. - * - * @package WordPress - */ /** * Renders the `core/comments-pagination-next` block on the server. * @@ -98261,11 +93473,6 @@ function render_block_core_comments_pagination_next($attributes, $content, $bloc function register_block_core_comments_pagination_next() { } - /** - * Server-side rendering of the `core/comments-pagination-numbers` block. - * - * @package WordPress - */ /** * Renders the `core/comments-pagination-numbers` block on the server. * @@ -98288,11 +93495,6 @@ function render_block_core_comments_pagination_numbers($attributes, $content, $b function register_block_core_comments_pagination_numbers() { } - /** - * Server-side rendering of the `core/comments-pagination-previous` block. - * - * @package WordPress - */ /** * Renders the `core/comments-pagination-previous` block on the server. * @@ -98315,11 +93517,6 @@ function render_block_core_comments_pagination_previous($attributes, $content, $ function register_block_core_comments_pagination_previous() { } - /** - * Server-side rendering of the `core/comments-pagination` block. - * - * @package WordPress - */ /** * Renders the `core/comments-pagination` block on the server. * @@ -98341,11 +93538,6 @@ function render_block_core_comments_pagination($attributes, $content) function register_block_core_comments_pagination() { } - /** - * Server-side rendering of the `core/comments-title` block. - * - * @package WordPress - */ /** * Renders the `core/comments-title` block on the server. * @@ -98366,11 +93558,6 @@ function render_block_core_comments_title($attributes) function register_block_core_comments_title() { } - /** - * Server-side rendering of the `core/comments` block. - * - * @package WordPress - */ /** * Renders the `core/comments` block on the server. * @@ -98440,11 +93627,6 @@ function enqueue_legacy_post_comments_block_styles($block_name) function register_legacy_post_comments_block() { } - /** - * Server-side rendering of the `core/cover` block. - * - * @package WordPress - */ /** * Renders the `core/cover` block on server. * @@ -98466,11 +93648,6 @@ function render_block_core_cover($attributes, $content) function register_block_core_cover() { } - /** - * Server-side rendering of the `core/file` block. - * - * @package WordPress - */ /** * When the `core/file` block is rendering, check if we need to enqueue the `wp-block-file-view` script. * @@ -98493,11 +93670,6 @@ function render_block_core_file($attributes, $content) function register_block_core_file() { } - /** - * Server-side rendering of the `core/footnotes` block. - * - * @package WordPress - */ /** * Renders the `core/footnotes` block on the server. * @@ -98553,11 +93725,6 @@ function wp_add_footnotes_to_revision($fields) function wp_get_footnotes_from_revision($revision_field, $field, $revision) { } - /** - * Server-side rendering of the `core/gallery` block. - * - * @package WordPress - */ /** * Handles backwards compatibility for Gallery Blocks, * whose images feature a `data-id` attribute. @@ -98594,11 +93761,6 @@ function block_core_gallery_render($attributes, $content) function register_block_core_gallery() { } - /** - * Appending the wp-block-heading to before rendering the stored `core/heading` block contents. - * - * @package WordPress - */ /** * Adds a wp-block-heading class to the heading block content. * @@ -98626,11 +93788,6 @@ function block_core_heading_render($attributes, $content) function register_block_core_heading() { } - /** - * Server-side rendering of the `core/home-link` block. - * - * @package WordPress - */ /** * Build an array with CSS classes and inline styles defining the colors * which will be applied to the home link markup in the front-end. @@ -98691,11 +93848,6 @@ function render_block_core_home_link($attributes, $content, $block) function register_block_core_home_link() { } - /** - * Server-side rendering of the `core/image` block. - * - * @package WordPress - */ /** * Renders the `core/image` block on the server, * adding a data-id attribute to the element if core/gallery has added on pre-render. @@ -98775,11 +93927,6 @@ function register_core_block_style_handles() function register_core_block_types_from_metadata() { } - /** - * Server-side rendering of the `core/latest-comments` block. - * - * @package WordPress - */ /** * Get the post title. * @@ -98876,11 +94023,6 @@ function register_block_core_latest_posts() function block_core_latest_posts_migrate_categories($block) { } - /** - * Server-side rendering of the `core/legacy-widget` block. - * - * @package WordPress - */ /** * Renders the 'core/legacy-widget' block. * @@ -98914,11 +94056,6 @@ function register_block_core_legacy_widget() function handle_legacy_widget_preview_iframe() { } - /** - * Adds the wp-block-list class to the rendered list block. - * - * @package WordPress - */ /** * Adds the wp-block-list class to the rendered list block. * Ensures that pre-existing list blocks use the class name on the front. @@ -98944,11 +94081,6 @@ function block_core_list_render($attributes, $content) function register_block_core_list() { } - /** - * Server-side rendering of the `core/loginout` block. - * - * @package WordPress - */ /** * Renders the `core/loginout` block on server. * @@ -98969,11 +94101,6 @@ function render_block_core_loginout($attributes) function register_block_core_loginout() { } - /** - * Server-side rendering of the `core/media-text` block. - * - * @package WordPress - */ /** * Renders the `core/media-text` block on server. * @@ -98995,11 +94122,6 @@ function render_block_core_media_text($attributes, $content) function register_block_core_media_text() { } - /** - * Server-side registering and rendering of the `core/navigation-link` block. - * - * @package WordPress - */ /** * Build an array with CSS classes and inline styles defining the colors * which will be applied to the navigation markup in the front-end. @@ -99108,11 +94230,6 @@ function block_core_navigation_link_build_variations() function register_block_core_navigation_link() { } - /** - * Server-side rendering of the `core/navigation-submenu` block. - * - * @package WordPress - */ /** * Build an array with CSS classes and inline styles defining the font sizes * which will be applied to the navigation markup in the front-end. @@ -99497,11 +94614,6 @@ function block_core_navigation_update_ignore_hooked_blocks_meta($post) function block_core_navigation_insert_hooked_blocks_into_rest_response($response, $post) { } - /** - * Server-side rendering of the `core/page-list-item` block. - * - * @package WordPress - */ /** * Registers the `core/page-list-item` block on server. * @@ -99510,11 +94622,6 @@ function block_core_navigation_insert_hooked_blocks_into_rest_response($response function register_block_core_page_list_item() { } - /** - * Server-side rendering of the `core/pages` block. - * - * @package WordPress - */ /** * Build an array with CSS classes and inline styles defining the colors * which will be applied to the pages markup in the front-end when it is a descendant of navigation. @@ -99594,11 +94701,6 @@ function render_block_core_page_list($attributes, $content, $block) function register_block_core_page_list() { } - /** - * Server-side rendering of the `core/pattern` block. - * - * @package WordPress - */ /** * Registers the `core/pattern` block on the server. * @@ -99621,11 +94723,6 @@ function register_block_core_pattern() function render_block_core_pattern($attributes) { } - /** - * Server-side rendering of the `core/post-author-biography` block. - * - * @package WordPress - */ /** * Renders the `core/post-author-biography` block on the server. * @@ -99647,11 +94744,6 @@ function render_block_core_post_author_biography($attributes, $content, $block) function register_block_core_post_author_biography() { } - /** - * Server-side rendering of the `core/post-author-name` block. - * - * @package WordPress - */ /** * Renders the `core/post-author-name` block on the server. * @@ -99673,11 +94765,6 @@ function render_block_core_post_author_name($attributes, $content, $block) function register_block_core_post_author_name() { } - /** - * Server-side rendering of the `core/post-author` block. - * - * @package WordPress - */ /** * Renders the `core/post-author` block on the server. * @@ -99699,11 +94786,6 @@ function render_block_core_post_author($attributes, $content, $block) function register_block_core_post_author() { } - /** - * Server-side rendering of the `core/post-comments-form` block. - * - * @package WordPress - */ /** * Renders the `core/post-comments-form` block on the server. * @@ -99737,11 +94819,6 @@ function register_block_core_post_comments_form() function post_comments_form_block_form_defaults($fields) { } - /** - * Server-side rendering of the `core/post-content` block. - * - * @package WordPress - */ /** * Renders the `core/post-content` block on the server. * @@ -99763,11 +94840,6 @@ function render_block_core_post_content($attributes, $content, $block) function register_block_core_post_content() { } - /** - * Server-side rendering of the `core/post-date` block. - * - * @package WordPress - */ /** * Renders the `core/post-date` block on the server. * @@ -99789,11 +94861,6 @@ function render_block_core_post_date($attributes, $content, $block) function register_block_core_post_date() { } - /** - * Server-side rendering of the `core/post-excerpt` block. - * - * @package WordPress - */ /** * Renders the `core/post-excerpt` block on the server. * @@ -99815,11 +94882,6 @@ function render_block_core_post_excerpt($attributes, $content, $block) function register_block_core_post_excerpt() { } - /** - * Server-side rendering of the `core/post-featured-image` block. - * - * @package WordPress - */ /** * Renders the `core/post-featured-image` block on the server. * @@ -99865,11 +94927,6 @@ function get_block_core_post_featured_image_border_attributes($attributes) function register_block_core_post_featured_image() { } - /** - * Server-side rendering of the `core/post-navigation-link` block. - * - * @package WordPress - */ /** * Renders the `core/post-navigation-link` block on the server. * @@ -99891,11 +94948,6 @@ function render_block_core_post_navigation_link($attributes, $content) function register_block_core_post_navigation_link() { } - /** - * Server-side rendering of the `core/post-template` block. - * - * @package WordPress - */ /** * Determines whether a block list contains a block that uses the featured image. * @@ -99932,11 +94984,6 @@ function render_block_core_post_template($attributes, $content, $block) function register_block_core_post_template() { } - /** - * Server-side rendering of the `core/post-terms` block. - * - * @package WordPress - */ /** * Renders the `core/post-terms` block on the server. * @@ -99968,11 +95015,6 @@ function block_core_post_terms_build_variations() function register_block_core_post_terms() { } - /** - * Server-side rendering of the `core/post-title` block. - * - * @package WordPress - */ /** * Renders the `core/post-title` block on the server. * @@ -99995,11 +95037,6 @@ function render_block_core_post_title($attributes, $content, $block) function register_block_core_post_title() { } - /** - * Server-side rendering of the `core/query-no-results` block. - * - * @package WordPress - */ /** * Renders the `core/query-no-results` block on the server. * @@ -100024,11 +95061,6 @@ function render_block_core_query_no_results($attributes, $content, $block) function register_block_core_query_no_results() { } - /** - * Server-side rendering of the `core/query-pagination-next` block. - * - * @package WordPress - */ /** * Renders the `core/query-pagination-next` block on the server. * @@ -100053,11 +95085,6 @@ function render_block_core_query_pagination_next($attributes, $content, $block) function register_block_core_query_pagination_next() { } - /** - * Server-side rendering of the `core/query-pagination-numbers` block. - * - * @package WordPress - */ /** * Renders the `core/query-pagination-numbers` block on the server. * @@ -100082,11 +95109,6 @@ function render_block_core_query_pagination_numbers($attributes, $content, $bloc function register_block_core_query_pagination_numbers() { } - /** - * Server-side rendering of the `core/query-pagination-previous` block. - * - * @package WordPress - */ /** * Renders the `core/query-pagination-previous` block on the server. * @@ -100109,11 +95131,6 @@ function render_block_core_query_pagination_previous($attributes, $content, $blo function register_block_core_query_pagination_previous() { } - /** - * Server-side rendering of the `core/query-pagination` block. - * - * @package WordPress - */ /** * Renders the `core/query-pagination` block on the server. * @@ -100135,11 +95152,6 @@ function render_block_core_query_pagination($attributes, $content) function register_block_core_query_pagination() { } - /** - * Server-side rendering of the `core/query-title` block. - * - * @package WordPress - */ /** * Renders the `core/query-title` block on the server. * For now it only supports Archive title, @@ -100162,11 +95174,6 @@ function render_block_core_query_title($attributes) function register_block_core_query_title() { } - /** - * Server-side rendering of the `core/query` block. - * - * @package WordPress - */ /** * Modifies the static `core/query` block on the server. * @@ -100203,11 +95210,6 @@ function register_block_core_query() function block_core_query_disable_enhanced_pagination($parsed_block) { } - /** - * Server-side rendering of the `core/read-more` block. - * - * @package WordPress - */ /** * Renders the `core/read-more` block on the server. * @@ -100229,11 +95231,6 @@ function render_block_core_read_more($attributes, $content, $block) function register_block_core_read_more() { } - /** - * Server-side rendering of the `core/rss` block. - * - * @package WordPress - */ /** * Renders the `core/rss` block on server. * @@ -100254,11 +95251,6 @@ function render_block_core_rss($attributes) function register_block_core_rss() { } - /** - * Server-side rendering of the `core/search` block. - * - * @package WordPress - */ /** * Dynamically renders the `core/search` block. * @@ -100393,11 +95385,6 @@ function get_border_color_classes_for_block_core_search($attributes) function get_color_classes_for_block_core_search($attributes) { } - /** - * Server-side rendering of the `core/shortcode` block. - * - * @package WordPress - */ /** * Performs wpautop() on the shortcode block content. * @@ -100419,11 +95406,6 @@ function render_block_core_shortcode($attributes, $content) function register_block_core_shortcode() { } - /** - * Server-side rendering of the `core/site-logo` block. - * - * @package WordPress - */ /** * Renders the `core/site-logo` block on the server. * @@ -100523,11 +95505,6 @@ function _delete_site_logo_on_remove_custom_logo_on_setup_theme() function _delete_custom_logo_on_remove_site_logo() { } - /** - * Server-side rendering of the `core/site-tagline` block. - * - * @package WordPress - */ /** * Renders the `core/site-tagline` block on the server. * @@ -100548,11 +95525,6 @@ function render_block_core_site_tagline($attributes) function register_block_core_site_tagline() { } - /** - * Server-side rendering of the `core/site-title` block. - * - * @package WordPress - */ /** * Renders the `core/site-title` block on the server. * @@ -100573,11 +95545,6 @@ function render_block_core_site_title($attributes) function register_block_core_site_title() { } - /** - * Server-side rendering of the `core/social-link` blocks. - * - * @package WordPress - */ /** * Renders the `core/social-link` block on server. * @@ -100661,11 +95628,6 @@ function block_core_social_link_get_color_styles($context) function block_core_social_link_get_color_classes($context) { } - /** - * Server-side rendering of the `core/tag-cloud` block. - * - * @package WordPress - */ /** * Renders the `core/tag-cloud` block on server. * @@ -100686,11 +95648,6 @@ function render_block_core_tag_cloud($attributes) function register_block_core_tag_cloud() { } - /** - * Server-side rendering of the `core/template-part` block. - * - * @package WordPress - */ /** * Renders the `core/template-part` block on the server. * @@ -100745,11 +95702,6 @@ function build_template_part_block_variations() function register_block_core_template_part() { } - /** - * Server-side rendering of the `core/term-description` block. - * - * @package WordPress - */ /** * Renders the `core/term-description` block on the server. * @@ -100770,11 +95722,6 @@ function render_block_core_term_description($attributes) function register_block_core_term_description() { } - /** - * Server-side rendering of the `core/widget-group` block. - * - * @package WordPress - */ /** * Renders the 'core/widget-group' block. * @@ -100825,12 +95772,6 @@ function note_sidebar_being_rendered($index) function discard_sidebar_being_rendered() { } - /** - * Bookmark Template Functions for usage in Themes. - * - * @package WordPress - * @subpackage Template - */ /** * The formatted output of a list of bookmarks. * @@ -100965,12 +95906,6 @@ function _walk_bookmarks($bookmarks, $args = '') function wp_list_bookmarks($args = '') { } - /** - * Link/Bookmark API - * - * @package WordPress - * @subpackage Bookmark - */ /** * Retrieves bookmark data. * @@ -101445,15 +96380,6 @@ function wp_cache_switch_to_blog($blog_id) function wp_cache_reset() { } - /** - * Canonical API to handle WordPress Redirecting - * - * Based on "Permalink Redirect" from Scott Yang and "Enforce www. Preference" - * by Mark Jaquith - * - * @package WordPress - * @since 2.3.0 - */ /** * Redirects incoming links to the proper URL based on the site url. * @@ -101539,12 +96465,6 @@ function redirect_guess_404_permalink() function wp_redirect_admin_locations() { } - /** - * Core User Role & Capabilities API - * - * @package WordPress - * @subpackage Users - */ /** * Maps a capability to the primitive capabilities required of the given user to * satisfy the capability being checked. @@ -101836,13 +96756,6 @@ function wp_maybe_grant_resume_extensions_caps($allcaps) function wp_maybe_grant_site_health_caps($allcaps, $caps, $args, $user) { } - /** - * Taxonomy API: Core category-specific template tags - * - * @package WordPress - * @subpackage Template - * @since 1.2.0 - */ /** * Retrieves category link URL. * @@ -102318,9 +97231,6 @@ function _wp_object_name_sort_cb($a, $b) function _wp_object_count_sort_cb($a, $b) { } - // - // Helper functions. - // /** * Retrieves HTML list content for category list. * @@ -102353,9 +97263,6 @@ function walk_category_tree(...$args) function walk_category_dropdown_tree(...$args) { } - // - // Tags. - // /** * Retrieves the link to the tag. * @@ -102570,12 +97477,6 @@ function has_tag($tag = '', $post = \null) function has_term($term = '', $taxonomy = '', $post = \null) { } - /** - * Taxonomy API: Core category-specific functionality - * - * @package WordPress - * @subpackage Taxonomy - */ /** * Retrieves a list of category objects. * @@ -102730,7 +97631,6 @@ function sanitize_category($category, $context = 'display') function sanitize_category_field($field, $value, $cat_id, $context) { } - /* Tags */ /** * Retrieves all post tags. * @@ -102776,7 +97676,6 @@ function get_tags($args = '') function get_tag($tag, $output = \OBJECT, $filter = 'raw') { } - /* Cache */ /** * Removes the category cache data based on ID. * @@ -102898,14 +97797,6 @@ function unregister_block_pattern($pattern_name) function get_block_wrapper_attributes($extra_attributes = array()) { } - /** - * Comment template functions - * - * These functions are meant to live inside of the WordPress loop. - * - * @package WordPress - * @subpackage Template - */ /** * Retrieves the author of the current comment. * @@ -103932,12 +98823,6 @@ function wp_list_comments($args = array(), $comments = \null) function comment_form($args = array(), $post = \null) { } - /** - * Core Comment API - * - * @package WordPress - * @subpackage Comment - */ /** * Checks whether a comment passes internal checks to be allowed to add. * @@ -104201,9 +99086,6 @@ function get_lastcommentmodified($timezone = 'server') function get_comment_count($post_id = 0) { } - // - // Comment meta functions. - // /** * Adds meta data field to a comment. * @@ -104937,9 +99819,6 @@ function wp_update_comment_count($post_id, $do_deferred = \false) function wp_update_comment_count_now($post_id) { } - // - // Ping and trackback functions. - // /** * Finds a pingback server URI based on the given URL. * @@ -105096,9 +99975,6 @@ function pingback_ping_source_uri($source_uri) function xmlrpc_pingback_error($ixr_error) { } - // - // Cache. - // /** * Removes a comment from the object cache. * @@ -105141,9 +100017,6 @@ function update_comment_cache($comments, $update_meta_cache = \true) function _prime_comment_caches($comment_ids, $update_meta_cache = \true) { } - // - // Internal. - // /** * Closes comments on old posts on the fly, without any extra DB queries. Hooked to the_posts. * @@ -105302,11 +100175,6 @@ function _wp_batch_update_comment_type() function _wp_check_for_scheduled_update_comment_type() { } - /** - * WordPress Cron API - * - * @package WordPress - */ /** * Schedules an event to run only once. * @@ -105665,9 +100533,6 @@ function wp_get_schedule($hook, $args = array()) function wp_get_ready_cron_jobs() { } - // - // Private functions. - // /** * Retrieves cron info array option. * @@ -105710,11 +100575,6 @@ function _set_cron_array($cron, $wp_error = \false) function _upgrade_cron_array($cron) { } - /** - * Defines constants and global variables that can be overridden, generally in wp-config.php. - * - * @package WordPress - */ /** * Defines initial WordPress constants. * @@ -105772,14 +100632,6 @@ function wp_functionality_constants() function wp_templating_constants() { } - /** - * Deprecated 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. - * - * @package WordPress - * @subpackage Deprecated - */ /* * Deprecated functions come here to die. */ @@ -109270,13 +104122,6 @@ function wp_render_elements_support($block_content, $block) function wp_interactivity_process_directives_of_interactive_blocks(array $parsed_block) : array { } - /** - * oEmbed API: Top-level oEmbed functionality - * - * @package WordPress - * @subpackage oEmbed - * @since 4.4.0 - */ /** * Registers an embed handler. * @@ -109799,12 +104644,6 @@ function the_embed_site_title() function wp_filter_pre_oembed_result($result, $url, $args) { } - /** - * Error Protection API: Functions - * - * @package WordPress - * @since 5.2.0 - */ /** * Get the instance for storing paused plugins. * @@ -109866,16 +104705,6 @@ function wp_is_fatal_error_handler_enabled() function wp_recovery_mode() { } - /** - * WordPress Feed API - * - * Many of the functions used in here belong in The Loop, or The Loop for the - * Feeds. - * - * @package WordPress - * @subpackage Feed - * @since 2.1.0 - */ /** * Retrieves RSS container for the bloginfo function. * @@ -110240,13 +105069,6 @@ function feed_content_type($type = '') function fetch_feed($url) { } - /** - * Fonts functions. - * - * @package WordPress - * @subpackage Fonts - * @since 6.4.0 - */ /** * Generates and prints font-face styles for given fonts or theme.json fonts. * @@ -110439,13 +105261,6 @@ function _wp_before_delete_font_face($post_id, $post) function _wp_register_default_font_collections() { } - /** - * Main WordPress Formatting API. - * - * Handles many functions for formatting output. - * - * @package WordPress - */ /** * Replaces common plain text characters with formatted entities. * @@ -112375,7 +107190,6 @@ function _sanitize_text_fields($str, $keep_newlines = \false) function wp_basename($path, $suffix = '') { } - // phpcs:disable WordPress.WP.CapitalPDangit.MisspelledInComment,WordPress.WP.CapitalPDangit.MisspelledInText,WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid -- 8-) /** * Forever eliminate "Wordpress" from the planet (or at least the little bit we can influence). * @@ -112389,7 +107203,6 @@ function wp_basename($path, $suffix = '') function capital_P_dangit($text) { } - // phpcs:enable /** * Sanitizes a mime type * @@ -116063,14 +110876,6 @@ function wp_get_admin_notice($message, $args = array()) function wp_admin_notice($message, $args = array()) { } - /** - * Dependencies API: Scripts functions - * - * @since 2.6.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Initializes $wp_scripts if it has not been set. * @@ -116326,14 +111131,6 @@ function wp_script_is($handle, $status = 'enqueued') function wp_script_add_data($handle, $key, $value) { } - /** - * Dependencies API: Styles functions - * - * @since 2.6.0 - * - * @package WordPress - * @subpackage Dependencies - */ /** * Initializes $wp_styles if it has not been set. * @@ -116501,12 +111298,6 @@ function wp_style_is($handle, $status = 'enqueued') function wp_style_add_data($handle, $key, $value) { } - /** - * General template tags that can go anywhere in a template. - * - * @package WordPress - * @subpackage Template - */ /** * Loads header template. * @@ -117299,7 +112090,6 @@ function delete_get_calendar_cache() function allowed_tags() { } - /***** Date/Time tags */ /** * Outputs the date in iso8601 format for xml files. * @@ -118233,11 +113023,6 @@ function wp_required_field_message() function wp_heartbeat_settings($settings) { } - /** - * APIs to interact with global settings & styles. - * - * @package WordPress - */ /** * Gets the settings resulting of merging core, theme, and user data. * @@ -118411,15 +113196,6 @@ function wp_get_theme_data_template_parts() function wp_get_block_css_selector($block_type, $target = 'root', $fallback = \false) { } - /** - * Core HTTP Request API - * - * Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk - * decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations. - * - * @package WordPress - * @subpackage HTTP - */ /** * Returns the initialized WP_Http Object * @@ -119061,12 +113837,6 @@ function _get_component_from_parsed_url_array($url_parts, $component = -1) function _wp_translate_php_url_constant_to_key($constant) { } - /** - * HTTPS detection functions. - * - * @package WordPress - * @since 5.7.0 - */ /** * Checks whether the website is using HTTPS. * @@ -119143,12 +113913,6 @@ function wp_get_https_detection_errors() function wp_is_local_html_output($html) { } - /** - * HTTPS migration functions. - * - * @package WordPress - * @since 5.7.0 - */ /** * Checks whether WordPress should replace old HTTP URLs to the site with their HTTPS counterpart. * @@ -119207,13 +113971,6 @@ function wp_update_urls_to_https() function wp_update_https_migration_required($old_url, $new_url) { } - /** - * Interactivity API: Functions and hooks - * - * @package WordPress - * @subpackage Interactivity API - * @since 6.5.0 - */ /** * Retrieves the main WP_Interactivity_API instance. * @@ -120052,13 +114809,6 @@ function _wp_add_global_attributes($value) function _wp_kses_allow_pdf_objects($url) { } - /** - * Core Translation API - * - * @package WordPress - * @subpackage i18n - * @since 1.2.0 - */ /** * Retrieves the current locale. * @@ -120947,12 +115697,6 @@ function wp_get_list_item_separator() function wp_get_word_count_type() { } - /** - * WordPress Link Template Functions - * - * @package WordPress - * @subpackage Template - */ /** * Displays the permalink for the current post. * @@ -121527,9 +116271,6 @@ function edit_bookmark_link($link = '', $before = '', $after = '', $bookmark = \ function get_edit_user_link($user_id = \null) { } - // - // Navigation links. - // /** * Retrieves the previous post that is adjacent to the current post. * @@ -122940,11 +117681,6 @@ function wp_internal_hosts() function wp_is_internal_link($link) { } - /** - * These functions are needed to load WordPress. - * - * @package WordPress - */ /** * Returns the HTTP protocol sent by the server. * @@ -123737,13 +118473,6 @@ function wp_is_xml_request() function wp_is_site_protected_by_basic_auth($context = '') { } - /** - * WordPress media templates. - * - * @package WordPress - * @subpackage Media - * @since 3.5.0 - */ /** * Outputs the markup for an audio tag to be used in an Underscore template * when data.model is passed. @@ -123770,12 +118499,6 @@ function wp_underscore_video_template() function wp_print_media_templates() { } - /** - * WordPress API for media display. - * - * @package WordPress - * @subpackage Media - */ /** * Retrieves additional image sizes. * @@ -126381,13 +121104,6 @@ function _update_posts_count_on_transition_post_status($new_status, $old_status, function wp_count_sites($network_id = \null) { } - /** - * Defines constants and global variables that can be overridden, generally in wp-config.php. - * - * @package WordPress - * @subpackage Multisite - * @since 3.0.0 - */ /** * Defines Multisite upload constants. * @@ -126433,15 +121149,6 @@ function ms_file_constants() function ms_subdomain_constants() { } - /** - * Deprecated functions from WordPress MU and the multisite feature. You shouldn't - * use these functions and look for the alternatives instead. The functions will be - * removed in a later version. - * - * @package WordPress - * @subpackage Deprecated - * @since 3.0.0 - */ /* * Deprecated functions come here to die. */ @@ -126810,13 +121517,6 @@ function update_user_status($id, $pref, $value, $deprecated = \null) function global_terms($term_id, $deprecated = '') { } - /** - * Multisite WordPress API - * - * @package WordPress - * @subpackage Multisite - * @since 3.0.0 - */ /** * Gets the network's site and user counts. * @@ -126951,9 +121651,6 @@ function get_blog_permalink($blog_id, $post_id) function get_blog_id_from_url($domain, $path = '/') { } - // - // Admin functions. - // /** * Checks an email address against a list of banned domains. * @@ -127356,9 +122053,6 @@ function get_current_site() function get_most_recent_post_of_user($user_id) { } - // - // Misc functions. - // /** * Checks an array of MIME types against a list of allowed types. * @@ -127772,14 +122466,6 @@ function update_network_option_new_admin_email($old_value, $value) function wp_network_admin_email_change_notification($option_name, $new_email, $old_email, $network_id) { } - /** - * These functions are needed to load Multisite. - * - * @since 3.0.0 - * - * @package WordPress - * @subpackage Multisite - */ /** * Whether a subdomain configuration is enabled. * @@ -127957,13 +122643,6 @@ function wpmu_current_site() function wp_get_network($network) { } - /** - * Network API - * - * @package WordPress - * @subpackage Multisite - * @since 5.1.0 - */ /** * Retrieves network data given a network ID or network object. * @@ -128034,13 +122713,6 @@ function update_network_cache($networks) function _prime_network_caches($network_ids) { } - /** - * Site API - * - * @package WordPress - * @subpackage Multisite - * @since 5.1.0 - */ /** * Inserts a new site into the database. * @@ -128725,13 +123397,6 @@ function _nav_menu_item_id_use_once($id, $item) function wp_nav_menu_remove_menu_item_has_children_class($classes, $menu_item, $args = \false, $depth = \false) { } - /** - * Navigation Menu functions - * - * @package WordPress - * @subpackage Nav_Menus - * @since 3.0.0 - */ /** * Returns a navigation menu object. * @@ -129119,12 +123784,6 @@ function wp_map_nav_menu_locations($new_nav_menu_locations, $old_nav_menu_locati function _wp_reset_invalid_menu_item_parent($menu_item_data) { } - /** - * Option API - * - * @package WordPress - * @subpackage Option - */ /** * Retrieves an option value based on an option name. * @@ -131306,9 +125965,6 @@ function apply_filters_deprecated($hook_name, $args, $version, $replacement = '' function do_action_deprecated($hook_name, $args, $version, $replacement = '', $message = '') { } - // - // Functions for handling plugins. - // /** * Gets the basename of a plugin. * @@ -131481,12 +126137,6 @@ function _wp_call_all_hook($args) function _wp_filter_build_unique_id($hook_name, $callback, $priority) { } - /** - * Post format functions. - * - * @package WordPress - * @subpackage Post - */ /** * Retrieve the format slug for a post * @@ -131631,14 +126281,6 @@ function _post_format_get_terms($terms, $taxonomies, $args) function _post_format_wp_get_object_terms($terms) { } - /** - * WordPress Post Template Functions. - * - * Gets content for the current post in the loop. - * - * @package WordPress - * @subpackage Template - */ /** * Displays the ID of the current item in the WordPress Loop. * @@ -131891,9 +126533,6 @@ function get_body_class($css_class = '') function post_password_required($post = \null) { } - // - // Page Template Functions for usage in Themes. - // /** * The formatted output of a list of pages. * @@ -131961,9 +126600,6 @@ function wp_link_pages($args = '') function _wp_link_page($i) { } - // - // Post-meta: Custom per-post fields. - // /** * Retrieves post custom meta data field. * @@ -131986,9 +126622,6 @@ function post_custom($key = '') function the_meta() { } - // - // Pages. - // /** * Retrieves or displays a list of pages as a dropdown (select list). * @@ -132209,9 +126842,6 @@ function wp_list_pages($args = '') function wp_page_menu($args = array()) { } - // - // Page helpers. - // /** * Retrieves HTML list content for page list. * @@ -132243,9 +126873,6 @@ function walk_page_tree($pages, $depth, $current_page, $args) function walk_page_dropdown_tree(...$args) { } - // - // Attachments. - // /** * Displays an attachment page link using an image or icon. * @@ -132289,9 +126916,6 @@ function wp_get_attachment_link($post = 0, $size = 'thumbnail', $permalink = \fa function prepend_attachment($content) { } - // - // Misc. - // /** * Retrieves protected post password form content. * @@ -132398,15 +127022,6 @@ function get_post_parent($post = \null) function has_post_parent($post = \null) { } - /** - * WordPress Post Thumbnail Template Functions. - * - * Support for post thumbnails. - * Theme's functions.php must call add_theme_support( 'post-thumbnails' ) to use these. - * - * @package WordPress - * @subpackage Template - */ /** * Determines whether a post has an image attached. * @@ -132541,15 +127156,6 @@ function get_the_post_thumbnail_caption($post = \null) function the_post_thumbnail_caption($post = \null) { } - /** - * Core Post API - * - * @package WordPress - * @subpackage Post - */ - // - // Post Type registration. - // /** * Creates the initial post types when 'init' action is fired. * @@ -133680,9 +128286,6 @@ function is_post_publicly_viewable($post = \null) function get_posts($args = \null) { } - // - // Post meta functions. - // /** * Adds a meta field to the given post. * @@ -134661,9 +129264,6 @@ function wp_transition_post_status($new_status, $old_status, $post) function wp_after_insert_post($post, $update, $post_before) { } - // - // Comment, trackback, and pingback functions. - // /** * Adds a URL to those already pinged. * @@ -134727,9 +129327,6 @@ function get_to_ping($post) function trackback_url_list($tb_list, $post_id) { } - // - // Page functions. - // /** * Gets a list of page IDs. * @@ -134902,9 +129499,6 @@ function get_page_uri($page = 0) function get_pages($args = array()) { } - // - // Attachment functions. - // /** * Determines whether an attachment URI is local and really an attachment. * @@ -135354,9 +129948,6 @@ function update_postmeta_cache($post_ids) function clean_attachment_cache($id, $clean_terms = \false) { } - // - // Hooks. - // /** * Hook for managing future post transitions to published. * @@ -135666,17 +130257,6 @@ function use_block_editor_for_post_type($post_type) function wp_create_initial_post_meta() { } - /** - * WordPress Query API - * - * The query API attempts to get which part of WordPress the user is on. It - * also provides functionality for getting URL query information. - * - * @link https://developer.wordpress.org/themes/basics/the-loop/ More information on The Loop. - * - * @package WordPress - * @subpackage Query - */ /** * Retrieves the value of a query variable in the WP_Query class. * @@ -135781,9 +130361,6 @@ function wp_reset_query() function wp_reset_postdata() { } - /* - * Query type checks. - */ /** * Determines whether the query is for an existing archive page. * @@ -136326,9 +130903,6 @@ function is_embed() function is_main_query() { } - /* - * The Loop. Post loop control. - */ /** * Determines whether current WordPress query has posts to loop over. * @@ -136380,9 +130954,6 @@ function rewind_posts() function the_post() { } - /* - * Comments loop. - */ /** * Determines whether current WordPress query has comments to loop over. * @@ -137579,12 +132150,6 @@ function rest_convert_error_to_response($error) function wp_is_rest_endpoint() { } - /** - * Post revision functions. - * - * @package WordPress - * @subpackage Post_Revisions - */ /** * Determines which fields of posts are to be saved in revisions. * @@ -138191,13 +132756,6 @@ function wp_resolve_numeric_slug_conflicts($query_vars = array()) function url_to_postid($url) { } - /** - * Robots template functions. - * - * @package WordPress - * @subpackage Robots - * @since 5.7.0 - */ /** * Displays the robots meta tag as necessary. * @@ -139045,14 +133603,6 @@ function wp_add_editor_classic_theme_styles($editor_settings) function wp_remove_surrounding_empty_script_tags($contents) { } - /** - * Script Modules API: Script Module functions - * - * @since 6.5.0 - * - * @package WordPress - * @subpackage Script Modules - */ /** * Retrieves the main WP_Script_Modules instance. * @@ -139470,16 +134020,6 @@ function strip_shortcodes($content) function strip_shortcode_tag($m) { } - /** - * Sitemaps: Public functions - * - * This file contains a variety of public functions developers can use to interact with - * the XML Sitemaps API. - * - * @package WordPress - * @subpackage Sitemaps - * @since 5.5.0 - */ /** * Retrieves the current Sitemaps server instance. * @@ -139538,16 +134078,6 @@ function wp_sitemaps_get_max_urls($object_type) function get_sitemap_url($name, $subtype_name = '', $page = 1) { } - /** - * Style engine: Public functions - * - * This file contains a variety of public functions developers can use to interact with - * the Style Engine API. - * - * @package WordPress - * @subpackage StyleEngine - * @since 6.1.0 - */ /** * Global public interface method to generate styles from a single style object, * e.g. the value of a block's attributes.style object or the top level styles in theme.json. @@ -139696,15 +134226,6 @@ function wp_style_engine_get_stylesheet_from_css_rules($css_rules, $options = ar function wp_style_engine_get_stylesheet_from_context($context, $options = array()) { } - /** - * Core Taxonomy API - * - * @package WordPress - * @subpackage Taxonomy - */ - // - // Taxonomy registration. - // /** * Creates the initial taxonomies. * @@ -140124,9 +134645,6 @@ function register_taxonomy_for_object_type($taxonomy, $object_type) function unregister_taxonomy_for_object_type($taxonomy, $object_type) { } - // - // Term API. - // /** * Retrieves object IDs of valid taxonomy and term. * @@ -141061,9 +135579,6 @@ function wp_update_term_count($terms, $taxonomy, $do_deferred = \false) function wp_update_term_count_now($terms, $taxonomy) { } - // - // Cache. - // /** * Removes the taxonomy relationship to terms from the cache. * @@ -141163,9 +135678,6 @@ function update_object_term_cache($object_ids, $object_type) function update_term_cache($terms, $taxonomy = '') { } - // - // Private. - // /** * Retrieves children of taxonomy as term IDs. * @@ -141233,9 +135745,6 @@ function _pad_term_counts(&$terms, $taxonomy) function _prime_term_caches($term_ids, $update_meta_cache = \true) { } - // - // Default callbacks. - // /** * Updates term count based on object types of the current taxonomy. * @@ -141600,12 +136109,6 @@ function wp_cache_set_terms_last_changed() function wp_check_term_meta_support_prefilter($check) { } - /** - * Template loading functions. - * - * @package WordPress - * @subpackage Template - */ /** * Retrieves path to a template. * @@ -142076,11 +136579,6 @@ function locate_template($template_names, $load = \false, $load_once = \true, $a function load_template($_template_file, $load_once = \true, $args = array()) { } - /** - * Theme previews using the Site Editor for block themes. - * - * @package WordPress - */ /** * Filters the blog option to return the path for the previewed theme. * @@ -142178,12 +136676,6 @@ function wp_enqueue_block_template_skip_link() function wp_enable_block_templates() { } - /** - * Theme, template, and stylesheet functions. - * - * @package WordPress - * @subpackage Theme - */ /** * Returns an array of WP_Theme objects based on the arguments. * @@ -143491,12 +137983,6 @@ function wp_theme_get_element_class_name($element) function _add_default_theme_supports() { } - /** - * A simple set of functions to check the WordPress.org Version Update service. - * - * @package WordPress - * @since 2.3.0 - */ /** * Checks WordPress version against the newest version. * @@ -143665,12 +138151,6 @@ function wp_delete_all_temp_backups() function _wp_delete_all_temp_backups() { } - /** - * Core User API - * - * @package WordPress - * @subpackage Users - */ /** * Authenticates and logs a user in with 'remember' capability. * @@ -143842,9 +138322,6 @@ function count_user_posts($userid, $post_type = 'post', $public_only = \false) function count_many_users_posts($users, $post_type = 'post', $public_only = \false) { } - // - // User option functions. - // /** * Gets the current user's ID. * @@ -144223,9 +138700,6 @@ function wp_schedule_update_user_counts() function wp_is_large_user_count($network_id = \null) { } - // - // Private helper functions. - // /** * Sets up global user vars. * @@ -145113,9 +139587,6 @@ function wp_is_password_reset_allowed_for_user($user) function wp_is_mobile() { } - // - // Template tags & API functions. - // /** * Register a widget * @@ -145543,9 +140014,6 @@ function is_dynamic_sidebar() function is_active_sidebar($index) { } - // - // Internal Functions. - // /** * Retrieve full list of sidebars and their widget instance IDs. * @@ -145921,7 +140389,6 @@ function _wp_block_theme_register_classic_sidebars() function login_header($title = \null, $message = '', $wp_error = \null) { } - // End of login_header(). /** * Outputs the footer for the login page. *