eZ\Publish\Core\Persistence\Legacy\Content\Type\Handler::loadByIdentifier PHP Метод

loadByIdentifier() публичный Метод

Note: This method is responsible of having the Field Definitions of the loaded ContentType sorted by placement.
public loadByIdentifier ( string $identifier ) : eZ\Publish\SPI\Persistence\Content\Type
$identifier string
Результат eZ\Publish\SPI\Persistence\Content\Type
    public function loadByIdentifier($identifier)
    {
        $rows = $this->contentTypeGateway->loadTypeDataByIdentifier($identifier, Type::STATUS_DEFINED);
        return $this->loadFromRows($rows, $identifier, Type::STATUS_DEFINED);
    }