當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GData\Entry類代碼示例

本文整理匯總了PHP中Zend\GData\Entry的典型用法代碼示例。如果您正苦於以下問題:PHP Entry類的具體用法?PHP Entry怎麽用?PHP Entry使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了Entry類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry 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('exif') . ':' . 'tags':
             $tags = new Extension\Tags();
             $tags->transferFromDOM($child);
             $this->_tags = $tags;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:20,代碼來源:Entry.php

示例2: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry 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('apps') . ':' . 'property':
             $property = new Extension\Property();
             $property->transferFromDOM($child);
             $this->_property[] = $property;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:20,代碼來源:GroupEntry.php

示例3: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry 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('gphoto') . ':' . 'weight':
             $weight = new Extension\Weight();
             $weight->transferFromDOM($child);
             $this->_gphotoWeight = $weight;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:20,代碼來源:TagEntry.php

示例4: takeChildFromDOM

 /**
  * 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('gs') . ':' . 'rowCount':
             $rowCount = new Extension\RowCount();
             $rowCount->transferFromDOM($child);
             $this->_rowCount = $rowCount;
             break;
         case $this->lookupNamespace('gs') . ':' . 'colCount':
             $colCount = new Extension\ColCount();
             $colCount->transferFromDOM($child);
             $this->_colCount = $colCount;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:25,代碼來源:WorksheetEntry.php

示例5: takeChildFromDOM

 /**
  * 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 Extension\Description();
             $description->transferFromDOM($child);
             $this->_description = $description;
             break;
         case $this->lookupNamespace('yt') . ':' . 'countHint':
             $countHint = new Extension\CountHint();
             $countHint->transferFromDOM($child);
             $this->_countHint = $countHint;
             break;
         case $this->lookupNamespace('yt') . ':' . 'playlistId':
             $playlistId = new Extension\PlaylistId();
             $playlistId->transferFromDOM($child);
             $this->_playlistId = $playlistId;
             break;
         case $this->lookupNamespace('gd') . ':' . 'feedLink':
             $feedLink = new \Zend\GData\Extension\FeedLink();
             $feedLink->transferFromDOM($child);
             $this->_feedLink[] = $feedLink;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:alab1001101,項目名稱:zf2,代碼行數:35,代碼來源:PlaylistListEntry.php

示例6: takeChildFromDOM

 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     switch ($absoluteNodeName) {
         case $this->lookupNamespace('gd') . ':' . 'where':
             $where = new \Zend\GData\Extension\Where();
             $where->transferFromDOM($child);
             $this->_where[] = $where;
             break;
         case $this->lookupNamespace('gd') . ':' . 'when':
             $when = new \Zend\GData\Extension\When();
             $when->transferFromDOM($child);
             $this->_when[] = $when;
             break;
         case $this->lookupNamespace('gd') . ':' . 'who':
             $who = new \Zend\GData\Extension\Who();
             $who->transferFromDOM($child);
             $this->_who[] = $who;
             break;
         case $this->lookupNamespace('gd') . ':' . 'recurrence':
             $recurrence = new \Zend\GData\Extension\Recurrence();
             $recurrence->transferFromDOM($child);
             $this->_recurrence = $recurrence;
             break;
         case $this->lookupNamespace('gd') . ':' . 'eventStatus':
             $eventStatus = new \Zend\GData\Extension\EventStatus();
             $eventStatus->transferFromDOM($child);
             $this->_eventStatus = $eventStatus;
             break;
         case $this->lookupNamespace('gd') . ':' . 'comments':
             $comments = new \Zend\GData\Extension\Comments();
             $comments->transferFromDOM($child);
             $this->_comments = $comments;
             break;
         case $this->lookupNamespace('gd') . ':' . 'transparency':
             $transparency = new \Zend\GData\Extension\Transparency();
             $transparency->transferFromDOM($child);
             $this->_transparency = $transparency;
             break;
         case $this->lookupNamespace('gd') . ':' . 'visibility':
             $visiblity = new \Zend\GData\Extension\Visibility();
             $visiblity->transferFromDOM($child);
             $this->_visibility = $visiblity;
             break;
         case $this->lookupNamespace('gd') . ':' . 'recurrenceException':
             $recurrenceException = new \Zend\GData\Extension\RecurrenceException();
             $recurrenceException->transferFromDOM($child);
             $this->_recurrenceException[] = $recurrenceException;
             break;
         case $this->lookupNamespace('gd') . ':' . 'originalEvent':
             $originalEvent = new \Zend\GData\Extension\OriginalEvent();
             $originalEvent->transferFromDOM($child);
             $this->_originalEvent = $originalEvent;
             break;
         case $this->lookupNamespace('gd') . ':' . 'extendedProperty':
             $extProp = new \Zend\GData\Extension\ExtendedProperty();
             $extProp->transferFromDOM($child);
             $this->_extendedProperty[] = $extProp;
             break;
         case $this->lookupNamespace('gd') . ':' . 'entryLink':
             $entryLink = new \Zend\GData\Extension\EntryLink();
             $entryLink->transferFromDOM($child);
             $this->_entryLink = $entryLink;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:navassouza,項目名稱:zf2,代碼行數:69,代碼來源:EventEntry.php

示例7: takeChildFromDOM

 /**
  * 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('gd') . ':' . 'feedLink':
         $feedLink = new \Zend\GData\Extension\FeedLink();
         $feedLink->transferFromDOM($child);
         $this->_feedLink[] = $feedLink;
         break;
     case $this->lookupNamespace('media') . ':' . 'thumbnail':
         $mediaThumbnail = new \Zend\GData\Media\Extension\MediaThumbnail();
         $mediaThumbnail->transferFromDOM($child);
         $this->_mediaThumbnail = $mediaThumbnail;
         break;
     case $this->lookupNamespace('yt') . ':' . 'countHint':
         $countHint = new Extension\CountHint();
         $countHint->transferFromDOM($child);
         $this->_countHint = $countHint;
         break;
     case $this->lookupNamespace('yt') . ':' . 'playlistTitle':
         $playlistTitle = new Extension\PlaylistTitle();
         $playlistTitle->transferFromDOM($child);
         $this->_playlistTitle = $playlistTitle;
         break;
     case $this->lookupNamespace('yt') . ':' . 'playlistId':
         $playlistId = new Extension\PlaylistId();
         $playlistId->transferFromDOM($child);
         $this->_playlistId = $playlistId;
         break;
     case $this->lookupNamespace('yt') . ':' . 'queryString':
         $queryString = new Extension\QueryString();
         $queryString->transferFromDOM($child);
         $this->_queryString = $queryString;
         break;
     case $this->lookupNamespace('yt') . ':' . 'username':
         $username = new Extension\Username();
         $username->transferFromDOM($child);
         $this->_username = $username;
         break;
     default:
         parent::takeChildFromDOM($child);
         break;
     }
 }
開發者ID:niallmccrudden,項目名稱:zf2,代碼行數:50,代碼來源:SubscriptionEntry.php

示例8: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry 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') . ':' . 'videoid':
             $videoId = new Extension\VideoId();
             $videoId->transferFromDOM($child);
             $this->_videoId = $videoId;
             break;
         case $this->lookupNamespace('yt') . ':' . 'username':
             $username = new Extension\Username();
             $username->transferFromDOM($child);
             $this->_username = $username;
             break;
         case $this->lookupNamespace('gd') . ':' . 'rating':
             $rating = new \Zend\GData\Extension\Rating();
             $rating->transferFromDOM($child);
             $this->_rating = $rating;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:30,代碼來源:ActivityEntry.php

示例9: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry based upon DOM data.
  *
  * @param DOMNode $child The DOMNode to process
  */
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     if (strstr($absoluteNodeName, $this->lookupNamespace('g') . ':')) {
         $baseAttribute = new Extension\BaseAttribute();
         $baseAttribute->transferFromDOM($child);
         $this->_baseAttributes[] = $baseAttribute;
     } else {
         parent::takeChildFromDOM($child);
     }
 }
