本文整理汇总了PHP中Magento\Framework\Model\AbstractModel::getPath方法的典型用法代码示例。如果您正苦于以下问题:PHP AbstractModel::getPath方法的具体用法?PHP AbstractModel::getPath怎么用?PHP AbstractModel::getPath使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Magento\Framework\Model\AbstractModel
的用法示例。
在下文中一共展示了AbstractModel::getPath方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _checkUnique
/**
* Validate unique configuration data before save
* Set id to object if exists configuration instead of throw exception
*
* @SuppressWarnings(PHPMD.CamelCaseMethodName)
*
* @param \Magento\Framework\Model\AbstractModel $object The current configuration value being saved
*
* @return $this
*/
protected function _checkUnique(\Magento\Framework\Model\AbstractModel $object)
{
$select = $this->getConnection()->select()->from($this->getMainTable(), [$this->getIdFieldName()])->where('scope = :scope')->where('scope_code = :scope_code')->where('path = :path');
$bind = ['scope' => $object->getScope(), 'scope_code' => $object->getScopeCode(), 'path' => $object->getPath()];
$configId = $this->getConnection()->fetchOne($select, $bind);
if ($configId) {
$object->setId($configId);
}
return $this;
}
示例2: _checkUnique
/**
* Validate unique configuration data before save
* Set id to object if exists configuration instead of throw exception
*
* @param \Magento\Framework\Model\AbstractModel $object
* @return $this
*/
protected function _checkUnique(\Magento\Framework\Model\AbstractModel $object)
{
$select = $this->_getReadAdapter()->select()->from($this->getMainTable(), array($this->getIdFieldName()))->where('scope = :scope')->where('scope_id = :scope_id')->where('path = :path');
$bind = array('scope' => $object->getScope(), 'scope_id' => $object->getScopeId(), 'path' => $object->getPath());
$configId = $this->_getReadAdapter()->fetchOne($select, $bind);
if ($configId) {
$object->setId($configId);
}
return $this;
}
示例3: _afterSave
/**
* after save callback
*
* @param \Magento\Framework\Model\AbstractModel|\Mageplaza\Blog\Model\Category $object
* @return $this
*/
protected function _afterSave(\Magento\Framework\Model\AbstractModel $object)
{
/** @var \Mageplaza\Blog\Model\Category $object */
if (substr($object->getPath(), -1) == '/') {
$object->setPath($object->getPath() . $object->getId());
$this->savePath($object);
}
$this->savePostRelation($object);
return parent::_afterSave($object);
}