Documentation

IPropertyType extends IEnum

Defines an enumeration of property data types.

Table of Contents

TBOOLEAN A boolean 'bool'
TINTEGER An integer 'int'
TFLOAT A decimal 'float'
TSTRING A string 'string'
TENUM An enum. 'enum'
TRTENUM A runtime enum instance. 'rtenum'
TARRAY An array property 'array'
TSET A set Column must use a class implementing the ISet interface 'set'
TDATE A date 'date'
TMONEY Currency. 'money'
TMODEL A property backed by some IModel instance 'model'
TOBJECT A property that only accepts instances of a specified object type 'object'

Constants

TENUM

An enum.

public mixed $TENUM = 'enum'
Column must use class implementing the IEnum interface

TRTENUM

A runtime enum instance.

public mixed $TRTENUM = 'rtenum'
Enum members are configured via the "config" property and is backed by a RuntimeEnum instance.

TSET

A set Column must use a class implementing the ISet interface

public mixed $TSET = 'set'

TMONEY

Currency.

public mixed $TMONEY = 'money'
Column must use a class implementing the IMoney interface

TOBJECT

A property that only accepts instances of a specified object type

public mixed $TOBJECT = 'object'

Search results