当前位置: 首页>>代码示例>>PHP>>正文


PHP ElementHelper::setUniqueUri方法代码示例

本文整理汇总了PHP中ElementHelper::setUniqueUri方法的典型用法代码示例。如果您正苦于以下问题:PHP ElementHelper::setUniqueUri方法的具体用法?PHP ElementHelper::setUniqueUri怎么用?PHP ElementHelper::setUniqueUri使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ElementHelper的用法示例。


在下文中一共展示了ElementHelper::setUniqueUri方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: getUrl

 /**
  * Returns the element's full URL.
  *
  * @return string
  */
 public function getUrl()
 {
     if ($this->uri === null) {
         ElementHelper::setUniqueUri($this);
     }
     return parent::getUrl();
 }
开发者ID:kentonquatman,项目名称:portfolio,代码行数:12,代码来源:BaseEntryRevisionModel.php

示例2: updateElementSlugAndUri

 /**
  * Updates an element’s slug and URI, along with any descendants.
  *
  * @param BaseElementModel $element            The element to update.
  * @param bool             $updateOtherLocales Whether the element’s other locales should also be updated.
  * @param bool             $updateDescendants  Whether the element’s descendants should also be updated.
  * @param bool             $asTask             Whether the element’s slug and URI should be updated via a background task.
  *
  * @return null
  */
 public function updateElementSlugAndUri(BaseElementModel $element, $updateOtherLocales = true, $updateDescendants = true, $asTask = false)
 {
     if ($asTask) {
         craft()->tasks->createTask('UpdateElementSlugsAndUris', null, array('elementId' => $element->id, 'elementType' => $element->getElementType(), 'locale' => $element->locale, 'updateOtherLocales' => $updateOtherLocales, 'updateDescendants' => $updateDescendants));
         return;
     }
     ElementHelper::setUniqueUri($element);
     craft()->db->createCommand()->update('elements_i18n', array('slug' => $element->slug, 'uri' => $element->uri), array('elementId' => $element->id, 'locale' => $element->locale));
     // Delete any caches involving this element
     craft()->templateCache->deleteCachesByElement($element);
     if ($updateOtherLocales) {
         $this->updateElementSlugAndUriInOtherLocales($element);
     }
     if ($updateDescendants) {
         $this->updateDescendantSlugsAndUris($element, $updateOtherLocales);
     }
 }
开发者ID:harish94,项目名称:Craft-Release,代码行数:27,代码来源:ElementsService.php

示例3: updateElementSlugAndUri

 /**
  * Updates an element’s slug and URI, along with any descendants.
  *
  * @param BaseElementModel $element            The element to update.
  * @param bool             $updateOtherLocales Whether the element’s other locales should also be updated.
  * @param bool             $updateDescendants  Whether the element’s descendants should also be updated.
  *
  * @return null
  */
 public function updateElementSlugAndUri(BaseElementModel $element, $updateOtherLocales = true, $updateDescendants = true)
 {
     ElementHelper::setUniqueUri($element);
     craft()->db->createCommand()->update('elements_i18n', array('slug' => $element->slug, 'uri' => $element->uri), array('elementId' => $element->id, 'locale' => $element->locale));
     // Delete any caches involving this element
     craft()->templateCache->deleteCachesByElement($element);
     if ($updateOtherLocales) {
         $this->updateElementSlugAndUriInOtherLocales($element);
     }
     if ($updateDescendants) {
         $this->updateDescendantSlugsAndUris($element);
     }
 }
开发者ID:kant312,项目名称:sop,代码行数:22,代码来源:ElementsService.php


注:本文中的ElementHelper::setUniqueUri方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。