Exemplo n.º 1
0
 /**
  * Constructs a new \ZendGData\Docs\Extension\ACLScope object.
  *
  * @param string $type The type of entity to share with
  * @param string $value the entity to share with (usually email address)
  */
 public function __construct($type = null, $value = null)
 {
     $this->registerAllNamespaces(\ZendGData\Docs::$namespaces);
     parent::__construct();
     $this->_type = $type;
     $this->_value = $value;
 }
Exemplo n.º 2
0
 /**
  * @param string $value (optional) The text content of the element.
  * @param string $name (optional)
  */
 public function __construct($value = null, $name = null)
 {
     $this->registerAllNamespaces(Analytics::$namespaces);
     parent::__construct();
     $this->_value = $value;
     $this->_name = $name;
 }
Exemplo n.º 3
0
 /**
  * Constructs a new ZendGData\GApps\Extension\Name object.
  *
  * @param string $familyName (optional) The familyName to be set for this
  *          object.
  * @param string $givenName (optional) The givenName to be set for this
  *          object.
  */
 public function __construct($familyName = null, $givenName = null)
 {
     $this->registerAllNamespaces(\ZendGData\GApps::$namespaces);
     parent::__construct();
     $this->_familyName = $familyName;
     $this->_givenName = $givenName;
 }
Exemplo n.º 4
0
 /**
  * Constructs a MediaTitle element
  *
  * @param string $text
  * @param string $type
  */
 public function __construct($text = null, $type = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_type = $type;
     $this->_text = $text;
 }
Exemplo n.º 5
0
 public function __construct($id = null, $href = null, $when = null)
 {
     parent::__construct();
     $this->_id = $id;
     $this->_href = $href;
     $this->_when = $when;
 }
Exemplo n.º 6
0
 /**
  * Constructs a new ZendGData\Extension\RecurrenceException object.
  * @param bool $specialized (optional) Whether this is a specialized exception or not.
  * @param \ZendGData\EntryLink (optional) An Event entry with details about the exception.
  * @param \ZendGData\OriginalEvent (optional) The origianl recurrent event this is an exeption to.
  */
 public function __construct($specialized = null, $entryLink = null, $originalEvent = null)
 {
     parent::__construct();
     $this->_specialized = $specialized;
     $this->_entryLink = $entryLink;
     $this->_originalEvent = $originalEvent;
 }
Exemplo n.º 7
0
 /**
  * Constructs a new ZendGData\Spreadsheets\Extension\Custom object.
  * @param string $column (optional) The column/tag name of the element.
  * @param string $value (optional) The text content of the element.
  */
 public function __construct($column = null, $value = null)
 {
     $this->registerAllNamespaces(\ZendGData\Spreadsheets::$namespaces);
     parent::__construct();
     $this->_text = $value;
     $this->_rootElement = $column;
 }
Exemplo n.º 8
0
 public function __construct($href = null, $rel = null, $readOnly = null, $entry = null)
 {
     parent::__construct();
     $this->_href = $href;
     $this->_readOnly = $readOnly;
     $this->_rel = $rel;
     $this->_entry = $entry;
 }
Exemplo n.º 9
0
 /**
  * Constructs a new MediaRating element
  *
  * @param string $text
  * @param string $scheme
  * @param string $country
  */
 public function __construct($text = null, $scheme = null, $country = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_scheme = $scheme;
     $this->_country = $country;
     $this->_text = $text;
 }
Exemplo n.º 10
0
 /**
  * Constructor for ZendGData\Books\Extension\Review which
  * User-provided review
  *
  * @param string|null $lang Review language.
  * @param string|null $type Type of text construct (typically text, html,
  *        or xhtml).
  * @param string|null $value Text content of the review.
  */
 public function __construct($lang = null, $type = null, $value = null)
 {
     $this->registerAllNamespaces(\ZendGData\Books::$namespaces);
     parent::__construct();
     $this->_lang = $lang;
     $this->_type = $type;
     $this->_text = $value;
 }
Exemplo n.º 11
0
 /**
  * Constructs a new MediaPlayer element
  *
  * @param string $url
  * @param int $width
  * @param int $height
  */
 public function __construct($url = null, $width = null, $height = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_url = $url;
     $this->_width = $width;
     $this->_height = $height;
 }
