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


PHP TagPeer::tagInstancesForObject方法代碼示例

本文整理匯總了PHP中TagPeer::tagInstancesForObject方法的典型用法代碼示例。如果您正苦於以下問題:PHP TagPeer::tagInstancesForObject方法的具體用法?PHP TagPeer::tagInstancesForObject怎麽用?PHP TagPeer::tagInstancesForObject使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在TagPeer的用法示例。


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

示例1: getConsolidatedKeywords

 public function getConsolidatedKeywords($sLanguageId = null, $bReturnArray = false)
 {
     if ($sLanguageId == null) {
         $sLanguageId = Session::language();
     }
     $aKeywords = array();
     $aKeywords[] = TranslationPeer::getString('meta.keywords', null, '');
     $aTags = TagPeer::tagInstancesForObject($this);
     foreach ($aTags as $iKey => $oTag) {
         $aTags[$iKey] = $oTag->getTag()->getName();
     }
     $aKeywords[] = $aTags;
     $aKeywords[] = Settings::getSetting('frontend', 'keywords', '');
     $aKeywords[] = $this->getActivePageString()->getMetaKeywords();
     $aResult = array();
     foreach ($aKeywords as $iKey => $mKeywords) {
         if (!is_array($mKeywords)) {
             $mKeywords = explode(',', $mKeywords);
         }
         foreach ($mKeywords as $sKeyword) {
             $sKeyword = trim($sKeyword);
             if (!isset($aResult[$sKeyword]) && $sKeyword !== '') {
                 $aResult[$sKeyword] = true;
             }
         }
     }
     if ($bReturnArray) {
         return array_keys($aResult);
     }
     return implode(', ', array_keys($aResult));
 }
開發者ID:rapila,項目名稱:cms-base,代碼行數:31,代碼來源:Page.php

示例2: getTags

 /**
  * @return A list of TagInstances (not Tags) which reference this JournalEntry
  */
 public function getTags()
 {
     return TagPeer::tagInstancesForObject($this);
 }
開發者ID:rapila,項目名稱:plugin-journal,代碼行數:7,代碼來源:BaseJournalEntry.php

示例3: fillFromRssAttributes

 public function fillFromRssAttributes($aAttributes)
 {
     if (isset($aAttributes['categories'])) {
         $aTags = $aAttributes['categories'];
         $aTagInstances = TagPeer::tagInstancesForObject($this);
         $aOldTags = array();
         foreach ($aTagInstances as $oTagInstance) {
             if (!in_array($oTagInstance->getTagName(), $aTags)) {
                 $oTagInstance->delete();
             } else {
                 $aOldTags[] = $oTagInstance->getTagName();
             }
         }
         foreach ($aTags as $sTagName) {
             if (!in_array($sTagName, $aOldTags)) {
                 TagInstancePeer::newTagInstanceForObject($sTagName, $this);
             }
         }
     }
     $this->setText($aAttributes['description']);
     $this->setTitle($aAttributes['title']);
 }
開發者ID:rapila,項目名稱:plugin-journal,代碼行數:22,代碼來源:JournalEntry.php


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