783 lines
21 KiB
PHP
783 lines
21 KiB
PHP
|
<?php
|
||
|
|
||
|
/**
|
||
|
* 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.
|
||
|
*
|
||
|
* @category Zend
|
||
|
* @package Zend_Gdata
|
||
|
* @subpackage YouTube
|
||
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_Entry
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/Entry.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_Extension_FeedLink
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/Extension/FeedLink.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Description
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Description.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Age
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Age.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Username
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Username.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Books
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Books.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Company
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Company.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Hobbies
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Hobbies.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Hometown
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Hometown.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Location
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Location.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Movies
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Movies.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Music
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Music.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Occupation
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Occupation.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_School
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/School.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Gender
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Gender.php';
|
||
|
|
||
|
/**
|
||
|
* @see Zend_Gdata_YouTube_Extension_Relationship
|
||
|
*/
|
||
|
require_once 'Zend/Gdata/YouTube/Extension/Relationship.php';
|
||
|
|
||
|
/**
|
||
|
* Represents the YouTube video playlist flavor of an Atom entry
|
||
|
*
|
||
|
* @category Zend
|
||
|
* @package Zend_Gdata
|
||
|
* @copyright Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
|
||
|
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||
|
*/
|
||
|
class Zend_Gdata_YouTube_UserProfileEntry extends Zend_Gdata_Entry
|
||
|
{
|
||
|
|
||
|
protected $_entryClassName = 'Zend_Gdata_YouTube_UserProfileEntry';
|
||
|
|
||
|
/**
|
||
|
* Nested feed links
|
||
|
*
|
||
|
* @var array
|
||
|
*/
|
||
|
protected $_feedLink = array();
|
||
|
|
||
|
/**
|
||
|
* The username for this profile entry
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_username = null;
|
||
|
|
||
|
/**
|
||
|
* The description of the user
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_description = null;
|
||
|
|
||
|
/**
|
||
|
* The age of the user
|
||
|
*
|
||
|
* @var int
|
||
|
*/
|
||
|
protected $_age = null;
|
||
|
|
||
|
/**
|
||
|
* Books of interest to the user
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_books = null;
|
||
|
|
||
|
/**
|
||
|
* Company
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_company = null;
|
||
|
|
||
|
/**
|
||
|
* Hobbies
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_hobbies = null;
|
||
|
|
||
|
/**
|
||
|
* Hometown
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_hometown = null;
|
||
|
|
||
|
/**
|
||
|
* Location
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_location = null;
|
||
|
|
||
|
/**
|
||
|
* Movies
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_movies = null;
|
||
|
|
||
|
/**
|
||
|
* Music
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_music = null;
|
||
|
|
||
|
/**
|
||
|
* Occupation
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_occupation = null;
|
||
|
|
||
|
/**
|
||
|
* School
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_school = null;
|
||
|
|
||
|
/**
|
||
|
* Gender
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_gender = null;
|
||
|
|
||
|
/**
|
||
|
* Relationship
|
||
|
*
|
||
|
* @var string
|
||
|
*/
|
||
|
protected $_relationship = null;
|
||
|
|
||
|
/**
|
||
|
* Creates a User Profile entry, representing an individual user
|
||
|
* and their attributes.
|
||
|
*
|
||
|
* @param DOMElement $element (optional) DOMElement from which this
|
||
|
* object should be constructed.
|
||
|
*/
|
||
|
public function __construct($element = null)
|
||
|
{
|
||
|
foreach (Zend_Gdata_YouTube::$namespaces as $nsPrefix => $nsUri) {
|
||
|
$this->registerNamespace($nsPrefix, $nsUri);
|
||
|
}
|
||
|
parent::__construct($element);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Retrieves 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.
|
||
|
*
|
||
|
* @param DOMDocument $doc The DOMDocument used to construct DOMElements
|
||
|
* @return DOMElement The DOMElement representing this element and all
|
||
|
* child properties.
|
||
|
*/
|
||
|
public function getDOM($doc = null, $majorVersion = 1, $minorVersion = null)
|
||
|
{
|
||
|
$element = parent::getDOM($doc, $majorVersion, $minorVersion);
|
||
|
if ($this->_description != null) {
|
||
|
$element->appendChild($this->_description->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_age != null) {
|
||
|
$element->appendChild($this->_age->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_username != null) {
|
||
|
$element->appendChild($this->_username->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_books != null) {
|
||
|
$element->appendChild($this->_books->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_company != null) {
|
||
|
$element->appendChild($this->_company->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_hobbies != null) {
|
||
|
$element->appendChild($this->_hobbies->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_hometown != null) {
|
||
|
$element->appendChild($this->_hometown->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_location != null) {
|
||
|
$element->appendChild($this->_location->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_movies != null) {
|
||
|
$element->appendChild($this->_movies->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_music != null) {
|
||
|
$element->appendChild($this->_music->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_occupation != null) {
|
||
|
$element->appendChild($this->_occupation->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_school != null) {
|
||
|
$element->appendChild($this->_school->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_gender != null) {
|
||
|
$element->appendChild($this->_gender->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_relationship != null) {
|
||
|
$element->appendChild($this->_relationship->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
if ($this->_feedLink != null) {
|
||
|
foreach ($this->_feedLink as $feedLink) {
|
||
|
$element->appendChild($feedLink->getDOM($element->ownerDocument));
|
||
|
}
|
||
|
}
|
||
|
return $element;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Creates individual Entry objects of the appropriate type and
|
||
|
* stores them in the $_entry array based upon DOM data.
|
||
|
*
|
||
|
* @param DOMNode $child The DOMNode to process
|
||
|
*/
|
||
|
protected function takeChildFromDOM($child)
|
||
|
{
|
||
|
$absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
|
||
|
switch ($absoluteNodeName) {
|
||
|
case $this->lookupNamespace('yt') . ':' . 'description':
|
||
|
$description = new Zend_Gdata_YouTube_Extension_Description();
|
||
|
$description->transferFromDOM($child);
|
||
|
$this->_description = $description;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'age':
|
||
|
$age = new Zend_Gdata_YouTube_Extension_Age();
|
||
|
$age->transferFromDOM($child);
|
||
|
$this->_age = $age;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'username':
|
||
|
$username = new Zend_Gdata_YouTube_Extension_Username();
|
||
|
$username->transferFromDOM($child);
|
||
|
$this->_username = $username;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'books':
|
||
|
$books = new Zend_Gdata_YouTube_Extension_Books();
|
||
|
$books->transferFromDOM($child);
|
||
|
$this->_books = $books;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'company':
|
||
|
$company = new Zend_Gdata_YouTube_Extension_Company();
|
||
|
$company->transferFromDOM($child);
|
||
|
$this->_company = $company;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'hobbies':
|
||
|
$hobbies = new Zend_Gdata_YouTube_Extension_Hobbies();
|
||
|
$hobbies->transferFromDOM($child);
|
||
|
$this->_hobbies = $hobbies;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'hometown':
|
||
|
$hometown = new Zend_Gdata_YouTube_Extension_Hometown();
|
||
|
$hometown->transferFromDOM($child);
|
||
|
$this->_hometown = $hometown;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'location':
|
||
|
$location = new Zend_Gdata_YouTube_Extension_Location();
|
||
|
$location->transferFromDOM($child);
|
||
|
$this->_location = $location;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'movies':
|
||
|
$movies = new Zend_Gdata_YouTube_Extension_Movies();
|
||
|
$movies->transferFromDOM($child);
|
||
|
$this->_movies = $movies;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'music':
|
||
|
$music = new Zend_Gdata_YouTube_Extension_Music();
|
||
|
$music->transferFromDOM($child);
|
||
|
$this->_music = $music;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'occupation':
|
||
|
$occupation = new Zend_Gdata_YouTube_Extension_Occupation();
|
||
|
$occupation->transferFromDOM($child);
|
||
|
$this->_occupation = $occupation;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'school':
|
||
|
$school = new Zend_Gdata_YouTube_Extension_School();
|
||
|
$school->transferFromDOM($child);
|
||
|
$this->_school = $school;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'gender':
|
||
|
$gender = new Zend_Gdata_YouTube_Extension_Gender();
|
||
|
$gender->transferFromDOM($child);
|
||
|
$this->_gender = $gender;
|
||
|
break;
|
||
|
case $this->lookupNamespace('yt') . ':' . 'relationship':
|
||
|
$relationship = new Zend_Gdata_YouTube_Extension_Relationship();
|
||
|
$relationship->transferFromDOM($child);
|
||
|
$this->_relationship = $relationship;
|
||
|
break;
|
||
|
case $this->lookupNamespace('gd') . ':' . 'feedLink':
|
||
|
$feedLink = new Zend_Gdata_Extension_FeedLink();
|
||
|
$feedLink->transferFromDOM($child);
|
||
|
$this->_feedLink[] = $feedLink;
|
||
|
break;
|
||
|
default:
|
||
|
parent::takeChildFromDOM($child);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the age
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Age $age The age
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setAge($age = null)
|
||
|
{
|
||
|
$this->_age = $age;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the age
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Age The age
|
||
|
*/
|
||
|
public function getAge()
|
||
|
{
|
||
|
return $this->_age;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the username
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Username $username The username
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setUsername($username = null)
|
||
|
{
|
||
|
$this->_username = $username;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the username
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Username The username
|
||
|
*/
|
||
|
public function getUsername()
|
||
|
{
|
||
|
return $this->_username;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the books
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Books $books The books
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setBooks($books = null)
|
||
|
{
|
||
|
$this->_books = $books;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the books
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Books The books
|
||
|
*/
|
||
|
public function getBooks()
|
||
|
{
|
||
|
return $this->_books;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the company
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Company $company The company
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setCompany($company = null)
|
||
|
{
|
||
|
$this->_company = $company;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the company
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Company The company
|
||
|
*/
|
||
|
public function getCompany()
|
||
|
{
|
||
|
return $this->_company;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the hobbies
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Hobbies $hobbies The hobbies
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setHobbies($hobbies = null)
|
||
|
{
|
||
|
$this->_hobbies = $hobbies;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the hobbies
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Hobbies The hobbies
|
||
|
*/
|
||
|
public function getHobbies()
|
||
|
{
|
||
|
return $this->_hobbies;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the hometown
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Hometown $hometown The hometown
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setHometown($hometown = null)
|
||
|
{
|
||
|
$this->_hometown = $hometown;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the hometown
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Hometown The hometown
|
||
|
*/
|
||
|
public function getHometown()
|
||
|
{
|
||
|
return $this->_hometown;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the location
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Location $location The location
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setLocation($location = null)
|
||
|
{
|
||
|
$this->_location = $location;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the location
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Location The location
|
||
|
*/
|
||
|
public function getLocation()
|
||
|
{
|
||
|
return $this->_location;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the movies
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Movies $movies The movies
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setMovies($movies = null)
|
||
|
{
|
||
|
$this->_movies = $movies;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the movies
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Movies The movies
|
||
|
*/
|
||
|
public function getMovies()
|
||
|
{
|
||
|
return $this->_movies;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the music
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Music $music The music
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setMusic($music = null)
|
||
|
{
|
||
|
$this->_music = $music;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the music
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Music The music
|
||
|
*/
|
||
|
public function getMusic()
|
||
|
{
|
||
|
return $this->_music;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the occupation
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Occupation $occupation The occupation
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setOccupation($occupation = null)
|
||
|
{
|
||
|
$this->_occupation = $occupation;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the occupation
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Occupation The occupation
|
||
|
*/
|
||
|
public function getOccupation()
|
||
|
{
|
||
|
return $this->_occupation;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the school
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_School $school The school
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setSchool($school = null)
|
||
|
{
|
||
|
$this->_school = $school;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the school
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_School The school
|
||
|
*/
|
||
|
public function getSchool()
|
||
|
{
|
||
|
return $this->_school;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the gender
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Gender $gender The gender
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setGender($gender = null)
|
||
|
{
|
||
|
$this->_gender = $gender;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the gender
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Gender The gender
|
||
|
*/
|
||
|
public function getGender()
|
||
|
{
|
||
|
return $this->_gender;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the relationship
|
||
|
*
|
||
|
* @param Zend_Gdata_YouTube_Extension_Relationship $relationship The relationship
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setRelationship($relationship = null)
|
||
|
{
|
||
|
$this->_relationship = $relationship;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the relationship
|
||
|
*
|
||
|
* @return Zend_Gdata_YouTube_Extension_Relationship The relationship
|
||
|
*/
|
||
|
public function getRelationship()
|
||
|
{
|
||
|
return $this->_relationship;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Sets the array of embedded feeds related to the video
|
||
|
*
|
||
|
* @param array $feedLink The array of embedded feeds relating to the video
|
||
|
* @return Zend_Gdata_YouTube_UserProfileEntry Provides a fluent interface
|
||
|
*/
|
||
|
public function setFeedLink($feedLink = null)
|
||
|
{
|
||
|
$this->_feedLink = $feedLink;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the feed link property for this entry.
|
||
|
*
|
||
|
* @see setFeedLink
|
||
|
* @param string $rel (optional) The rel value of the link to be found.
|
||
|
* If null, the array of links is returned.
|
||
|
* @return mixed If $rel is specified, a Zend_Gdata_Extension_FeedLink
|
||
|
* object corresponding to the requested rel value is returned
|
||
|
* if found, or null if the requested value is not found. If
|
||
|
* $rel is null or not specified, an array of all available
|
||
|
* feed links for this entry is returned, or null if no feed
|
||
|
* links are set.
|
||
|
*/
|
||
|
public function getFeedLink($rel = null)
|
||
|
{
|
||
|
if ($rel == null) {
|
||
|
return $this->_feedLink;
|
||
|
} else {
|
||
|
foreach ($this->_feedLink as $feedLink) {
|
||
|
if ($feedLink->rel == $rel) {
|
||
|
return $feedLink;
|
||
|
}
|
||
|
}
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL in the gd:feedLink with the provided rel value
|
||
|
*
|
||
|
* @param string $rel The rel value to find
|
||
|
* @return mixed Either the URL as a string or null if a feedLink wasn't
|
||
|
* found with the provided rel value
|
||
|
*/
|
||
|
public function getFeedLinkHref($rel)
|
||
|
{
|
||
|
$feedLink = $this->getFeedLink($rel);
|
||
|
if ($feedLink !== null) {
|
||
|
return $feedLink->href;
|
||
|
} else {
|
||
|
return null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL of the playlist list feed
|
||
|
*
|
||
|
* @return string The URL of the playlist video feed
|
||
|
*/
|
||
|
public function getPlaylistListFeedUrl()
|
||
|
{
|
||
|
return getFeedLinkHref(Zend_Gdata_YouTube::USER_PLAYLISTS_REL);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL of the uploads feed
|
||
|
*
|
||
|
* @return string The URL of the uploads video feed
|
||
|
*/
|
||
|
public function getUploadsFeedUrl()
|
||
|
{
|
||
|
return getFeedLinkHref(Zend_Gdata_YouTube::USER_UPLOADS_REL);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL of the subscriptions feed
|
||
|
*
|
||
|
* @return string The URL of the subscriptions feed
|
||
|
*/
|
||
|
public function getSubscriptionsFeedUrl()
|
||
|
{
|
||
|
return getFeedLinkHref(Zend_Gdata_YouTube::USER_SUBSCRIPTIONS_REL);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL of the contacts feed
|
||
|
*
|
||
|
* @return string The URL of the contacts feed
|
||
|
*/
|
||
|
public function getContactsFeedUrl()
|
||
|
{
|
||
|
return getFeedLinkHref(Zend_Gdata_YouTube::USER_CONTACTS_REL);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Returns the URL of the favorites feed
|
||
|
*
|
||
|
* @return string The URL of the favorites feed
|
||
|
*/
|
||
|
public function getFavoritesFeedUrl()
|
||
|
{
|
||
|
return getFeedLinkHref(Zend_Gdata_YouTube::USER_FAVORITES_REL);
|
||
|
}
|
||
|
|
||
|
}
|