File: /home/p/e/t/petsclubcc/magento/vendor/magento/module-eav/Model/ResourceModel/Entity/Type.php
<?php
/**
* Copyright © 2016 Magento. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Eav\Model\ResourceModel\Entity;
/**
* EAV entity type resource model
*
* @author Magento Core Team <core@magentocommerce.com>
*/
class Type extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb
{
/**
* Resource initialization
*
* @return void
* @codeCoverageIgnore
*/
protected function _construct()
{
$this->_init('eav_entity_type', 'entity_type_id');
}
/**
* Load Entity Type by Code
*
* @param \Magento\Framework\Model\AbstractModel $object
* @param string $code
* @return $this
* @codeCoverageIgnore
*/
public function loadByCode($object, $code)
{
return $this->load($object, $code, 'entity_type_code');
}
/**
* Retrieve additional attribute table name for specified entity type
*
* @param integer $entityTypeId
* @return string
*/
public function getAdditionalAttributeTable($entityTypeId)
{
$connection = $this->getConnection();
$bind = ['entity_type_id' => $entityTypeId];
$select = $connection->select()->from(
$this->getMainTable(),
['additional_attribute_table']
)->where(
'entity_type_id = :entity_type_id'
);
return $connection->fetchOne($select, $bind);
}
}