fixes #717
This commit is contained in:
parent
f9ee88a5c3
commit
4e522ebf6b
2 changed files with 28 additions and 22 deletions
|
@ -38,7 +38,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $_options = array();
|
protected $_options = array();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __construct
|
* __construct
|
||||||
*
|
*
|
||||||
|
@ -49,7 +49,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
{
|
{
|
||||||
$this->_options = $options;
|
$this->_options = $options;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* preInsert
|
* preInsert
|
||||||
*
|
*
|
||||||
|
@ -68,7 +68,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* preUpdate
|
* preUpdate
|
||||||
*
|
*
|
||||||
|
@ -82,7 +82,7 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
$event->getInvoker()->$updatedName = $this->getTimestamp('updated');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* getTimestamp
|
* getTimestamp
|
||||||
*
|
*
|
||||||
|
@ -94,13 +94,17 @@ class Doctrine_Template_Listener_Timestampable extends Doctrine_Record_Listener
|
||||||
public function getTimestamp($type)
|
public function getTimestamp($type)
|
||||||
{
|
{
|
||||||
$options = $this->_options[$type];
|
$options = $this->_options[$type];
|
||||||
|
|
||||||
if ($options['type'] == 'date') {
|
if ($options['expression'] !== false && is_string($options['expression'])) {
|
||||||
return date($options['format'], time());
|
return new Doctrine_Expression($options['expression']);
|
||||||
} else if ($options['type'] == 'timestamp') {
|
|
||||||
return date($options['format'], time());
|
|
||||||
} else {
|
} else {
|
||||||
return time();
|
if ($options['type'] == 'date') {
|
||||||
|
return date($options['format'], time());
|
||||||
|
} else if ($options['type'] == 'timestamp') {
|
||||||
|
return date($options['format'], time());
|
||||||
|
} else {
|
||||||
|
return time();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -39,17 +39,19 @@ class Doctrine_Template_Timestampable extends Doctrine_Template
|
||||||
*
|
*
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
protected $_options = array('created' => array('name' => 'created_at',
|
protected $_options = array('created' => array('name' => 'created_at',
|
||||||
'type' => 'timestamp',
|
'type' => 'timestamp',
|
||||||
'format' => 'Y-m-d H:i:s',
|
'format' => 'Y-m-d H:i:s',
|
||||||
'disabled' => false,
|
'disabled' => false,
|
||||||
'options' => array()),
|
'expression' => false,
|
||||||
'updated' => array('name' => 'updated_at',
|
'options' => array()),
|
||||||
'type' => 'timestamp',
|
'updated' => array('name' => 'updated_at',
|
||||||
'format' => 'Y-m-d H:i:s',
|
'type' => 'timestamp',
|
||||||
'disabled' => false,
|
'format' => 'Y-m-d H:i:s',
|
||||||
'options' => array()));
|
'disabled' => false,
|
||||||
|
'expression' => false,
|
||||||
|
'options' => array()));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* __construct
|
* __construct
|
||||||
*
|
*
|
||||||
|
@ -60,7 +62,7 @@ class Doctrine_Template_Timestampable extends Doctrine_Template
|
||||||
{
|
{
|
||||||
$this->_options = Doctrine_Lib::arrayDeepMerge($this->_options, $options);
|
$this->_options = Doctrine_Lib::arrayDeepMerge($this->_options, $options);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* setTableDefinition
|
* setTableDefinition
|
||||||
*
|
*
|
||||||
|
|
Loading…
Add table
Reference in a new issue