Exemplo n.º 12
0
 public function __construct($startTime = null, $endTime = null, $valueString = null, $reminders = null)
 {
     parent::__construct();
     $this->_startTime = $startTime;
     $this->_endTime = $endTime;
     $this->_valueString = $valueString;
     $this->_reminders = $reminders;
 }
Exemplo n.º 13
0
 public function __construct($valueString = null, $label = null, $rel = null, $entryLink = null)
 {
     parent::__construct();
     $this->_valueString = $valueString;
     $this->_label = $label;
     $this->_rel = $rel;
     $this->_entryLink = $entryLink;
 }
Exemplo n.º 14
0
 /**
  * Constructs a new ZendGData\Extension\Rating object.
  *
  * @param integer $average (optional) Average rating.
  * @param integer $min (optional) Minimum rating.
  * @param integer $max (optional) Maximum rating.
  * @param integer $numRaters (optional) Number of raters.
  * @param integer $value (optional) The value of the rating.
  */
 public function __construct($average = null, $min = null, $max = null, $numRaters = null, $value = null)
 {
     parent::__construct();
     $this->_average = $average;
     $this->_min = $min;
     $this->_max = $max;
     $this->_numRaters = $numRaters;
     $this->_value = $value;
 }
Exemplo n.º 15
0
 public function __construct($absoluteTime = null, $method = null, $days = null, $hours = null, $minutes = null)
 {
     parent::__construct();
     $this->_absoluteTime = $absoluteTime;
     $this->_method = $method;
     $this->_days = $days;
     $this->_hours = $hours;
     $this->_minutes = $minutes;
 }
Exemplo n.º 16
0
 /**
  * Constructs a new ZendGData\YouTube\Extension\State object.
  *
  * @param string $explanation(optional) The explanation of this state
  * @param string $name(optional) The name value
  * @param string $reasonCode(optional) The reasonCode value
  * @param string $helpUrl(optional) The helpUrl value
  */
 public function __construct($explanation = null, $name = null, $reasonCode = null, $helpUrl = null)
 {
     $this->registerAllNamespaces(\ZendGData\YouTube::$namespaces);
     parent::__construct();
     $this->_text = $explanation;
     $this->_name = $name;
     $this->_reasonCode = $reasonCode;
     $this->_helpUrl = $reasonCode;
 }
Exemplo n.º 17
0
 /**
  * Creates an individual MediaCredit object.
  *
  * @param string $text
  * @param string $role
  * @param string $scheme
  */
 public function __construct($text = null, $role = null, $scheme = null, $yttype = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_text = $text;
     $this->_role = $role;
     $this->_scheme = $scheme;
     $this->_yttype = $yttype;
 }
Exemplo n.º 18
0
 public function __construct($href = null, $rel = null, $countHint = null, $readOnly = null, $feed = null)
 {
     parent::__construct();
     $this->_countHint = $countHint;
     $this->_href = $href;
     $this->_readOnly = $readOnly;
     $this->_rel = $rel;
     $this->_feed = $feed;
 }
Exemplo n.º 19
0
 /**
  * Constructs a new ZendGData\Spreadsheets\Extension\Cell element.
  *
  * @param string $text (optional) Text contents of the element.
  * @param string $row (optional) Row attribute of the element.
  * @param string $col (optional) Column attribute of the element.
  * @param string $inputValue (optional) Input value attribute of the element.
  * @param string $numericValue (optional) Numeric value attribute of the element.
  */
 public function __construct($text = null, $row = null, $col = null, $inputValue = null, $numericValue = null)
 {
     $this->registerAllNamespaces(\ZendGData\Spreadsheets::$namespaces);
     parent::__construct();
     $this->_text = $text;
     $this->_row = $row;
     $this->_col = $col;
     $this->_inputValue = $inputValue;
     $this->_numericValue = $numericValue;
 }
Exemplo n.º 20
0
 /**
  * Constructs a new ZendGData\Extension\Who object.
  * @param string $email (optional) Email address.
  * @param string $rel (optional) Relationship description.
  * @param string $valueString (optional) Simple string describing this person.
  * @param \ZendGData\Extension\AttendeeStatus $attendeeStatus (optional) The status of the attendee.
  * @param \ZendGData\Extension\AttendeeType $attendeeType (optional) The type of the attendee.
  * @param string $entryLink URL pointing to an associated entry (Contact kind) describing this person.
  */
 public function __construct($email = null, $rel = null, $valueString = null, $attendeeStatus = null, $attendeeType = null, $entryLink = null)
 {
     parent::__construct();
     $this->_email = $email;
     $this->_rel = $rel;
     $this->_valueString = $valueString;
     $this->_attendeeStatus = $attendeeStatus;
     $this->_attendeeType = $attendeeType;
     $this->_entryLink = $entryLink;
 }
