Template extends AbstractEntity
Template
Tags
Table of Contents
| DEFAULT_TEMPLATE_CODE | 初期テンプレートコード | 'default' | 
|---|---|---|
| $id | int | |
| $code | string | |
| $name | string | |
| $create_date | DateTime | |
| $update_date | DateTime | |
| $DeviceType | DeviceType | |
| $AnnotationReader | ||
| isDefaultTemplate() | bool | |
| __toString() | string | |
| getId() | Get id. | int | 
| setCode() | Set code. | Template | 
| getCode() | Get code. | string | 
| setName() | Set name. | Template | 
| getName() | Get name. | string | 
| setCreateDate() | Set createDate. | Template | 
| getCreateDate() | Get createDate. | DateTime | 
| setUpdateDate() | Set updateDate. | Template | 
| getUpdateDate() | Get updateDate. | DateTime | 
| setDeviceType() | Set deviceType. | Template | 
| getDeviceType() | Get deviceType. | DeviceType|null | 
| offsetExists() | mixed | |
| offsetSet() | mixed | |
| offsetGet() | mixed | |
| offsetUnset() | mixed | |
| setPropertiesFromArray() | 引数の連想配列を元にプロパティを設定します. | mixed | 
| toArray() | Convert to associative array. | array | 
| toNormalizedArray() | Convert to associative array, and normalize to association properties. | array | 
| toJSON() | Convert to JSON. | string | 
| toXML() | Convert to XML. | string | 
| copyProperties() | コピー元のオブジェクトのフィールド名を指定して、同名のフィールドに値をコピー | AbstractEntity | 
| setAnnotationReader() | Set AnnotationReader. | AbstractEntity | 
| getAnnotationReader() | Get AnnotationReader. | Reader | 
| getEntityIdentifierAsArray() | Convert to Entity of Identity value to associative array. | array | 
Constants
DEFAULT_TEMPLATE_CODE
初期テンプレートコード
        public
        mixed
        $DEFAULT_TEMPLATE_CODE
        = 'default'
    
            
Properties
$id
        private
                int
        $id
            
                Tags
$code
        private
                string
        $code
            
                Tags
$name
        private
                string
        $name
            
                Tags
$create_date
        private
                DateTime
        $create_date
            
                Tags
$update_date
        private
                DateTime
        $update_date
            
                Tags
$DeviceType
        private
                DeviceType
        $DeviceType
            
                Tags
$AnnotationReader
        private
                mixed
        $AnnotationReader
            
            
Methods
isDefaultTemplate()
        public
                                isDefaultTemplate(
                )
        : bool
    
    
    
        
            Return values
bool__toString()
        public
                                __toString(
                )
        : string
    
    
    
        
            Return values
stringgetId()
Get id.
        public
                                getId(
                )
        : int
    
    
    
        
            Return values
intsetCode()
Set code.
        public
                                setCode(
                    
                            $code :
                string
                            
                )
        : Template
    
    
            Parameters
- $code : string
 
Return values
TemplategetCode()
Get code.
        public
                                getCode(
                )
        : string
    
    
    
        
            Return values
stringsetName()
Set name.
        public
                                setName(
                    
                            $name :
                string
                            
                )
        : Template
    
    
            Parameters
- $name : string
 
Return values
TemplategetName()
Get name.
        public
                                getName(
                )
        : string
    
    
    
        
            Return values
stringsetCreateDate()
Set createDate.
        public
                                setCreateDate(
                    
                            $createDate :
                DateTime
                            
                )
        : Template
    
    
            Parameters
- $createDate : DateTime
 
Return values
TemplategetCreateDate()
Get createDate.
        public
                                getCreateDate(
                )
        : DateTime
    
    
    
        
            Return values
DateTimesetUpdateDate()
Set updateDate.
        public
                                setUpdateDate(
                    
                            $updateDate :
                DateTime
                            
                )
        : Template
    
    
            Parameters
- $updateDate : DateTime
 
Return values
TemplategetUpdateDate()
Get updateDate.
        public
                                getUpdateDate(
                )
        : DateTime
    
    
    
        
            Return values
DateTimesetDeviceType()
Set deviceType.
        public
                                setDeviceType(
                    
            [                $deviceType :
                DeviceType|null
                 = null ]            
                )
        : Template
    
    
            Parameters
- $deviceType : DeviceType|null = null
 
Return values
TemplategetDeviceType()
Get deviceType.
        public
                                getDeviceType(
                )
        : DeviceType|null
    
    
    
        
            Return values
