PHP Class SimplePie_Item, simplepie

Show file Open project: simplepie/simplepie Class Usage Examples

Public Properties

Property Type Description
$data array Raw data
$feed SimplePie Parent feed

Protected Properties

Property Type Description
$registry SimplePie_Registry Registry object

Public Methods

Method Description
__construct ( SimplePie $feed, array $data ) Create a new item object
__destruct ( ) Remove items that link back to this before destroying this object
__toString ( ) : string Get a string representation of the item
get_author ( integer $key ) : SimplePie_Author | null Get an author for the item
get_authors ( ) : array | null Get all authors for the item
get_base ( array $element = [] ) : string Get the base URL value from the parent feed
get_categories ( ) : SimplePie_Category[] | null Get all categories for the item
get_category ( integer $key ) : SimplePie_Category | null Get a category for the item
get_content ( boolean $content_only = false ) : string | null Get the content for the item
get_contributor ( integer $key ) : SimplePie_Author | null Get a contributor for the item
get_contributors ( ) : array | null Get all contributors for the item
get_copyright ( ) : string Get the copyright info for the item
get_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the posting date/time for the item
get_description ( boolean $description_only = false ) : string | null Get the content for the item
get_enclosure ( integer $key, $prefer = null ) : SimplePie_Enclosure | null Get an enclosure from the item
get_enclosures ( ) : SimplePie_Enclosure[] | null Get all available enclosures (podcasts, etc.)
get_feed ( ) : SimplePie Get the parent feed
get_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the posting date/time for the item (UTC time)
get_id ( boolean $hash = false, $fn = '' ) : string Get the unique identifier for the item
get_item_tags ( string $namespace, string $tag ) : array Get data for an item-level element
get_latitude ( ) : string | null Get the latitude coordinates for the item
get_link ( integer $key, string $rel = 'alternate' ) : string | null Get a single link for the item
get_links ( string $rel = 'alternate' ) : array | null Get all links for the item
get_local_date ( string $date_format = '%c' ) : integer | string | null Get the localized posting date/time for the item
get_longitude ( ) : string | null Get the longitude coordinates for the item
get_permalink ( ) : string | null Get the permalink for the item
get_source ( ) : SimplePie_Source | null Get the for the item
get_thumbnail ( ) : array | null Get the media:thumbnail of the item
get_title ( ) : string | null Get the title of the item
get_updated_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the update date/time for the item
get_updated_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null Get the update date/time for the item (UTC time)
sanitize ( string $data, integer $type, string $base = '' ) : string Sanitize feed data
set_registry ( SimplePie_Registry $registry ) Set the registry handler

Method Details

__construct() public method

This is usually used by {@see \SimplePie::get_items} and {@see \SimplePie::get_item}. Avoid creating this manually.
public __construct ( SimplePie $feed, array $data )
$feed SimplePie Parent feed
$data array Raw data

__destruct() public method

Remove items that link back to this before destroying this object
public __destruct ( )

__toString() public method

Get a string representation of the item
public __toString ( ) : string
return string

get_author() public method

Get an author for the item
public get_author ( integer $key ) : SimplePie_Author | null
$key integer The author that you want to return. Remember that arrays begin with 0, not 1
return SimplePie_Author | null

get_authors() public method

Uses , , or
public get_authors ( ) : array | null
return array | null List of {@see \SimplePie_Author} objects

get_base() public method

Uses
public get_base ( array $element = [] ) : string
$element array
return string

get_categories() public method

Uses , or
public get_categories ( ) : SimplePie_Category[] | null
return SimplePie_Category[] | null List of {@see \SimplePie_Category} objects

get_category() public method

Get a category for the item
public get_category ( integer $key ) : SimplePie_Category | null
$key integer The category that you want to return. Remember that arrays begin with 0, not 1
return SimplePie_Category | null

get_content() public method

Prefers full content over summaries, but will return a summary if full content does not exist. To prefer summaries instead, use {@see \get_description} Uses or (RSS 1.0 Content Module)
Since: 1.0
public get_content ( boolean $content_only = false ) : string | null
$content_only boolean Should we avoid falling back to the description?
return string | null

get_contributor() public method

Get a contributor for the item
Since: 1.1
public get_contributor ( integer $key ) : SimplePie_Author | null
$key integer The contrbutor that you want to return. Remember that arrays begin with 0, not 1
return SimplePie_Author | null

get_contributors() public method

Uses
Since: 1.1
public get_contributors ( ) : array | null
return array | null List of {@see \SimplePie_Author} objects

get_date() public method