Exemplo n.º 21
0
 /**
  * Constructs a new MediaText element
  *
  * @param $text string
  * @param $type string
  * @param $lang string
  * @param $start string
  * @param $end string
  */
 public function __construct($text = null, $type = null, $lang = null, $start = null, $end = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_text = $text;
     $this->_type = $type;
     $this->_lang = $lang;
     $this->_start = $start;
     $this->_end = $end;
 }
Exemplo n.º 22
0
 /**
  * Constructs a new ZendGData\YouTube\Extension\Statistics object.
  * @param string $viewCount(optional) The viewCount value
  * @param string $videoWatchCount(optional) The videoWatchCount value
  * @param string $subscriberCount(optional) The subscriberCount value
  * @param string $lastWebAccess(optional) The lastWebAccess value
  * @param string $favoriteCount(optional) The favoriteCount value
  */
 public function __construct($viewCount = null, $videoWatchCount = null, $subscriberCount = null, $lastWebAccess = null, $favoriteCount = null)
 {
     $this->registerAllNamespaces(\ZendGData\YouTube::$namespaces);
     parent::__construct();
     $this->_viewCount = $viewCount;
     $this->_videoWatchCount = $videoWatchCount;
     $this->_subscriberCount = $subscriberCount;
     $this->_lastWebAccess = $lastWebAccess;
     $this->_favoriteCount = $favoriteCount;
 }
Exemplo n.º 23
0
 /**
  * Constructs a new ZendGData\Geo\Extension\GmlPos object.
  *
  * @param string $text (optional) The value to use for this element.
  */
 public function __construct($text = null)
 {
     $this->registerAllNamespaces(\ZendGData\Geo::$namespaces);
     parent::__construct();
     $this->setText($text);
 }
Exemplo n.º 24
0
 public function __construct($text = null)
 {
     $this->registerAllNamespaces(\ZendGData\YouTube::$namespaces);
     parent::__construct();
     $this->_text = $text;
 }
Exemplo n.º 25
0
 /**
  * Constructor for ZendGData\DublinCore\Extension\Title which
  * Name given to the resource
  *
  * @param DOMElement $element (optional) DOMElement from which this
  *          object should be constructed.
  */
 public function __construct($value = null)
 {
     $this->registerAllNamespaces(\ZendGData\DublinCore::$namespaces);
     parent::__construct();
     $this->_text = $value;
 }
Exemplo n.º 26
0
 /**
  * Constructs a new ZendGData\Calendar\Extension\Color object.
  * @param string $value (optional) The text content of the element.
  */
 public function __construct($value = null)
 {
     $this->registerAllNamespaces(\ZendGData\Calendar::$namespaces);
     parent::__construct();
     $this->_value = $value;
 }
Exemplo n.º 27
0
 public function __construct($value = null)
 {
     parent::__construct();
     $this->_value = $value;
 }
Exemplo n.º 28
0
 /**
  * Creates an individual MediaGroup object.
  */
 public function __construct($element = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct($element);
 }
Exemplo n.º 29
0
 public function __construct($text = null)
 {
     parent::__construct();
     $this->_text = $text;
 }
Exemplo n.º 30
0
 /**
  * Creates an individual MediaContent object.
  */
 public function __construct($url = null, $fileSize = null, $type = null, $medium = null, $isDefault = null, $expression = null, $bitrate = null, $framerate = null, $samplingrate = null, $channels = null, $duration = null, $height = null, $width = null, $lang = null)
 {
     $this->registerAllNamespaces(\ZendGData\Media::$namespaces);
     parent::__construct();
     $this->_url = $url;
     $this->_fileSize = $fileSize;
     $this->_type = $type;
     $this->_medium = $medium;
     $this->_isDefault = $isDefault;
     $this->_expression = $expression;
     $this->_bitrate = $bitrate;
     $this->_framerate = $framerate;
     $this->_samplingrate = $samplingrate;
     $this->_channels = $channels;
     $this->_duration = $duration;
     $this->_height = $height;
     $this->_width = $width;
     $this->_lang = $lang;
 }