Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
Represents the yt:statistics element used by the YouTube data API

integer
$_favoriteCount= 'null'
The favoriteCount attribute specifies the number of YouTube users who have added a video to their list of favorite videos. The favoriteCount attribute is only specified when the <yt:statistics> tag appears within a video entry.
nullDetails
string
$_lastWebAccess= 'null'
The lastWebAccess attribute indicates the most recent time that a particular user used YouTube.
nullDetails
integer
$_subscriberCount= 'null'
The subscriberCount attribute specifies the number of YouTube users who have subscribed to a particular user's YouTube channel.
The subscriberCount attribute is only specified when the
nullDetails
integer
$_videoWatchCount= 'null'
The videoWatchCount attribute specifies the number of videos that a user has watched on YouTube. The videoWatchCount attribute is only specified when the <yt:statistics> tag appears within a user profile entry.
nullDetails
integer
$_viewCount= 'null'
When the viewCount attribute refers to a video entry, the attribute specifies the number of times that the video has been viewed.
When the viewCount attribute refers to a user profile, the attribute specifies the number of times that the user's profile has been viewed.
nullDetails
__construct(
$viewCount
=
null, $videoWatchCount
=
null, $subscriberCount
=
null, $lastWebAccess
=
null, $favoriteCount
=
null
)
:
voidConstructs a new Zend_Gdata_YouTube_Extension_Statistics object.
| Name | Type | Description |
|---|---|---|
| $viewCount | ||
| $videoWatchCount | ||
| $subscriberCount | ||
| $lastWebAccess | ||
| $favoriteCount |

__toString(
)
:
stringMagic toString method allows using this directly via echo Works best in PHP >= 4.2.0
| Type | Description |
|---|---|
| string |

getDOM(
\DOMDocument $doc
=
null, $majorVersion
=
1, $minorVersion
=
null
)
:
\DOMElementRetrieves a DOMElement which corresponds to this element and all child properties. This is used to build an entry back into a DOM and eventually XML text for sending to the server upon updates, or for application storage/persistence.
| Name | Type | Description |
|---|---|---|
| $doc | \DOMDocument | The DOMDocument used to construct DOMElements |
| $majorVersion | ||
| $minorVersion |
| Type | Description |
|---|---|
| \DOMElement | The DOMElement representing this element and all child properties. |

getFavoriteCount(
)
:
intGet the value for this element's favoriteCount attribute.
| Type | Description |
|---|---|
| int | The value associated with this attribute. |

getLastWebAccess(
)
:
intGet the value for this element's lastWebAccess attribute.
| Type | Description |
|---|---|
| int | The value associated with this attribute. |

getSubscriberCount(
)
:
intGet the value for this element's subscriberCount attribute.
| Type | Description |
|---|---|
| int | The value associated with this attribute. |

getVideoWatchCount(
)
:
intGet the value for this element's videoWatchCount attribute.
| Type | Description |
|---|---|
| int | The value associated with this attribute. |

getViewCount(
)
:
intGet the value for this element's viewCount attribute.
| Type | Description |
|---|---|
| int | The value associated with this attribute. |

setFavoriteCount(
int $value
)
:
\Zend_Gdata_YouTube_Extension_StatisticsSet the value for this element's favoriteCount attribute.
| Name | Type | Description |
|---|---|---|
| $value | int | The desired value for this attribute. |
| Type | Description |
|---|---|
| \Zend_Gdata_YouTube_Extension_Statistics | The element being modified. |

setLastWebAccess(
int $value
)
:
\Zend_Gdata_YouTube_Extension_StatisticsSet the value for this element's lastWebAccess attribute.
| Name | Type | Description |
|---|---|---|
| $value | int | The desired value for this attribute. |
| Type | Description |
|---|---|
| \Zend_Gdata_YouTube_Extension_Statistics | The element being modified. |

setSubscriberCount(
int $value
)
:
\Zend_Gdata_YouTube_Extension_StatisticsSet the value for this element's subscriberCount attribute.
| Name | Type | Description |
|---|---|---|
| $value | int | The desired value for this attribute. |
| Type | Description |
|---|---|
| \Zend_Gdata_YouTube_Extension_Statistics | The element being modified. |

setVideoWatchCount(
int $value
)
:
\Zend_Gdata_YouTube_Extension_StatisticsSet the value for this element's videoWatchCount attribute.
| Name | Type | Description |
|---|---|---|
| $value | int | The desired value for this attribute. |
| Type | Description |
|---|---|
| \Zend_Gdata_YouTube_Extension_Statistics | The element being modified. |

setViewCount(
int $value
)
:
\Zend_Gdata_YouTube_Extension_StatisticsSet the value for this element's viewCount attribute.
| Name | Type | Description |
|---|---|---|
| $value | int | The desired value for this attribute. |
| Type | Description |
|---|---|
| \Zend_Gdata_YouTube_Extension_Statistics | The element being modified. |

takeAttributeFromDOM(
\DOMNode $attribute
)
:
voidGiven a DOMNode representing an attribute, tries to map the data into instance members. If no mapping is defined, the name and valueare stored in an array.
TODO: Convert attributes to proper types
| Name | Type | Description |
|---|---|---|
| $attribute | \DOMNode | The DOMNode attribute needed to be handled |