Uses , , , , or Note: obeys PHP's timezone setting. To get a UTC date/time, use {@see \get_gmdate}
public get_date ( string $date_format = 'j F Y, g:i a' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/date} (empty for the raw data)
return integer | string | null

get_description() public method

Prefers summaries over full content , but will return full content if a summary does not exist. To prefer full content instead, use {@see \get_content} Uses , , or
Since: 0.8
public get_description ( boolean $description_only = false ) : string | null
$description_only boolean Should we avoid falling back to the content?
return string | null

get_enclosure() public method

Supports the RSS tag, as well as Media RSS and iTunes RSS.
public get_enclosure ( integer $key, $prefer = null ) : SimplePie_Enclosure | null
$key integer The enclosure that you want to return. Remember that arrays begin with 0, not 1
return SimplePie_Enclosure | null

get_enclosures() public method

Supports the RSS tag, as well as Media RSS and iTunes RSS. At this point, we're pretty much assuming that all enclosures for an item are the same content. Anything else is too complicated to properly support.
public get_enclosures ( ) : SimplePie_Enclosure[] | null
return SimplePie_Enclosure[] | null List of SimplePie_Enclosure items

get_feed() public method

Note: this may not work as you think for multifeeds!
public get_feed ( ) : SimplePie
return SimplePie

get_gmdate() public method

Get the posting date/time for the item (UTC time)
See also: get_date
public get_gmdate ( string $date_format = 'j F Y, g:i a' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/date}
return integer | string | null

get_id() public method

This is usually used when writing code to check for new items in a feed. Uses , , or the about attribute for RDF. If none of these are supplied (or $hash is true), creates an MD5 hash based on the permalink, title and content.
public get_id ( boolean $hash = false, $fn = '' ) : string
$hash boolean Should we force using a hash instead of the supplied ID?
return string

get_item_tags() public method

This method allows you to get access to ANY element/attribute that is a sub-element of the item/entry tag. See {@see \SimplePie::get_feed_tags()} for a description of the return value
See also: http://simplepie.org/wiki/faq/supported_xml_namespaces
Since: 1.0
public get_item_tags ( string $namespace, string $tag ) : array
$namespace string The URL of the XML namespace of the elements you're trying to access
$tag string Tag name
return array

get_latitude() public method

Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications Uses or
Since: 1.0
public get_latitude ( ) : string | null
return string | null

get_local_date() public method

