UserAttribute
extends UserAttribute
in package
implements
Proxy
DO NOT EDIT THIS FILE - IT WAS CREATED BY DOCTRINE'S PROXY GENERATOR
Table of Contents
Interfaces
- Proxy
Properties
- $__cloner__ : Closure
- $__initializer__ : Closure
- $__isInitialized__ : bool
- $lazyPropertiesDefaults : array<string|int, mixed>
- $localeCodes : array<string|int, mixed>
- List of locale codes ordered by translation fallback order per Cx instance
- $nestingCount : int
- Counts the nesting level of __call()
- $readAccessId : AccessId
- $stringRepresentationBlank : bool
- Whether blank string representations are valid
- $stringRepresentationFields : array<string|int, mixed>
- List of fields that should be available in the string representation
- $stringRepresentationFormat : string
- Sprintf format for the string representation
- $userAttributeValue : Collection
- $validators : array<string|int, mixed>
- Initialize this array as follows: array( 'columName' => Zend_Validate )
- $virtual : bool
- Defines if an entity is virtual and therefore not persistable.
- $accessId : AccessId
- $accessSpecial : string
- $children : UserAttribute
- $id : int
- $mandatory : string
- $orderId : int
- $parent : Collection
- $sortType : string
- $type : string
- $userAttributeName : Collection
- $userProfile : UserProfile
Methods
- __call() : mixed
- {@inheritDoc}
- __clone() : mixed
- __construct() : mixed
- __get() : mixed
- {@inheritDoc}
- __getCloner() : mixed
- {@inheritDoc}
- __getInitializer() : mixed
- {@inheritDoc}
- __getLazyProperties() : mixed
- {@inheritDoc}
- __isInitialized() : mixed
- {@inheritDoc}
- __load() : mixed
- Forces initialization of the proxy
- __setCloner() : mixed
- {@inheritDoc}
- __setInitialized() : mixed
- {@inheritDoc}
- __setInitializer() : mixed
- {@inheritDoc}
- __sleep() : array<string|int, mixed>
- __toString() : mixed
- {@inheritDoc}
- __wakeup() : mixed
- addParent() : mixed
- Add parent
- addUserAttributeName() : mixed
- Add userAttributeName
- addUserAttributeValue() : mixed
- Add userAttributeValue
- addUserProfile() : mixed
- Add userProfile
- getAccessId() : AccessId
- Get accessId
- getAccessSpecial() : string
- Get accessSpecial
- getChildren() : UserAttribute
- Get children
- getComponentController() : mixed
- {@inheritDoc}
- getId() : int
- Get id
- getKeyAsString() : string
- Returns this entity's key
- getMandatory() : string
- Get mandatory
- getOrderId() : int
- Get orderId
- getParent() : Collection
- Get parent
- getReadAccessId() : AccessId
- Get readAccessId
- getSortType() : string
- Get sortType
- getTranslatedFieldValue() : mixed
- {@inheritDoc}
- getType() : string
- Get type
- getUserAttributeName() : Collection
- Get userAttributeName
- getUserAttributeValue() : Collection
- Get userAttributeValue
- getUserProfile() : Collection
- Get userProfile
- initializeValidators() : mixed
- {@inheritDoc}
- isVirtual() : mixed
- {@inheritDoc}
- removeParent() : mixed
- Remove parent
- removeUserAttributeName() : mixed
- Remove userAttributeName
- removeUserAttributeValue() : mixed
- Remove userAttributeValue
- setAccessId() : mixed
- Set accessId
- setAccessSpecial() : mixed
- Set accessSpecial
- setChildren() : mixed
- Set children
- setMandatory() : mixed
- Set mandatory
- setOrderId() : mixed
- Set orderId
- setReadAccessId() : mixed
- Set readAccessId
- setSortType() : mixed
- Set sortType
- setType() : mixed
- Set type
- setVirtual() : mixed
- {@inheritDoc}
- validate() : mixed
- {@inheritDoc}
- getFallbackLocaleCodes() : array<string|int, mixed>
- Returns a list of all locale codes ordered by fallback order
- getStringRepresentationBlank() : bool
- Whether blank string representations are valid
- getStringRepresentationFields() : array<string|int, mixed>
- Returns a list of fields available in the string representation
- getStringRepresentationFormat() : string
- Returns the sprintf() format for the string representation
Properties
$__cloner__
public
Closure
$__cloner__
the callback responsible of loading properties that need to be copied in the cloned object
Tags
$__initializer__
public
Closure
$__initializer__
the callback responsible for loading properties in the proxy object. This callback is called with three parameters, being respectively the proxy object to be initialized, the method that triggered the initialization process and an array of ordered parameters that were passed to that method.
Tags
$__isInitialized__
public
bool
$__isInitialized__
= false
flag indicating if this object was already initialized
Tags
$lazyPropertiesDefaults
public
static array<string|int, mixed>
$lazyPropertiesDefaults
= array()
properties to be lazy loaded, with keys being the property names and values being their default values
Tags
$localeCodes
List of locale codes ordered by translation fallback order per Cx instance
protected
static array<string|int, mixed>
$localeCodes
= array()
Array in the form: array(<instanceId> => array(<localeCode>, ...))
Tags
$nestingCount
Counts the nesting level of __call()
protected
static int
$nestingCount
= 0
$readAccessId
protected
AccessId
$readAccessId
$stringRepresentationBlank
Whether blank string representations are valid
protected
bool
$stringRepresentationBlank
= false
Whether blank string representations are valid
Tags
$stringRepresentationFields
List of fields that should be available in the string representation
protected
array<string|int, mixed>
$stringRepresentationFields
= array()
List of field names
Tags
$stringRepresentationFormat
Sprintf format for the string representation
protected
string
$stringRepresentationFormat
= ''
Sprintf format string
Tags
$userAttributeValue
protected
Collection
$userAttributeValue
$validators
Initialize this array as follows: array( 'columName' => Zend_Validate )
protected
array<string|int, mixed>
$validators
= array()
$virtual
Defines if an entity is virtual and therefore not persistable.
protected
bool
$virtual
= false
Defaults to FALSE - not virtual.
$accessId
private
AccessId
$accessId
$accessSpecial
private
string
$accessSpecial
$children
private
UserAttribute
$children
$id
private
int
$id
$mandatory
private
string
$mandatory
$orderId
private
int
$orderId
$parent
private
Collection
$parent
$sortType
private
string
$sortType
$type
private
string
$type
$userAttributeName
private
Collection
$userAttributeName
$userProfile
private
UserProfile
$userProfile
Methods
__call()
{@inheritDoc}
public
__call(mixed $methodName, mixed $arguments) : mixed
Parameters
- $methodName : mixed
- $arguments : mixed
__clone()
public
__clone() : mixed
__construct()
public
__construct([Closure $initializer = null ][, Closure $cloner = null ]) : mixed
Parameters
- $initializer : Closure = null
- $cloner : Closure = null
__get()
{@inheritDoc}
public
__get(string $name) : mixed
Parameters
- $name : string
__getCloner()
{@inheritDoc}
public
__getCloner() : mixed
Tags
__getInitializer()
{@inheritDoc}
public
__getInitializer() : mixed
Tags
__getLazyProperties()
{@inheritDoc}
public
__getLazyProperties() : mixed
Tags
__isInitialized()
{@inheritDoc}
public
__isInitialized() : mixed
Tags
__load()
Forces initialization of the proxy
public
__load() : mixed
__setCloner()
{@inheritDoc}
public
__setCloner([Closure $cloner = null ]) : mixed
Parameters
- $cloner : Closure = null
Tags
__setInitialized()
{@inheritDoc}
public
__setInitialized(mixed $initialized) : mixed
Parameters
- $initialized : mixed
Tags
__setInitializer()
{@inheritDoc}
public
__setInitializer([Closure $initializer = null ]) : mixed
Parameters
- $initializer : Closure = null
Tags
__sleep()
public
__sleep() : array<string|int, mixed>
Return values
array<string|int, mixed>__toString()
{@inheritDoc}
public
__toString() : mixed
__wakeup()
public
__wakeup() : mixed
addParent()
Add parent
public
addParent(UserAttribute $parent) : mixed
Parameters
- $parent : UserAttribute
addUserAttributeName()
Add userAttributeName
public
addUserAttributeName(UserAttributeName $userAttributeName) : mixed
Parameters
- $userAttributeName : UserAttributeName
addUserAttributeValue()
Add userAttributeValue
public
addUserAttributeValue(UserAttributeValue $userAttributeValue) : mixed
Parameters
- $userAttributeValue : UserAttributeValue
addUserProfile()
Add userProfile
public
addUserProfile(UserProfile $userProfile) : mixed
Parameters
- $userProfile : UserProfile
getAccessId()
Get accessId
public
getAccessId() : AccessId
Return values
AccessId —$accessId
getAccessSpecial()
Get accessSpecial
public
getAccessSpecial() : string
Return values
string —$accessSpecial
getChildren()
Get children
public
getChildren() : UserAttribute
Return values
UserAttribute —$children
getComponentController()
{@inheritDoc}
public
getComponentController() : mixed
getId()
Get id
public
getId() : int
Return values
int —$id
getKeyAsString()
Returns this entity's key
public
final getKeyAsString([string $separator = '/' ]) : string
If this entity has a composite key, the fields are separated by $separator.
Parameters
- $separator : string = '/'
-
(optional) Separator for composite key fields, default "/"
Return values
string —Entity key as string
getMandatory()
Get mandatory
public
getMandatory() : string
Return values
string —$mandatory
getOrderId()
Get orderId
public
getOrderId() : int
Return values
int —$orderId
getParent()
Get parent
public
getParent() : Collection
Return values
Collection —$parent
getReadAccessId()
Get readAccessId
public
getReadAccessId() : AccessId
Return values
AccessId —$readAccessId
getSortType()
Get sortType
public
getSortType() : string
Return values
string —$sortType
getTranslatedFieldValue()
{@inheritDoc}
public
getTranslatedFieldValue(mixed $fieldName) : mixed
Parameters
- $fieldName : mixed
getType()
Get type
public
getType() : string
Return values
string —$type
getUserAttributeName()
Get userAttributeName
public
getUserAttributeName() : Collection
Return values
Collection —$userAttributeName
getUserAttributeValue()
Get userAttributeValue
public
getUserAttributeValue() : Collection
Return values
Collection —$userAttributeValue
getUserProfile()
Get userProfile
public
getUserProfile() : Collection
Return values
Collection —$userProfile
initializeValidators()
{@inheritDoc}
public
initializeValidators() : mixed
isVirtual()
{@inheritDoc}
public
isVirtual() : mixed
removeParent()
Remove parent
public
removeParent(UserAttribute $parent) : mixed
Parameters
- $parent : UserAttribute
removeUserAttributeName()
Remove userAttributeName
public
removeUserAttributeName(UserAttributeName $userAttributeName) : mixed
Parameters
- $userAttributeName : UserAttributeName
removeUserAttributeValue()
Remove userAttributeValue
public
removeUserAttributeValue(UserAttributeValue $userAttributeValue) : mixed
Parameters
- $userAttributeValue : UserAttributeValue
setAccessId()
Set accessId
public
setAccessId(AccessId $accessId) : mixed
Parameters
- $accessId : AccessId
setAccessSpecial()
Set accessSpecial
public
setAccessSpecial(mixed $accessSpecial) : mixed
Parameters
- $accessSpecial : mixed
setChildren()
Set children
public
setChildren(UserAttribute $children) : mixed
Parameters
- $children : UserAttribute
setMandatory()
Set mandatory
public
setMandatory(mixed $mandatory) : mixed
Parameters
- $mandatory : mixed
setOrderId()
Set orderId
public
setOrderId(mixed $orderId) : mixed
Parameters
- $orderId : mixed
setReadAccessId()
Set readAccessId
public
setReadAccessId(AccessId $readAccessId) : mixed
Parameters
- $readAccessId : AccessId
setSortType()
Set sortType
public
setSortType(mixed $sortType) : mixed
Parameters
- $sortType : mixed
setType()
Set type
public
setType(mixed $type) : mixed
Parameters
- $type : mixed
setVirtual()
{@inheritDoc}
public
setVirtual(mixed $virtual) : mixed
Parameters
- $virtual : mixed
validate()
{@inheritDoc}
public
validate() : mixed
getFallbackLocaleCodes()
Returns a list of all locale codes ordered by fallback order
protected
getFallbackLocaleCodes() : array<string|int, mixed>
- First entry is the current locale
- Second entry is the default locale (if different from current, it's omitted otherwise)
- Then all other locales follow (in no particular order)
Tags
Return values
array<string|int, mixed> —List of locale codes
getStringRepresentationBlank()
Whether blank string representations are valid
protected
getStringRepresentationBlank() : bool
Return values
bool —Whether blank string representations are valid
getStringRepresentationFields()
Returns a list of fields available in the string representation
protected
getStringRepresentationFields() : array<string|int, mixed>
Return values
array<string|int, mixed> —List of field names
getStringRepresentationFormat()
Returns the sprintf() format for the string representation
protected
getStringRepresentationFormat() : string
Return values
string —sprintf() format string