DeviceType|nulloffsetExists()
        public
                                offsetExists(
                    
                            $offset :
                mixed
                            
                )
        : mixed
    
    
            Parameters
- $offset : mixed
 
Return values
mixedoffsetSet()
        public
                                offsetSet(
                    
                            $offset :
                mixed
                            
                    
            ,                 $value :
                mixed
                            
                )
        : mixed
    
    
            Parameters
- $offset : mixed
 - $value : mixed
 
Return values
mixedoffsetGet()
        public
                                offsetGet(
                    
                            $offset :
                mixed
                            
                )
        : mixed
    
    
            Parameters
- $offset : mixed
 
Return values
mixedoffsetUnset()
        public
                                offsetUnset(
                    
                            $offset :
                mixed
                            
                )
        : mixed
    
    
            Parameters
- $offset : mixed
 
Return values
mixedsetPropertiesFromArray()
引数の連想配列を元にプロパティを設定します.
        public
                                setPropertiesFromArray(
                    
                            $arrProps :
                array
                            
                    
            [,                 $excludeAttribute :
                string[]
                 = [] ]            
                    
            [,                 $parentClass :
                ReflectionClass
                 = null ]            
                )
        : mixed
    
        DBから取り出した連想配列を, プロパティへ設定する際に使用します.
Parameters
- $arrProps : array
 プロパティの情報を格納した連想配列
- $excludeAttribute : string[] = []
 除外したいフィールド名の配列
- $parentClass : ReflectionClass = null
 親のクラス. 本メソッドの内部的に使用します.
Return values
mixedtoArray()
Convert to associative array.
        public
                                toArray(
                    
            [                $excludeAttribute :
                array
                 = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader'] ]            
                    
            [,                 $parentClass :
                ReflectionClass
                 = null ]            
                )
        : array
    
        Symfony Serializer Component is expensive, and hard to implementation. Use for encoder only.
Parameters
- $excludeAttribute : array = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader']
 Array of field names to exclusion.
- $parentClass : ReflectionClass = null
 parent class. Use internally of this method..
Return values
arraytoNormalizedArray()
Convert to associative array, and normalize to association properties.
        public
                                toNormalizedArray(
                    
            [                $excludeAttribute :
                array
                 = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader'] ]            
                )
        : array
    
        The type conversion such as:
- Datetime :: W3C datetime format string
 - AbstractEntity :: associative array such as [id => value]
 - PersistentCollection :: associative array of [[id => value], [id => value], ...]
 
Parameters
- $excludeAttribute : array = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader']
 Array of field names to exclusion.
Return values
arraytoJSON()
Convert to JSON.
        public
                                toJSON(
                    
            [                $excludeAttribute :
                array
                 = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader'] ]            
                )
        : string
    
    
            Parameters
- $excludeAttribute : array = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader']
 Array of field names to exclusion.
Return values
stringtoXML()
Convert to XML.
        public
                                toXML(
                    
            [                $excludeAttribute :
                array
                 = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader'] ]            
                )
        : string
    
    
            Parameters
- $excludeAttribute : array = ['__initializer__', '__cloner__', '__isInitialized__', 'AnnotationReader']
 Array of field names to exclusion.
Return values
stringcopyProperties()
コピー元のオブジェクトのフィールド名を指定して、同名のフィールドに値をコピー
        public
                                copyProperties(
                    
                            $srcObject :
                object
                            
                    
            [,                 $excludeAttribute :
                string[]
                 = [] ]            
                )
        : AbstractEntity
    
    
            Parameters
- $srcObject : object
 コピー元のオブジェクト
- $excludeAttribute : string[] = []
 除外したいフィールド名の配列
Return values
AbstractEntitysetAnnotationReader()
Set AnnotationReader.
        public
                                setAnnotationReader(
                    
                            $Reader :
                Reader
                            
                )
        : AbstractEntity
    
    
            Parameters
- $Reader : Reader
 
Return values
AbstractEntitygetAnnotationReader()
Get AnnotationReader.
        public
                                getAnnotationReader(
                )
        : Reader
    
    
    
        
            Return values
ReadergetEntityIdentifierAsArray()
Convert to Entity of Identity value to associative array.
        public
                                getEntityIdentifierAsArray(
                    
                            $Entity :
                AbstractEntity
                            
                )
        : array
    
    
            Parameters
- $Entity : AbstractEntity
 
Return values
array —associative array of [[id => value], [id => value], ...]