CModel
| Package |
system.base |
| Inheritance |
abstract class CModel »
CComponent |
| Implements |
IteratorAggregate, Traversable, ArrayAccess |
| Subclasses |
CActiveRecord, CFormModel |
| Since |
1.0 |
| Version |
$Id: CModel.php 2203 2010-06-16 20:50:57Z qiang.xue $ |
CModel is the base class providing the common features needed by data model objects.
CModel defines the basic framework for data models that need to be validated.
Public Properties
Hide inherited properties
| Property | Type | Description | Defined By |
| attributes |
array |
Returns all attribute values. |
CModel |
| errors |
array |
Returns the errors for all attribute or a single attribute. |
CModel |
| iterator |
CMapIterator |
Returns an iterator for traversing the attributes in the model. |
CModel |
| safeAttributeNames |
array |
Returns the attribute names that are safe to be massively assigned. |
CModel |
| scenario |
string |
Returns the scenario that this model is used in. |
CModel |
| validatorList |
CList |
Returns all the validators declared in the model. |
CModel |
| validators |
array |
Returns the validators applicable to the current scenario. |
CModel |
Property Details
Returns all attribute values.
public array
getErrors(string $attribute=NULL)
Returns the errors for all attribute or a single attribute.
Returns an iterator for traversing the attributes in the model.
This method is required by the interface IteratorAggregate.
Returns the attribute names that are safe to be massively assigned.
A safe attribute is one that is associated with a validation rule in the current scenario.
Returns the scenario that this model is used in.
Scenario affects how validation is performed and which attributes can
be massively assigned.
A validation rule will be performed when calling validate()
if its 'on' option is not set or contains the current scenario value.
And an attribute can be massively assigned if it is associated with
a validation rule for the current scenario. Note that an exception is
the unsafe validator which marks the associated
attributes as unsafe and not allowed to be massively assigned.
Returns all the validators declared in the model.
This method differs from getValidators in that the latter
would only return the validators applicable to the current scenario.
Also, since this method return a CList object, you may
manipulate it by inserting or removing validators (useful in behaviors).
For example, $model->validatorList->add($newValidator).
The change made to the CList object will persist and reflect
in the result of the next call of getValidators.
Returns the validators applicable to the current scenario.
Method Details
|
public void addError(string $attribute, string $error)
|
| $attribute |
string |
attribute name |
| $error |
string |
new error message |
Adds a new error to the specified attribute.
|
public void addErrors(array $errors)
|
| $errors |
array |
a list of errors. The array keys must be attribute names.
The array values should be error messages. If an attribute has multiple errors,
these errors must be given in terms of an array.
You may use the result of getErrors as the value for this parameter. |
Adds a list of errors.
|
protected void afterValidate()
|
This method is invoked after validation ends.
The default implementation calls onAfterValidate to raise an event.
You may override this method to do postprocessing after validation.
Make sure the parent implementation is invoked so that the event can be raised.
|
public array attributeLabels()
|
| {return} |
array |
attribute labels (name=>label) |
Returns the attribute labels.
Attribute labels are mainly used in error messages of validation.
By default an attribute label is generated using generateAttributeLabel.
This method allows you to explicitly specify attribute labels.
Note, in order to inherit labels defined in the parent class, a child class needs to
merge the parent labels with child labels using functions like array_merge().
|
abstract public array attributeNames()
|
| {return} |
array |
list of attribute names. |
Returns the list of attribute names of the model.
|
protected boolean beforeValidate()
|
| {return} |
boolean |
whether validation should be executed. Defaults to true.
If false is returned, the validation will stop and the model is considered invalid. |
This method is invoked before validation starts.
The default implementation calls onBeforeValidate to raise an event.
You may override this method to do preliminary checks before validation.
Make sure the parent implementation is invoked so that the event can be raised.
|
public array behaviors()
|
| {return} |
array |
the behavior configurations (behavior name=>behavior configuration) |
Returns a list of behaviors that this model should behave as.
The return value should be an array of behavior configurations indexed by
behavior names. Each behavior configuration can be either a string specifying
the behavior class or an array of the following structure:
'behaviorName'=>array(
'class'=>'path.to.BehaviorClass',
'property1'=>'value1',
'property2'=>'value2',
)
Note, the behavior classes must implement
IBehavior or extend from
CBehavior. Behaviors declared in this method will be attached
to the model when it is instantiated.
For more details about behaviors, see
CComponent.
|
public void clearErrors(string $attribute=NULL)
|
| $attribute |
string |
attribute name. Use null to remove errors for all attribute. |
Removes errors for all attributes or a single attribute.
Creates validator objects based on the specification in rules.
This method is mainly used internally.
|
public string generateAttributeLabel(string $name)
|
| $name |
string |
the column name |
| {return} |
string |
the attribute label |
Generates a user friendly attribute label.
This is done by replacing underscores or dashes with blanks and
changing the first letter of each word to upper case.
For example, 'department_name' or 'DepartmentName' becomes 'Department Name'.
|
public string getAttributeLabel(string $attribute)
|
| $attribute |
string |
the attribute name |
| {return} |
string |
the attribute label |
Returns the text label for the specified attribute.
|
public array getAttributes(array $names=NULL)
|
| $names |
array |
list of attributes whose value needs to be returned.
Defaults to null, meaning all attributes as listed in attributeNames will be returned.
If it is an array, only the attributes in the array will be returned. |
| {return} |
array |
attribute values (name=>value). |
Returns all attribute values.
|
public string getError(string $attribute)
|
| $attribute |
string |
attribute name. |
| {return} |
string |
the error message. Null is returned if no error. |
Returns the first error of the specified attribute.
|
public array getErrors(string $attribute=NULL)
|
| $attribute |
string |
attribute name. Use null to retrieve errors for all attributes. |
| {return} |
array |
errors for all attributes or the specified attribute. Empty array is returned if no error. |
Returns the errors for all attribute or a single attribute.
|
|
| {return} |
CMapIterator |
an iterator for traversing the items in the list. |
Returns an iterator for traversing the attributes in the model.
This method is required by the interface IteratorAggregate.
|
public array getSafeAttributeNames()
|
| {return} |
array |
safe attribute names |
Returns the attribute names that are safe to be massively assigned.
A safe attribute is one that is associated with a validation rule in the current scenario.
|
public string getScenario()
|
| {return} |
string |
the scenario that this model is in. |
Returns the scenario that this model is used in.
Scenario affects how validation is performed and which attributes can
be massively assigned.
A validation rule will be performed when calling validate()
if its 'on' option is not set or contains the current scenario value.
And an attribute can be massively assigned if it is associated with
a validation rule for the current scenario. Note that an exception is
the unsafe validator which marks the associated
attributes as unsafe and not allowed to be massively assigned.
public CList getValidatorList()
|
| {return} |
CList |
all the validators declared in the model. |
Returns all the validators declared in the model.
This method differs from getValidators in that the latter
would only return the validators applicable to the current scenario.
Also, since this method return a CList object, you may
manipulate it by inserting or removing validators (useful in behaviors).
For example, $model->validatorList->add($newValidator).
The change made to the CList object will persist and reflect
in the result of the next call of getValidators.
|
public array getValidators(string $attribute=NULL)
|
| $attribute |
string |
the name of the attribute whose validators should be returned.
If this is null, the validators for ALL attributes in the model will be returned. |
| {return} |
array |
the validators applicable to the current scenario. |
Returns the validators applicable to the current scenario.
|
public boolean hasErrors(string $attribute=NULL)
|
| $attribute |
string |
attribute name. Use null to check all attributes. |
| {return} |
boolean |
whether there is any error. |
Returns a value indicating whether there is any validation error.
|
public boolean isAttributeRequired(string $attribute)
|
| $attribute |
string |
attribute name |
| {return} |
boolean |
whether the attribute is required |
Returns a value indicating whether the attribute is required.
This is determined by checking if the attribute is associated with a
CRequiredValidator validation rule in the current scenario.
|
public boolean isAttributeSafe(string $attribute)
|
| $attribute |
string |
attribute name |
| {return} |
boolean |
whether the attribute is safe for massive assignments |
Returns a value indicating whether the attribute is safe for massive assignments.
|
public boolean offsetExists(mixed $offset)
|
| $offset |
mixed |
the offset to check on |
| {return} |
boolean |
|
Returns whether there is an element at the specified offset.
This method is required by the interface ArrayAccess.
|
public mixed offsetGet(integer $offset)
|
| $offset |
integer |
the offset to retrieve element. |
| {return} |
mixed |
the element at the offset, null if no element is found at the offset |
Returns the element at the specified offset.
This method is required by the interface ArrayAccess.
|
public void offsetSet(integer $offset, mixed $item)
|
| $offset |
integer |
the offset to set element |
| $item |
mixed |
the element value |
Sets the element at the specified offset.
This method is required by the interface ArrayAccess.
|
public void offsetUnset(mixed $offset)
|
| $offset |
mixed |
the offset to unset element |
Unsets the element at the specified offset.
This method is required by the interface ArrayAccess.
public void onAfterValidate( CEvent $event)
|
| $event |
CEvent |
the event parameter |
This event is raised after the validation is performed.
This event is raised before the validation is performed.
|
public void onUnsafeAttribute(string $name, mixed $value)
|
| $name |
string |
the unsafe attribute name |
| $value |
mixed |
the attribute value |
This method is invoked when an unsafe attribute is being massively assigned.
The default implementation will log a warning message if YII_DEBUG is on.
It does nothing otherwise.
|
public array rules()
|
| {return} |
array |
validation rules to be applied when validate() is called. |
Returns the validation rules for attributes.
This method should be overridden to declare validation rules.
Each rule is an array with the following structure:
array('attribute list', 'validator name', 'on'=>'scenario name', ...validation parameters...)
where
The following are some examples:
array(
array('username', 'required'),
array('username', 'length', 'min'=>3, 'max'=>12),
array('password', 'compare', 'compareAttribute'=>'password2', 'on'=>'register'),
array('password', 'authenticate', 'on'=>'login'),
);
Note, in order to inherit rules defined in the parent class, a child class needs to
merge the parent rules with child rules using functions like array_merge().
|
public void setAttributes(array $values, boolean $safeOnly=true)
|
| $values |
array |
attribute values (name=>value) to be set. |
| $safeOnly |
boolean |
whether the assignments should only be done to the safe attributes.
A safe attribute is one that is associated with a validation rule in the current scenario. |
Sets the attribute values in a massive way.
|
public void setScenario(string $value)
|
| $value |
string |
the scenario that this model is in. |
|
public void unsetAttributes(array $names=NULL)
|
| $names |
array |
list of attributes to be set null. If this parameter is not given,
all attributes as specified by attributeNames will have their values unset. |
Unsets the attributes.
|
public boolean validate(array $attributes=NULL)
|
| $attributes |
array |
list of attributes that should be validated. Defaults to null,
meaning any attribute listed in the applicable validation rules should be
validated. If this parameter is given as a list of attributes, only
the listed attributes will be validated. |
| {return} |
boolean |
whether the validation is successful without any error. |
Performs the validation.
This method executes the validation rules as declared in rules.
Only the rules applicable to the current scenario will be executed.
A rule is considered applicable to a scenario if its 'on' option is not set
or contains the scenario.
Errors found during the validation can be retrieved via getErrors.