PHP 클래스 eZ\Publish\Core\Base\Container\ApiLoader\FieldTypeNameableCollectionFactory

상속: implements Symfony\Component\DependencyInjection\ContainerAwareInterface, use trait Symfony\Component\DependencyInjection\ContainerAwareTrait
파일 보기 프로젝트 열기: ezsystems/ezpublish-kernel 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$nameableFieldTypeClosures Closure[] Collection of fieldTypes, lazy loaded via a closure.

공개 메소드들

메소드 설명
getNameableFieldTypes ( ) : Closure[] Returns registered field types (as closures to be lazy loaded in the public API).
registerNameableFieldType ( string $nameableFieldTypeServiceId, string $fieldTypeAlias ) Registers an eZ Publish field type.
registerNonNameableFieldType ( $fieldTypeServiceId, string $fieldTypeAlias ) Registers an eZ Publish field type.

메소드 상세

getNameableFieldTypes() 공개 메소드

Returns registered field types (as closures to be lazy loaded in the public API).
public getNameableFieldTypes ( ) : Closure[]
리턴 Closure[]

registerNameableFieldType() 공개 메소드

Field types are being registered as a closure so that they will be lazy loaded.
public registerNameableFieldType ( string $nameableFieldTypeServiceId, string $fieldTypeAlias )
$nameableFieldTypeServiceId string The field type nameable service Id
$fieldTypeAlias string The field type alias (e.g. "ezstring")

registerNonNameableFieldType() 공개 메소드

Field types are being registered as a closure so that they will be lazy loaded.
public registerNonNameableFieldType ( $fieldTypeServiceId, string $fieldTypeAlias )
$fieldTypeAlias string The field type alias (e.g. "ezstring")

프로퍼티 상세

$nameableFieldTypeClosures 보호되어 있는 프로퍼티

Collection of fieldTypes, lazy loaded via a closure.
protected Closure[] $nameableFieldTypeClosures
리턴 Closure[]