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


PHP AbstractModel::getUrlKey方法代碼示例

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


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

示例1: _beforeSave

 /**
  * Process group data before saving
  *
  * @param \Magento\Framework\Model\AbstractModel $object
  * @return $this
  * @throws \Magento\Framework\Exception\LocalizedException
  */
 protected function _beforeSave(\Magento\Framework\Model\AbstractModel $object)
 {
     $connection = $this->getConnection();
     $select = $connection->select()->from($this->getTable('ves_brand_group'), 'url_key')->where('url_key = ?', $object->getUrlKey())->where('group_id != ?', $object->getId());
     $result = $connection->fetchCol($select);
     if (count($result) > 0) {
         throw new \Magento\Framework\Exception\LocalizedException(__('URL key already exists.' . count($result)));
     }
     return parent::_beforeSave($object);
 }
開發者ID:vasuscoin,項目名稱:brand,代碼行數:17,代碼來源:Group.php

示例2: getUrlPath

 /**
  * Build category URL path
  *
  * @param \Magento\Catalog\Api\Data\CategoryInterface|\Magento\Framework\Model\AbstractModel $category
  * @return string
  */
 public function getUrlPath($category)
 {
     if ($category->getParentId() == Category::TREE_ROOT_ID) {
         return '';
     }
     $path = $category->getUrlPath();
     if ($path !== null && !$category->dataHasChangedFor('url_key') && !$category->dataHasChangedFor('parent_id')) {
         return $path;
     }
     $path = $category->getUrlKey();
     if ($path === false) {
         return $category->getUrlPath();
     }
     if ($this->isNeedToGenerateUrlPathForParent($category)) {
         $parentPath = $this->getUrlPath($this->categoryRepository->get($category->getParentId()));
         $path = $parentPath === '' ? $path : $parentPath . '/' . $path;
     }
     return $path;
 }
開發者ID:whoople,項目名稱:magento2-testing,代碼行數:25,代碼來源:CategoryUrlPathGenerator.php

示例3: isPostUrlKeyUnique

 protected function isPostUrlKeyUnique(\Magento\Framework\Model\AbstractModel $object)
 {
     $post_id = $this->checkUrlKey($object->getUrlKey());
     return $post_id == $object->getData('post_id') || $post_id == null;
 }
開發者ID:vasuscoin,項目名稱:magento2-blog-module-tutorial,代碼行數:5,代碼來源:Post.php

示例4: _beforeSave

 /**
  * before save callback
  *
  * @param \Magento\Framework\Model\AbstractModel|\Mageplaza\Blog\Model\Topic $object
  * @return $this
  */
 protected function _beforeSave(\Magento\Framework\Model\AbstractModel $object)
 {
     $object->setUpdatedAt($this->date->date());
     if ($object->isObjectNew()) {
         $object->setCreatedAt($this->date->date());
     }
     //Check Url Key
     if ($object->isObjectNew()) {
         $count = 0;
         $objName = $object->getName();
         if ($object->getUrlKey()) {
             $urlKey = $object->getUrlKey();
         } else {
             $urlKey = $this->generateUrlKey($objName, $count);
         }
         while ($this->checkUrlKey($urlKey)) {
             $count++;
             $urlKey = $this->generateUrlKey($urlKey, $count);
         }
         $object->setUrlKey($urlKey);
     } else {
         $objectId = $object->getId();
         $count = 0;
         $objName = $object->getName();
         if ($object->getUrlKey()) {
             $urlKey = $object->getUrlKey();
         } else {
             $urlKey = $this->generateUrlKey($objName, $count);
         }
         while ($this->checkUrlKey($urlKey, $objectId)) {
             $count++;
             $urlKey = $this->generateUrlKey($urlKey, $count);
         }
         $object->setUrlKey($urlKey);
     }
     return parent::_beforeSave($object);
 }
開發者ID:mageplaza,項目名稱:magento-2-blog-extension,代碼行數:43,代碼來源:Topic.php

示例5: checkUrlExits

 public function checkUrlExits(\Magento\Framework\Model\AbstractModel $object)
 {
     $stores = $object->getStores();
     $connection = $this->getConnection();
     $select = $connection->select()->from($this->getTable('ves_brand'), 'brand_id')->where('url_key = ?', $object->getUrlKey())->where('brand_id != ?', $object->getId());
     $brandIds = $connection->fetchCol($select);
     if (count($brandIds) > 0 && is_array($stores)) {
         if (in_array('0', $stores)) {
             throw new \Magento\Framework\Exception\LocalizedException(__('URL key for specified store already exists.'));
         }
         $stores[] = '0';
         $select = $connection->select()->from($this->getTable('ves_brand_store'), 'brand_id')->where('brand_id IN (?)', $brandIds)->where('store_id IN (?)', $stores);
         $result = $connection->fetchCol($select);
         if (count($result) > 0) {
             throw new \Magento\Framework\Exception\LocalizedException(__('URL key for specified store already exists.'));
         }
     }
     return $this;
 }
開發者ID:vasuscoin,項目名稱:brand,代碼行數:19,代碼來源:Brand.php


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