Returns the date formatted in the localized language. To display in languages other than the server's default, you need to change the locale with {@link http://php.net/setlocale setlocale()}. The available localizations depend on which ones are installed on your web server.
Since: 1.0
public get_local_date ( string $date_format = '%c' ) : integer | string | null
$date_format string Supports any PHP date format from {@see http://php.net/strftime} (empty for the raw data)
return integer | string | null

get_longitude() public method

Compatible with the W3C WGS84 Basic Geo and GeoRSS specifications Uses , or
Since: 1.0
public get_longitude ( ) : string | null
return string | null

get_source() public method

Get the for the item
Since: 1.1
public get_source ( ) : SimplePie_Source | null
return SimplePie_Source | null

get_thumbnail() public method

Uses
public get_thumbnail ( ) : array | null
return array | null

get_title() public method

Uses , </span> or <span class='highlight'><dc:title></span> </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-get_title">get_title</a></span> ( ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></span> </td> </tr> <tr> <td class="field-return">return</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-descr-full" id="method-get_updated_date"> <div class="row"> <div class="col-md-6"> <h3> get_updated_date() <span class="modifier">public</span > <span>method</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/method/-/SimplePie_Item/get_updated_date/-" rel="nofollow" title="Source code of method SimplePie_Item::get_updated_date"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-get_updated_date" title="Direct link to the method SimplePie_Item::get_updated_date documentation"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Uses <span class='highlight'><atom:updated></span> Note: obeys PHP's timezone setting. To get a UTC date/time, use {@see \get_gmdate} </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-get_updated_date">get_updated_date</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$date_format</span> = 'j F Y, g:i a' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></span> </td> </tr> <tr> <td class="param-name"> $date_format </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Supports any PHP date format from {@see http://php.net/date} (empty for the raw data)</td> </tr> <tr> <td class="field-return">return</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-descr-full" id="method-get_updated_gmdate"> <div class="row"> <div class="col-md-6"> <h3> get_updated_gmdate() <span class="modifier">public</span > <span>method</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/method/-/SimplePie_Item/get_updated_gmdate/-" rel="nofollow" title="Source code of method SimplePie_Item::get_updated_gmdate"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-get_updated_gmdate" title="Direct link to the method SimplePie_Item::get_updated_gmdate documentation"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Get the update date/time for the item (UTC time) </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> <div class="field"> See also: <span>get_updated_date </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-get_updated_gmdate">get_updated_gmdate</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$date_format</span> = 'j F Y, g:i a' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></span> </td> </tr> <tr> <td class="param-name"> $date_format </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Supports any PHP date format from {@see http://php.net/date}</td> </tr> <tr> <td class="field-return">return</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a> | <a href="http://php.net/manual/en/language.types.string.php">string</a> | <a href="http://php.net/manual/en/language.types.null.php">null</a></td> <td></td> </tr> </table> </div> </div> </div> <div class="method-descr-full" id="method-sanitize"> <div class="row"> <div class="col-md-6"> <h3> sanitize() <span class="modifier">public</span > <span>method</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/method/-/SimplePie_Item/sanitize/-" rel="nofollow" title="Source code of method SimplePie_Item::sanitize"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-sanitize" title="Direct link to the method SimplePie_Item::sanitize documentation"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> Sanitize feed data </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> <div class="field"> See also: <span>SimplePie::sanitize() </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-sanitize">sanitize</a></span> ( <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$data</span>, <span class="param-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a></span> <span class="param-name">$type</span>, <span class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> <span class="param-name">$base</span> = '' ) : <span class="return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></span> </td> </tr> <tr> <td class="param-name"> $data </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Data to sanitize</td> </tr> <tr> <td class="param-name"> $type </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.integer.php">integer</a></td> <td>One of the SIMPLEPIE_CONSTRUCT_* constants</td> </tr> <tr> <td class="param-name"> $base </td> <td class="param-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Base URL to resolve URLs against</td> </tr> <tr> <td class="field-return">return</td> <td class="field-return-type"><a href="http://php.net/manual/en/language.types.string.php">string</a></td> <td>Sanitized data</td> </tr> </table> </div> </div> </div> <div class="method-descr-full" id="method-set_registry"> <div class="row"> <div class="col-md-6"> <h3> set_registry() <span class="modifier">public</span > <span>method</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://src.hotexamples.com/method/-/SimplePie_Item/set_registry/-" rel="nofollow" title="Source code of method SimplePie_Item::set_registry"><i class='icon-borderless icon-eye'></i></a> <a rel="nofollow" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-set_registry" title="Direct link to the method SimplePie_Item::set_registry documentation"><i class='icon-borderless icon-link'></i></a> </div> </div> <div class="row"> <div class="col-md-12"> This is usually used by {@see \SimplePie_Registry::create} </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> <div class="field"> Since: <span>1.3 </span> </div> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="method-name"><a class="method-link" href="https://doc.hotexamples.com/class/-/SimplePie_Item#method-set_registry">set_registry</a></span> ( <span class="param-type">SimplePie_Registry</span> <span class="param-name">$registry</span> ) </td> </tr> <tr> <td class="param-name"> $registry </td> <td class="param-type">SimplePie_Registry</td> <td></td> </tr> </table> </div> </div> </div> <h2>Property Details</h2> <div class="property-descr-full" id="prop-data"> <div class="row"> <div class="col-md-6"> <h3 class="name">$data <span>public property</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/class/-/SimplePie_Item#prop-data" title="Direct link to property SimplePie_Item::data documentation"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Raw data </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <!-- <tr> <td colspan="3"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="return-type">array</span> <span class="var-name">$data</span> </td> </tr> <tr> <td>return</td> <td><a href="http://php.net/manual/en/language.types.array.php">array</a></td> <td></td> </tr> </table> </div> </div> </div> <div class="property-descr-full" id="prop-feed"> <div class="row"> <div class="col-md-6"> <h3 class="name">$feed <span>public property</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/class/-/SimplePie_Item#prop-feed" title="Direct link to property SimplePie_Item::feed documentation"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Parent feed </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <!-- <tr> <td colspan="3"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">public</span > <span class="return-type">SimplePie</span> <span class="var-name">$feed</span> </td> </tr> <tr> <td>return</td> <td>SimplePie</td> <td></td> </tr> </table> </div> </div> </div> <div class="property-descr-full" id="prop-registry"> <div class="row"> <div class="col-md-6"> <h3 class="name">$registry <span>protected property</span> </h3> </div> <div class="col-md-6 actions"> <a href="https://doc.hotexamples.com/class/-/SimplePie_Item#prop-registry" title="Direct link to property SimplePie_Item::registry documentation"> <i class='icon-borderless icon-link'></i> </a> </div> </div> <div class="row"> <div class="col-md-12"> Registry object </div> </div> <div class="row doc-tags"> <div class="col-md-12"> <div class="tag-block tag-summary"> </div> <div class="tag-block tag-remarks"> </div> <div class="tag-block tag-exception"> </div> <div class="tag-block tag-see"> <div class="field"> See also: <span>set_registry </span> </div> </div> <div class="tag-block tag-link"> </div> <div class="tag-block tag-deprecated"> </div> <div class="tag-block tag-since"> </div> <div class="tag-block tag-author"> </div> </div> </div> <div class="row"> <div class="col-md-12" style="overflow: auto"> <table class="table table-striped"> <!-- <tr> <td colspan="3"></td> </tr> --> <tr> <td colspan="3" class="rendered"> <span class="modifier">protected</span > <span class="return-type">SimplePie_Registry</span> <span class="var-name">$registry</span> </td> </tr> <tr> <td>return</td> <td>SimplePie_Registry</td> <td></td> </tr> </table> </div> </div> </div> </div> </div> </div></div> <footer class="footer"> <div class="container"> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://hotexamples.com/site/trends?type=php%7Cf">Top Functions</a> | <a href="https://hotexamples.com/site/trends?type=php%7Cc"> Top Classes </a> | <a href="https://doc.hotexamples.com/doc/map">Documentation</a> | <a href="/site/privacy">Privacy Policy</a> | <a href="https://cpp.hotexamples.com/direct-sales.html">Advertise with us</a> </div> </div> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://hotexamples.com/">PHP</a> | <a href="https://csharp.hotexamples.com/">C# (CSharp)</a> | <a href="https://java.hotexamples.com/">Java</a> | <a href="https://golang.hotexamples.com/">Golang</a> | <a href="https://cpp.hotexamples.com/">C++ (Cpp)</a> | <a href="https://python.hotexamples.com/">Python</a> | <a href="https://javascript.hotexamples.com/">JavaScript</a> | <a href="https://typescript.hotexamples.com/">TypeScript</a> </div> </div> <div class="row"> <div class="col-md-12" style="text-align: center"> <a href="https://doc.hotexamples.com/class/-/SimplePie_Item">EN</a> | <a href="https://doc.hotexamples.com/ru/class/-/SimplePie_Item">RU</a> | <a href="https://doc.hotexamples.com/de/class/-/SimplePie_Item">DE</a> | <a href="https://doc.hotexamples.com/fr/class/-/SimplePie_Item">FR</a> | <a href="https://doc.hotexamples.com/es/class/-/SimplePie_Item">ES</a> | <a href="https://doc.hotexamples.com/pt/class/-/SimplePie_Item">PT</a> | <a href="https://doc.hotexamples.com/it/class/-/SimplePie_Item">IT</a> | <a href="https://doc.hotexamples.com/jp/class/-/SimplePie_Item">JP</a> | <a href="https://doc.hotexamples.com/zh/class/-/SimplePie_Item">ZH</a> | <a href="https://doc.hotexamples.com/ko/class/-/SimplePie_Item">KO</a> </div> </div> <div class="row"> <div class="col-md-10 col-md-offset-1"> </div> <div class="col-md-1"> <!--LiveInternet counter--> <script type="text/javascript"><!-- document.write("<a href='//www.liveinternet.ru/click' " + "target=_blank><img src='//counter.yadro.ru/hit?t44.6;r" + escape(document.referrer) + ((typeof (screen) == "undefined") ? "" : ";s" + screen.width + "*" + screen.height + "*" + (screen.colorDepth ? screen.colorDepth : screen.pixelDepth)) + ";u" + escape(document.URL) + ";" + Math.random() + "' alt='' title='LiveInternet' " + "border='0' width='31' height='31'><\/a>"); //--></script><!--/LiveInternet--> </div> </div> </div> </footer> <script src="//ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> <script src="/assets/30dd86a6f06b64184847037c52c63e07aa3c9a26.js"></script> <script>jQuery(function ($) { jQuery('#search-form').yiiActiveForm([{"id":"searchform-lang","name":"lang","container":".field-searchform-lang","input":"#searchform-lang","enableAjaxValidation":true},{"id":"searchform-search","name":"search","container":".field-searchform-search","input":"#searchform-search","enableAjaxValidation":true,"validate":function (attribute, value, messages, deferred, $form) {yii.validation.required(value, messages, {"message":"Search cannot be blank."});}}], []); });</script></body> </html>