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


PHP AbstractModel::getIdFieldName方法代码示例

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


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

示例1: _beforeSave

 /**
  * Process role before saving
  *
  * @param \Magento\Framework\Model\AbstractModel $role
  * @return $this
  */
 protected function _beforeSave(\Magento\Framework\Model\AbstractModel $role)
 {
     if (!$role->getId()) {
         $role->setCreated($this->dateTime->formatDate(true));
     }
     $role->setModified($this->dateTime->formatDate(true));
     if ($role->getId() == '') {
         if ($role->getIdFieldName()) {
             $role->unsetData($role->getIdFieldName());
         } else {
             $role->unsetData('id');
         }
     }
     if (!$role->getTreeLevel()) {
         if ($role->getPid() > 0) {
             $select = $this->getConnection()->select()->from($this->getMainTable(), ['tree_level'])->where("{$this->getIdFieldName()} = :pid");
             $binds = ['pid' => (int) $role->getPid()];
             $treeLevel = $this->getConnection()->fetchOne($select, $binds);
         } else {
             $treeLevel = 0;
         }
         $role->setTreeLevel($treeLevel + 1);
     }
     if ($role->getName()) {
         $role->setRoleName($role->getName());
     }
     return $this;
 }
开发者ID:whoople,项目名称:magento2-testing,代码行数:34,代码来源:Role.php

示例2: _getColumnsForEntityLoad

 /**
  * Prepare the list of entity fields that should be selected from DB. Apply filtration based on active fieldset.
  *
  * @param \Magento\Framework\Model\AbstractModel $object
  * @param string $tableName
  * @return array|string
  */
 protected function _getColumnsForEntityLoad(\Magento\Framework\Model\AbstractModel $object, $tableName)
 {
     $fieldsetColumns = $object->getFieldset();
     if (!empty($fieldsetColumns)) {
         $connection = $this->getConnection();
         if ($connection instanceof \Magento\Framework\DB\Adapter\AdapterInterface) {
             $entityTableColumns = $connection->describeTable($tableName);
             $columns = array_intersect($fieldsetColumns, array_keys($entityTableColumns));
         }
     }
     if (empty($columns)) {
         /** In case when fieldset was specified but no columns were matched with it, ID column is returned. */
         $columns = empty($fieldsetColumns) ? '*' : [$object->getIdFieldName()];
     }
     return $columns;
 }
开发者ID:pradeep-wagento,项目名称:magento2,代码行数:23,代码来源:AbstractResource.php

示例3: testSetGetIdFieldName

 public function testSetGetIdFieldName()
 {
     $name = 'entity_id_custom';
     $this->model->setIdFieldName($name);
     $this->assertEquals($name, $this->model->getIdFieldName());
 }
开发者ID:vasiljok,项目名称:magento2,代码行数:6,代码来源:AbstractModelTest.php


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