Yii2 framework backup
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

940 lines
31 KiB

13 years ago
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
13 years ago
* @license http://www.yiiframework.com/license/
*/
13 years ago
namespace yii\base;
13 years ago
use Yii;
use ArrayAccess;
use ArrayObject;
use ArrayIterator;
use ReflectionClass;
use IteratorAggregate;
use yii\helpers\Inflector;
use yii\validators\RequiredValidator;
use yii\validators\Validator;
13 years ago
13 years ago
/**
13 years ago
* Model is the base class for data models.
13 years ago
*
13 years ago
* Model implements the following commonly used features:
*
* - attribute declaration: by default, every public class member is considered as
* a model attribute
* - attribute labels: each attribute may be associated with a label for display purpose
* - massive attribute assignment
* - scenario-based validation
*
13 years ago
* Model also raises the following events when performing data validation:
13 years ago
*
12 years ago
* - [[EVENT_BEFORE_VALIDATE]]: an event raised at the beginning of [[validate()]]
* - [[EVENT_AFTER_VALIDATE]]: an event raised at the end of [[validate()]]
13 years ago
*
* You may directly use Model to store model data, or extend it with customization.
* You may also customize Model by attaching [[ModelBehavior|model behaviors]].
13 years ago
*
* @property \yii\validators\Validator[] $activeValidators The validators applicable to the current
* [[scenario]]. This property is read-only.
12 years ago
* @property array $attributes Attribute values (name => value).
* @property array $errors An array of errors for all attributes. Empty array is returned if no error. The
* result is a two-dimensional array. See [[getErrors()]] for detailed description. This property is read-only.
* @property array $firstErrors The first errors. An empty array will be returned if there is no error. This
* property is read-only.
* @property ArrayIterator $iterator An iterator for traversing the items in the list. This property is
* read-only.
* @property string $scenario The scenario that this model is in. Defaults to [[SCENARIO_DEFAULT]].
* @property ArrayObject|\yii\validators\Validator[] $validators All the validators declared in the model.
* This property is read-only.
13 years ago
*
13 years ago
* @author Qiang Xue <qiang.xue@gmail.com>
13 years ago
* @since 2.0
13 years ago
*/
class Model extends Component implements IteratorAggregate, ArrayAccess, Arrayable
13 years ago
{
11 years ago
use ArrayableTrait;
/**
* The name of the default scenario.
*/
const SCENARIO_DEFAULT = 'default';
/**
* @event ModelEvent an event raised at the beginning of [[validate()]]. You may set
* [[ModelEvent::isValid]] to be false to stop the validation.
*/
const EVENT_BEFORE_VALIDATE = 'beforeValidate';
/**
* @event Event an event raised at the end of [[validate()]]
*/
const EVENT_AFTER_VALIDATE = 'afterValidate';
12 years ago
/**
* @var array validation errors (attribute name => array of errors)
*/
private $_errors;
/**
* @var ArrayObject list of validators
12 years ago
*/
private $_validators;
/**
* @var string current scenario
*/
private $_scenario = self::SCENARIO_DEFAULT;
13 years ago
/**
* Returns the validation rules for attributes.
*
13 years ago
* Validation rules are used by [[validate()]] to check if attribute values are valid.
13 years ago
* Child classes may override this method to declare different validation rules.
*
13 years ago
* Each rule is an array with the following structure:
13 years ago
*
13 years ago
* ~~~
* [
* ['attribute1', 'attribute2'],
12 years ago
* 'validator type',
* 'on' => ['scenario1', 'scenario2'],
12 years ago
* ...other parameters...
* ]
13 years ago
* ~~~
*
13 years ago
* where
13 years ago
*
11 years ago
* - attribute list: required, specifies the attributes array to be validated, for single attribute you can pass string;
* - validator type: required, specifies the validator to be used. It can be a built-in validator name,
* a method name of the model class, an anonymous function, or a validator class name.
* - on: optional, specifies the [[scenario|scenarios]] array when the validation
12 years ago
* rule can be applied. If this option is not set, the rule will apply to all scenarios.
13 years ago
* - additional name-value pairs can be specified to initialize the corresponding validator properties.
12 years ago
* Please refer to individual validator class API for possible properties.
13 years ago
*
12 years ago
* A validator can be either an object of a class extending [[Validator]], or a model class method
* (called *inline validator*) that has the following signature:
13 years ago
*
13 years ago
* ~~~
13 years ago
* // $params refers to validation parameters given in the rule
13 years ago
* function validatorName($attribute, $params)
* ~~~
*
* In the above `$attribute` refers to currently validated attribute name while `$params` contains an array of
11 years ago
* validator configuration options such as `max` in case of `string` validator. Currently validate attribute value
* can be accessed as `$this->[$attribute]`.
*
12 years ago
* Yii also provides a set of [[Validator::builtInValidators|built-in validators]].
13 years ago
* They each has an alias name which can be used when specifying a validation rule.
13 years ago
*
13 years ago
* Below are some examples:
13 years ago
*
13 years ago
* ~~~
* [
12 years ago
* // built-in "required" validator
11 years ago
* [['username', 'password'], 'required'],
11 years ago
* // built-in "string" validator customized with "min" and "max" properties
* ['username', 'string', 'min' => 3, 'max' => 12],
12 years ago
* // built-in "compare" validator that is used in "register" scenario only
* ['password', 'compare', 'compareAttribute' => 'password2', 'on' => 'register'],
12 years ago
* // an inline validator defined via the "authenticate()" method in the model class
* ['password', 'authenticate', 'on' => 'login'],
* // a validator of class "DateRangeValidator"
* ['dateRange', 'DateRangeValidator'],
* ];
13 years ago
* ~~~
13 years ago
*
* Note, in order to inherit rules defined in the parent class, a child class needs to
13 years ago
* merge the parent rules with child rules using functions such as `array_merge()`.
13 years ago
*
13 years ago
* @return array validation rules
* @see scenarios()
13 years ago
*/
public function rules()
{
return [];
13 years ago
}
/**
* Returns a list of scenarios and the corresponding active attributes.
12 years ago
* An active attribute is one that is subject to validation in the current scenario.
* The returned array should be in the following format:
*
* ~~~
* [
* 'scenario1' => ['attribute11', 'attribute12', ...],
* 'scenario2' => ['attribute21', 'attribute22', ...],
* ...
* ]
* ~~~
*
* By default, an active attribute is considered safe and can be massively assigned.
* If an attribute should NOT be massively assigned (thus considered unsafe),
12 years ago
* please prefix the attribute with an exclamation character (e.g. '!rank').
*
11 years ago
* The default implementation of this method will return all scenarios found in the [[rules()]]
* declaration. A special scenario named [[SCENARIO_DEFAULT]] will contain all attributes
* found in the [[rules()]]. Each scenario will be associated with the attributes that
* are being validated by the validation rules that apply to the scenario.
12 years ago
*
* @return array a list of scenarios and the corresponding active attributes.
*/
public function scenarios()
{
$scenarios = [self::SCENARIO_DEFAULT => []];
foreach ($this->getValidators() as $validator) {
foreach ($validator->on as $scenario) {
$scenarios[$scenario] = [];
}
foreach ($validator->except as $scenario) {
$scenarios[$scenario] = [];
}
}
$names = array_keys($scenarios);
foreach ($this->getValidators() as $validator) {
if (empty($validator->on) && empty($validator->except)) {
foreach ($names as $name) {
foreach ($validator->attributes as $attribute) {
$scenarios[$name][$attribute] = true;
}
}
} elseif (empty($validator->on)) {
foreach ($names as $name) {
if (!in_array($name, $validator->except, true)) {
foreach ($validator->attributes as $attribute) {
$scenarios[$name][$attribute] = true;
}
}
}
} else {
foreach ($validator->on as $name) {
foreach ($validator->attributes as $attribute) {
$scenarios[$name][$attribute] = true;
}
}
}
}
foreach ($scenarios as $scenario => $attributes) {
if (empty($attributes) && $scenario !== self::SCENARIO_DEFAULT) {
unset($scenarios[$scenario]);
} else {
$scenarios[$scenario] = array_keys($attributes);
12 years ago
}
}
11 years ago
return $scenarios;
}
/**
* Returns the form name that this model class should use.
*
* The form name is mainly used by [[\yii\web\ActiveForm]] to determine how to name
* the input fields for the attributes in a model. If the form name is "A" and an attribute
* name is "b", then the corresponding input name would be "A[b]". If the form name is
* an empty string, then the input name would be "b".
*
* By default, this method returns the model class name (without the namespace part)
* as the form name. You may override it when the model is used in different forms.
*
* @return string the form name of this model class.
*/
public function formName()
{
$reflector = new ReflectionClass($this);
return $reflector->getShortName();
}
/**
* Returns the list of attribute names.
* By default, this method returns all public non-static properties of the class.
* You may override this method to change the default behavior.
* @return array list of attribute names.
*/
public function attributes()
{
$class = new ReflectionClass($this);
$names = [];
foreach ($class->getProperties(\ReflectionProperty::IS_PUBLIC) as $property) {
if (!$property->isStatic()) {
$names[] = $property->getName();
}
}
12 years ago
return $names;
}
/**
13 years ago
* Returns the attribute labels.
13 years ago
*
* Attribute labels are mainly used for display purpose. For example, given an attribute
* `firstName`, we can declare a label `First Name` which is more user-friendly and can
* be displayed to end users.
*
13 years ago
* By default an attribute label is generated using [[generateAttributeLabel()]].
13 years ago
* 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
13 years ago
* merge the parent labels with child labels using functions such as `array_merge()`.
13 years ago
*
12 years ago
* @return array attribute labels (name => label)
* @see generateAttributeLabel()
13 years ago
*/
public function attributeLabels()
{
return [];
13 years ago
}
/**
13 years ago
* Performs the data validation.
13 years ago
*
* This method executes the validation rules applicable to the current [[scenario]].
* The following criteria are used to determine whether a rule is currently applicable:
*
* - the rule must be associated with the attributes relevant to the current scenario;
* - the rules must be effective for the current scenario.
13 years ago
*
13 years ago
* This method will call [[beforeValidate()]] and [[afterValidate()]] before and
* after the actual validation, respectively. If [[beforeValidate()]] returns false,
* the validation will be cancelled and [[afterValidate()]] will not be called.
13 years ago
*
* Errors found during the validation can be retrieved via [[getErrors()]],
* [[getFirstErrors()]] and [[getFirstError()]].
13 years ago
*
13 years ago
* @param array $attributes list of attributes that should be validated.
* If this parameter is empty, it means any attribute listed in the applicable
* validation rules should be validated.
13 years ago
* @param boolean $clearErrors whether to call [[clearErrors()]] before performing validation
13 years ago
* @return boolean whether the validation is successful without any error.
* @throws InvalidParamException if the current scenario is unknown.
13 years ago
*/
13 years ago
public function validate($attributes = null, $clearErrors = true)
13 years ago
{
$scenarios = $this->scenarios();
$scenario = $this->getScenario();
if (!isset($scenarios[$scenario])) {
throw new InvalidParamException("Unknown scenario: $scenario");
}
13 years ago
if ($clearErrors) {
13 years ago
$this->clearErrors();
13 years ago
}
if ($attributes === null) {
$attributes = $this->activeAttributes();
}
13 years ago
if ($this->beforeValidate()) {
13 years ago
foreach ($this->getActiveValidators() as $validator) {
$validator->validateAttributes($this, $attributes);
13 years ago
}
13 years ago
$this->afterValidate();
return !$this->hasErrors();
}
13 years ago
return false;
13 years ago
}
/**
* This method is invoked before validation starts.
13 years ago
* The default implementation raises a `beforeValidate` event.
13 years ago
* 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.
* @return boolean whether the validation should be executed. Defaults to true.
13 years ago
* If false is returned, the validation will stop and the model is considered invalid.
*/
13 years ago
public function beforeValidate()
13 years ago
{
12 years ago
$event = new ModelEvent;
$this->trigger(self::EVENT_BEFORE_VALIDATE, $event);
13 years ago
return $event->isValid;
13 years ago
}
/**
* This method is invoked after validation ends.
13 years ago
* The default implementation raises an `afterValidate` event.
13 years ago
* You may override this method to do postprocessing after validation.
* Make sure the parent implementation is invoked so that the event can be raised.
*/
13 years ago
public function afterValidate()
13 years ago
{
$this->trigger(self::EVENT_AFTER_VALIDATE);
13 years ago
}
/**
13 years ago
* Returns all the validators declared in [[rules()]].
13 years ago
*
13 years ago
* This method differs from [[getActiveValidators()]] in that the latter
13 years ago
* only returns the validators applicable to the current [[scenario]].
*
* Because this method returns an ArrayObject object, you may
13 years ago
* manipulate it by inserting or removing validators (useful in model behaviors).
* For example,
*
13 years ago
* ~~~
* $model->validators[] = $newValidator;
13 years ago
* ~~~
*
* @return ArrayObject|\yii\validators\Validator[] all the validators declared in the model.
13 years ago
*/
13 years ago
public function getValidators()
13 years ago
{
13 years ago
if ($this->_validators === null) {
13 years ago
$this->_validators = $this->createValidators();
13 years ago
}
13 years ago
return $this->_validators;
}
/**
13 years ago
* Returns the validators applicable to the current [[scenario]].
* @param string $attribute the name of the attribute whose applicable validators should be returned.
13 years ago
* If this is null, the validators for ALL attributes in the model will be returned.
13 years ago
* @return \yii\validators\Validator[] the validators applicable to the current [[scenario]].
13 years ago
*/
13 years ago
public function getActiveValidators($attribute = null)
13 years ago
{
$validators = [];
13 years ago
$scenario = $this->getScenario();
13 years ago
foreach ($this->getValidators() as $validator) {
12 years ago
if ($validator->isActive($scenario) && ($attribute === null || in_array($attribute, $validator->attributes, true))) {
13 years ago
$validators[] = $validator;
13 years ago
}
}
return $validators;
}
/**
13 years ago
* Creates validator objects based on the validation rules specified in [[rules()]].
* Unlike [[getValidators()]], each time this method is called, a new list of validators will be returned.
* @return ArrayObject validators
12 years ago
* @throws InvalidConfigException if any validation rule configuration is invalid
13 years ago
*/
public function createValidators()
{
$validators = new ArrayObject;
13 years ago
foreach ($this->rules() as $rule) {
if ($rule instanceof Validator) {
$validators->append($rule);
} elseif (is_array($rule) && isset($rule[0], $rule[1])) { // attributes, validator type
$validator = Validator::createValidator($rule[1], $this, (array) $rule[0], array_slice($rule, 2));
$validators->append($validator);
13 years ago
} else {
12 years ago
throw new InvalidConfigException('Invalid validation rule: a rule must specify both attribute names and validator type.');
13 years ago
}
13 years ago
}
return $validators;
}
/**
* Returns a value indicating whether the attribute is required.
* This is determined by checking if the attribute is associated with a
13 years ago
* [[\yii\validators\RequiredValidator|required]] validation rule in the
13 years ago
* current [[scenario]].
13 years ago
* @param string $attribute attribute name
* @return boolean whether the attribute is required
*/
public function isAttributeRequired($attribute)
{
13 years ago
foreach ($this->getActiveValidators($attribute) as $validator) {
if ($validator instanceof RequiredValidator) {
13 years ago
return true;
13 years ago
}
13 years ago
}
return false;
}
/**
* Returns a value indicating whether the attribute is safe for massive assignments.
* @param string $attribute attribute name
* @return boolean whether the attribute is safe for massive assignments
* @see safeAttributes()
13 years ago
*/
public function isAttributeSafe($attribute)
{
return in_array($attribute, $this->safeAttributes(), true);
13 years ago
}
/**
* Returns a value indicating whether the attribute is active in the current scenario.
* @param string $attribute attribute name
* @return boolean whether the attribute is active in the current scenario
* @see activeAttributes()
*/
public function isAttributeActive($attribute)
{
return in_array($attribute, $this->activeAttributes(), true);
}
/**
13 years ago
* Returns the text label for the specified attribute.
* @param string $attribute the attribute name
* @return string the attribute label
* @see generateAttributeLabel()
* @see attributeLabels()
13 years ago
*/
public function getAttributeLabel($attribute)
{
13 years ago
$labels = $this->attributeLabels();
13 years ago
return isset($labels[$attribute]) ? $labels[$attribute] : $this->generateAttributeLabel($attribute);
13 years ago
}
/**
* Returns a value indicating whether there is any validation error.
* @param string|null $attribute attribute name. Use null to check all attributes.
13 years ago
* @return boolean whether there is any error.
*/
13 years ago
public function hasErrors($attribute = null)
13 years ago
{
13 years ago
return $attribute === null ? !empty($this->_errors) : isset($this->_errors[$attribute]);
13 years ago
}
/**
* Returns the errors for all attribute or a single attribute.
* @param string $attribute attribute name. Use null to retrieve errors for all attributes.
* @property array An array of errors for all attributes. Empty array is returned if no error.
* The result is a two-dimensional array. See [[getErrors()]] for detailed description.
13 years ago
* @return array errors for all attributes or the specified attribute. Empty array is returned if no error.
13 years ago
* Note that when returning errors for all attributes, the result is a two-dimensional array, like the following:
*
13 years ago
* ~~~
* [
* 'username' => [
12 years ago
* 'Username is required.',
* 'Username must contain only word characters.',
* ],
* 'email' => [
12 years ago
* 'Email address is invalid.',
* ]
* ]
13 years ago
* ~~~
*
* @see getFirstErrors()
* @see getFirstError()
13 years ago
*/
13 years ago
public function getErrors($attribute = null)
13 years ago
{
13 years ago
if ($attribute === null) {
return $this->_errors === null ? [] : $this->_errors;
13 years ago
} else {
return isset($this->_errors[$attribute]) ? $this->_errors[$attribute] : [];
13 years ago
}
13 years ago
}
/**
12 years ago
* Returns the first error of every attribute in the model.
11 years ago
* @return array the first errors. The array keys are the attribute names, and the array
* values are the corresponding error messages. An empty array will be returned if there is no error.
* @see getErrors()
* @see getFirstError()
12 years ago
*/
public function getFirstErrors()
{
if (empty($this->_errors)) {
return [];
12 years ago
} else {
$errors = [];
11 years ago
foreach ($this->_errors as $name => $es) {
if (!empty($es)) {
$errors[$name] = reset($es);
12 years ago
}
}
11 years ago
return $errors;
12 years ago
}
}
/**
13 years ago
* Returns the first error of the specified attribute.
* @param string $attribute attribute name.
* @return string the error message. Null is returned if no error.
* @see getErrors()
* @see getFirstErrors()
13 years ago
*/
12 years ago
public function getFirstError($attribute)
13 years ago
{
return isset($this->_errors[$attribute]) ? reset($this->_errors[$attribute]) : null;
}
/**
* Adds a new error to the specified attribute.
* @param string $attribute attribute name
* @param string $error new error message
*/
public function addError($attribute, $error = '')
13 years ago
{
13 years ago
$this->_errors[$attribute][] = $error;
13 years ago
}
/**
* Removes errors for all attributes or a single attribute.
* @param string $attribute attribute name. Use null to remove errors for all attribute.
*/
13 years ago
public function clearErrors($attribute = null)
13 years ago
{
13 years ago
if ($attribute === null) {
$this->_errors = [];
13 years ago
} else {
13 years ago
unset($this->_errors[$attribute]);
13 years ago
}
13 years ago
}
/**
13 years ago
* Generates a user friendly attribute label based on the give attribute name.
* This is done by replacing underscores, dashes and dots with blanks and
13 years ago
* changing the first letter of each word to upper case.
13 years ago
* For example, 'department_name' or 'DepartmentName' will generate 'Department Name'.
13 years ago
* @param string $name the column name
* @return string the attribute label
*/
public function generateAttributeLabel($name)
{
return Inflector::camel2words($name, true);
13 years ago
}
/**
13 years ago
* Returns attribute values.
13 years ago
* @param array $names list of attributes whose value needs to be returned.
* Defaults to null, meaning all attributes listed in [[attributes()]] will be returned.
13 years ago
* If it is an array, only the attributes in the array will be returned.
* @param array $except list of attributes whose value should NOT be returned.
12 years ago
* @return array attribute values (name => value).
13 years ago
*/
public function getAttributes($names = null, $except = [])
13 years ago
{
$values = [];
if ($names === null) {
$names = $this->attributes();
}
foreach ($names as $name) {
$values[$name] = $this->$name;
}
foreach ($except as $name) {
unset($values[$name]);
13 years ago
}
return $values;
13 years ago
}
/**
* Sets the attribute values in a massive way.
12 years ago
* @param array $values attribute values (name => value) to be assigned to the model.
13 years ago
* @param boolean $safeOnly whether the assignments should only be done to the safe attributes.
13 years ago
* A safe attribute is one that is associated with a validation rule in the current [[scenario]].
* @see safeAttributes()
* @see attributes()
13 years ago
*/
13 years ago
public function setAttributes($values, $safeOnly = true)
13 years ago
{
13 years ago
if (is_array($values)) {
$attributes = array_flip($safeOnly ? $this->safeAttributes() : $this->attributes());
13 years ago
foreach ($values as $name => $value) {
if (isset($attributes[$name])) {
$this->$name = $value;
13 years ago
} elseif ($safeOnly) {
13 years ago
$this->onUnsafeAttribute($name, $value);
}
}
13 years ago
}
}
/**
* 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.
* @param string $name the unsafe attribute name
* @param mixed $value the attribute value
*/
13 years ago
public function onUnsafeAttribute($name, $value)
13 years ago
{
13 years ago
if (YII_DEBUG) {
Yii::trace("Failed to set unsafe attribute '$name' in '" . get_class($this) . "'.", __METHOD__);
13 years ago
}
13 years ago
}
/**
* Returns the scenario that this model is used in.
*
* Scenario affects how validation is performed and which attributes can
* be massively assigned.
*
* @return string the scenario that this model is in. Defaults to [[SCENARIO_DEFAULT]].
13 years ago
*/
public function getScenario()
{
return $this->_scenario;
}
/**
* Sets the scenario for the model.
* Note that this method does not check if the scenario exists or not.
* The method [[validate()]] will perform this check.
13 years ago
* @param string $value the scenario that this model is in.
*/
public function setScenario($value)
{
13 years ago
$this->_scenario = $value;
13 years ago
}
/**
* Returns the attribute names that are safe to be massively assigned in the current scenario.
* @return string[] safe attribute names
13 years ago
*/
public function safeAttributes()
13 years ago
{
$scenario = $this->getScenario();
$scenarios = $this->scenarios();
if (!isset($scenarios[$scenario])) {
return [];
}
$attributes = [];
foreach ($scenarios[$scenario] as $attribute) {
if ($attribute[0] !== '!') {
$attributes[] = $attribute;
13 years ago
}
}
12 years ago
return $attributes;
}
13 years ago
/**
* Returns the attribute names that are subject to validation in the current scenario.
* @return string[] safe attribute names
*/
public function activeAttributes()
{
$scenario = $this->getScenario();
$scenarios = $this->scenarios();
if (!isset($scenarios[$scenario])) {
return [];
13 years ago
}
$attributes = $scenarios[$scenario];
foreach ($attributes as $i => $attribute) {
if ($attribute[0] === '!') {
$attributes[$i] = substr($attribute, 1);
}
}
return $attributes;
13 years ago
}
/**
* Populates the model with the data from end user.
* The data to be loaded is `$data[formName]`, where `formName` refers to the value of [[formName()]].
* If [[formName()]] is empty, the whole `$data` array will be used to populate the model.
* The data being populated is subject to the safety check by [[setAttributes()]].
* @param array $data the data array. This is usually `$_POST` or `$_GET`, but can also be any valid array
* supplied by end user.
* @param string $formName the form name to be used for loading the data into the model.
* If not set, [[formName()]] will be used.
* @return boolean whether the model is successfully populated with some data.
*/
public function load($data, $formName = null)
{
$scope = $formName === null ? $this->formName() : $formName;
if ($scope == '' && !empty($data)) {
$this->setAttributes($data);
return true;
} elseif (isset($data[$scope])) {
$this->setAttributes($data[$scope]);
return true;
} else {
return false;
}
}
/**
* Populates a set of models with the data from end user.
* This method is mainly used to collect tabular data input.
* The data to be loaded for each model is `$data[formName][index]`, where `formName`
* refers to the value of [[formName()]], and `index` the index of the model in the `$models` array.
* If [[formName()]] is empty, `$data[index]` will be used to populate each model.
* The data being populated to each model is subject to the safety check by [[setAttributes()]].
* @param array $models the models to be populated. Note that all models should have the same class.
* @param array $data the data array. This is usually `$_POST` or `$_GET`, but can also be any valid array
* supplied by end user.
* @return boolean whether the model is successfully populated with some data.
*/
public static function loadMultiple($models, $data)
{
/** @var Model $model */
$model = reset($models);
if ($model === false) {
return false;
}
$success = false;
$scope = $model->formName();
foreach ($models as $i => $model) {
if ($scope == '') {
if (isset($data[$i])) {
$model->setAttributes($data[$i]);
$success = true;
}
} elseif (isset($data[$scope][$i])) {
$model->setAttributes($data[$scope][$i]);
$success = true;
}
}
return $success;
}
/**
* Validates multiple models.
* This method will validate every model. The models being validated may
* be of the same or different types.
* @param array $models the models to be validated
* @param array $attributes list of attributes that should be validated.
* If this parameter is empty, it means any attribute listed in the applicable
* validation rules should be validated.
* @return boolean whether all models are valid. False will be returned if one
* or multiple models have validation error.
*/
public static function validateMultiple($models, $attributes = null)
{
$valid = true;
/** @var Model $model */
foreach ($models as $model) {
$valid = $model->validate($attributes) && $valid;
}
return $valid;
}
/**
11 years ago
* Returns the list of fields that should be returned by default by [[toArray()]] when no specific fields are specified.
*
* A field is a named element in the returned array by [[toArray()]].
*
* This method should return an array of field names or field definitions.
* If the former, the field name will be treated as an object property name whose value will be used
* as the field value. If the latter, the array key should be the field name while the array value should be
* the corresponding field definition which can be either an object property name or a PHP callable
* returning the corresponding field value. The signature of the callable should be:
*
* ```php
* function ($field, $model) {
* // return field value
* }
* ```
*
* For example, the following code declares four fields:
*
* - `email`: the field name is the same as the property name `email`;
* - `firstName` and `lastName`: the field names are `firstName` and `lastName`, and their
* values are obtained from the `first_name` and `last_name` properties;
* - `fullName`: the field name is `fullName`. Its value is obtained by concatenating `first_name`
* and `last_name`.
*
* ```php
* return [
* 'email',
* 'firstName' => 'first_name',
* 'lastName' => 'last_name',
* 'fullName' => function () {
* return $this->first_name . ' ' . $this->last_name;
* },
* ];
* ```
*
* In this method, you may also want to return different lists of fields based on some context
11 years ago
* information. For example, depending on [[scenario]] or the privilege of the current application user,
* you may return different sets of visible fields or filter out some fields.
11 years ago
*
* The default implementation of this method returns [[attributes()]] indexed by the same attribute names.
*
* @return array the list of field names or field definitions.
* @see toArray()
*/
public function fields()
{
$fields = $this->attributes();
return array_combine($fields, $fields);
}
/**
* Determines which fields can be returned by [[toArray()]].
11 years ago
* This method will check the requested fields against those declared in [[fields()]] and [[extraFields()]]
11 years ago
* to determine which fields can be returned.
* @param array $fields the fields being requested for exporting
* @param array $expand the additional fields being requested for exporting
* @return array the list of fields to be exported. The array keys are the field names, and the array values
* are the corresponding object property names or PHP callables returning the field values.
*/
protected function resolveFields(array $fields, array $expand)
{
11 years ago
$result = [];
foreach ($this->fields() as $field => $definition) {
if (is_integer($field)) {
$field = $definition;
}
if (empty($fields) || in_array($field, $fields, true)) {
$result[$field] = $definition;
}
}
if (empty($expand)) {
return $result;
}
11 years ago
foreach ($this->extraFields() as $field => $definition) {
11 years ago
if (is_integer($field)) {
$field = $definition;
}
if (in_array($field, $expand, true)) {
$result[$field] = $definition;
}
}
return $result;
}
/**
13 years ago
* Returns an iterator for traversing the attributes in the model.
* This method is required by the interface IteratorAggregate.
* @return ArrayIterator an iterator for traversing the items in the list.
13 years ago
*/
public function getIterator()
{
13 years ago
$attributes = $this->getAttributes();
return new ArrayIterator($attributes);
13 years ago
}
/**
* Returns whether there is an element at the specified offset.
13 years ago
* This method is required by the SPL interface `ArrayAccess`.
* It is implicitly called when you use something like `isset($model[$offset])`.
13 years ago
* @param mixed $offset the offset to check on
* @return boolean
*/
public function offsetExists($offset)
{
12 years ago
return $this->$offset !== null;
13 years ago
}
/**
* Returns the element at the specified offset.
13 years ago
* This method is required by the SPL interface `ArrayAccess`.
* It is implicitly called when you use something like `$value = $model[$offset];`.
13 years ago
* @param mixed $offset the offset to retrieve element.
13 years ago
* @return mixed the element at the offset, null if no element is found at the offset
*/
public function offsetGet($offset)
{
return $this->$offset;
}
/**
* Sets the element at the specified offset.
13 years ago
* This method is required by the SPL interface `ArrayAccess`.
* It is implicitly called when you use something like `$model[$offset] = $item;`.
13 years ago
* @param integer $offset the offset to set element
* @param mixed $item the element value
*/
13 years ago
public function offsetSet($offset, $item)
13 years ago
{
13 years ago
$this->$offset = $item;
13 years ago
}
/**
* Sets the element value at the specified offset to null.
13 years ago
* This method is required by the SPL interface `ArrayAccess`.
* It is implicitly called when you use something like `unset($model[$offset])`.
13 years ago
* @param mixed $offset the offset to unset element
*/
public function offsetUnset($offset)
{
$this->$offset = null;
13 years ago
}
}