Browse Source

refactored AutoTimestamp.

tags/2.0.0-beta
Qiang Xue 12 years ago
parent
commit
e69afe32b5
  1. 55
      yii/behaviors/AutoTimestamp.php

55
yii/behaviors/AutoTimestamp.php

@ -28,8 +28,9 @@ use yii\db\ActiveRecord;
* } * }
* ~~~ * ~~~
* *
* By default, the attribute for keeping the creation time is named as "create_time", and the attribute * By default, AutoTimestamp will fill the `create_time` attribute with the current timestamp
* for updating time is "update_time". You may customize the names via [[createAttribute]] and [[updateAttribute]]. * when the associated AR object is being inserted; it will fill the `update_time` attribute
* with the timestamp when the AR object is being updated.
* *
* @author Qiang Xue <qiang.xue@gmail.com> * @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0 * @since 2.0
@ -37,15 +38,17 @@ use yii\db\ActiveRecord;
class AutoTimestamp extends Behavior class AutoTimestamp extends Behavior
{ {
/** /**
* @var string The name of the attribute to store the creation time. Set to null to not * @var array list of attributes that are to be automatically filled with timestamps.
* use a timestamp for the creation attribute. Defaults to 'create_time' * The array keys are the ActiveRecord events upon which the attributes are to be filled with timestamps,
* and the array values are the corresponding attribute to be updated. You can use a string to represent
* a single attribute, or an array to represent a list of attributes.
* The default setting is to update the `create_time` attribute upon AR insertion,
* and update the `update_time` attribute upon AR updating.
*/ */
public $createAttribute = 'create_time'; public $attributes = array(
/** ActiveRecord::EVENT_BEFORE_INSERT => 'create_time',
* @var string The name of the attribute to store the modification time. Set to null to not ActiveRecord::EVENT_BEFORE_UPDATE => 'update_time',
* use a timestamp for the update attribute. Defaults to 'update_time' );
*/
public $updateAttribute = 'update_time';
/** /**
* @var \Closure|Expression The expression that will be used for generating the timestamp. * @var \Closure|Expression The expression that will be used for generating the timestamp.
* This can be either an anonymous function that returns the timestamp value, * This can be either an anonymous function that returns the timestamp value,
@ -61,29 +64,27 @@ class AutoTimestamp extends Behavior
*/ */
public function events() public function events()
{ {
return array( $events = array();
ActiveRecord::EVENT_BEFORE_INSERT => 'beforeInsert', $behavior = $this;
ActiveRecord::EVENT_BEFORE_UPDATE => 'beforeUpdate', foreach ($this->attributes as $event => $attributes) {
); if (!is_array($attributes)) {
} $attributes = array($attributes);
}
/** $events[$event] = function () use ($behavior, $attributes) {
* This is the event handler for the "beforeInsert" event of the associated AR object. $behavior->updateTimestamp($attributes);
*/ };
public function beforeInsert()
{
if ($this->createAttribute !== null) {
$this->owner->{$this->createAttribute} = $this->evaluateTimestamp($this->createAttribute);
} }
return $events;
} }
/** /**
* This is the event handler for the "beforeUpdate" event of the associated AR object. * Updates the attributes with the current timestamp.
* @param array $attributes list of attributes to be updated.
*/ */
public function beforeUpdate() public function updateTimestamp($attributes)
{ {
if ($this->updateAttribute !== null) { foreach ($attributes as $attribute) {
$this->owner->{$this->updateAttribute} = $this->evaluateTimestamp($this->updateAttribute); $this->owner->$attribute = $this->evaluateTimestamp($attribute);
} }
} }

Loading…
Cancel
Save