開發者ID:alab1001101,項目名稱:zf2,代碼行數:17,代碼來源:Entry.php

示例10: takeChildFromDOM

    /**
     * Creates individual Entry objects of the appropriate type and
     * stores them as members of this entry 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('gAcl') . ':' . 'role';
                $role = new Extension\ACLRole();
                $role->transferFromDOM($child);
                $this->_role = $role;
                break;
            case $this->lookupNamespace('gAcl') . ':' . 'scope';
                $scope = new Extension\ACLScope();
                $scope->transferFromDOM($child);
                $this->_scope = $scope;
                break;
            default:
                parent::takeChildFromDOM($child);
                break;
        }
    }
開發者ID:rickogden,項目名稱:zf2,代碼行數:26,代碼來源:ACLEntry.php

示例11: __construct

 /**
  * Constructs a new Zend_Gdata_YouTube_CommentEntry object.
  * @param DOMElement $element (optional) The DOMElement on which to
  * base this object.
  */
 public function __construct($element = null)
 {
     $this->registerAllNamespaces(YouTube::$namespaces);
     parent::__construct($element);
 }
開發者ID:rexmac,項目名稱:zf2,代碼行數:10,代碼來源:CommentEntry.php

示例12: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry 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('apps') . ':' . 'login':
             $login = new Extension\Login();
             $login->transferFromDOM($child);
             $this->_login = $login;
             break;
         case $this->lookupNamespace('apps') . ':' . 'nickname':
             $nickname = new Extension\Nickname();
             $nickname->transferFromDOM($child);
             $this->_nickname = $nickname;
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:bradley-holt,項目名稱:zf2,代碼行數:25,代碼來源:NicknameEntry.php

示例13: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry based upon DOM data.
  *
  * @param DOMNode $child The DOMNode to process
  */
 protected function takeChildFromDOM($child)
 {
     $absoluteNodeName = $child->namespaceURI . ':' . $child->localName;
     if (strstr($absoluteNodeName, $this->lookupNamespace('ccr') . ':')) {
         $ccrElement = new Extension\Ccr();
         $ccrElement->transferFromDOM($child);
         $this->_ccrData = $ccrElement;
     } else {
         parent::takeChildFromDOM($child);
     }
 }
開發者ID:heiglandreas,項目名稱:zf2,代碼行數:17,代碼來源:ProfileEntry.php

示例14: takeChildFromDOM

 /**
  * Creates individual Entry objects of the appropriate type and
  * stores them as members of this entry based upon DOM data.
  *
  * @param DOMNode $child The DOMNode to process
  */
 protected function takeChildFromDOM($child)
 {
     parent::takeChildFromDOM($child);
 }
開發者ID:rexmac,項目名稱:zf2,代碼行數:10,代碼來源:ProfileListEntry.php

示例15: takeChildFromDOM

 protected function takeChildFromDOM($child)
 {
     switch ($child->namespaceURI) {
         case $this->lookupNamespace('gsx'):
             $custom = new Extension\Custom($child->localName);
             $custom->transferFromDOM($child);
             $this->addCustom($custom);
             break;
         default:
             parent::takeChildFromDOM($child);
             break;
     }
 }
開發者ID:robertodormepoco,項目名稱:zf2,代碼行數:13,代碼來源:ListEntry.php


注:本文中的Zend\GData\Entry類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。