PHP 클래스 Neos\ContentRepository\Migration\Transformations\RenameProperty

상속: extends AbstractTransformation
파일 보기 프로젝트 열기: neos/neos-development-collection

보호된 프로퍼티들

프로퍼티 타입 설명
$newPropertyName string New name of property
$oldPropertyName string Property name to change

공개 메소드들

메소드 설명
execute ( NodeData $node ) : void Renames the configured property to the new name.
isTransformable ( NodeData $node ) : boolean Returns TRUE if the given node has a property with the name to work on and does not yet have a property with the name to rename that property to.
setFrom ( string $oldPropertyName ) : void Sets the name of the property to change.
setTo ( string $newPropertyName ) : void Sets the new name for the property to change.

메소드 상세

execute() 공개 메소드

Renames the configured property to the new name.
public execute ( NodeData $node ) : void
$node Neos\ContentRepository\Domain\Model\NodeData
리턴 void

isTransformable() 공개 메소드

Returns TRUE if the given node has a property with the name to work on and does not yet have a property with the name to rename that property to.
public isTransformable ( NodeData $node ) : boolean
$node Neos\ContentRepository\Domain\Model\NodeData
리턴 boolean

setFrom() 공개 메소드

Sets the name of the property to change.
public setFrom ( string $oldPropertyName ) : void
$oldPropertyName string
리턴 void

setTo() 공개 메소드

Sets the new name for the property to change.
public setTo ( string $newPropertyName ) : void
$newPropertyName string
리턴 void

프로퍼티 상세

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

New name of property
protected string $newPropertyName
리턴 string

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

Property name to change
protected string $oldPropertyName
리턴 string