mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '3.4' into 3
This commit is contained in:
commit
955e02ab90
@ -213,12 +213,12 @@ abstract class ModelAdmin extends LeftAndMain {
|
||||
|
||||
if(is_array($params)) {
|
||||
$params = ArrayLib::array_map_recursive('trim', $params);
|
||||
}
|
||||
|
||||
// Parse all DateFields to handle user input non ISO 8601 dates
|
||||
foreach($context->getFields() as $field) {
|
||||
if($field instanceof DatetimeField) {
|
||||
$params[$field->getName()] = date('Y-m-d', strtotime($params[$field->getName()]));
|
||||
// Parse all DateFields to handle user input non ISO 8601 dates
|
||||
foreach($context->getFields() as $field) {
|
||||
if($field instanceof DatetimeField && !empty($params[$field->getName()])) {
|
||||
$params[$field->getName()] = date('Y-m-d', strtotime($params[$field->getName()]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
3
main.php
3
main.php
@ -62,6 +62,9 @@ if(!empty($_SERVER['HTTP_X_ORIGINAL_URL'])) {
|
||||
$_SERVER['REQUEST_URI'] = $_SERVER['HTTP_X_ORIGINAL_URL'];
|
||||
}
|
||||
|
||||
// Enable the entity loader to be able to load XML in Zend_Locale_Data
|
||||
libxml_disable_entity_loader(false);
|
||||
|
||||
/**
|
||||
* Figure out the request URL
|
||||
*/
|
||||
|
@ -10,7 +10,6 @@
|
||||
* @subpackage model
|
||||
*
|
||||
* @property DataObject owner
|
||||
*
|
||||
* @property int RecordID
|
||||
* @property int Version
|
||||
* @property bool WasPublished
|
||||
@ -78,7 +77,10 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
"AuthorID" => "Int",
|
||||
"PublisherID" => "Int"
|
||||
);
|
||||
|
||||
/**
|
||||
* @var array
|
||||
* @config
|
||||
*/
|
||||
private static $db = array(
|
||||
'Version' => 'Int'
|
||||
);
|
||||
@ -583,6 +585,8 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
* Generates a ($table)_version DB manipulation and injects it into the current $manipulation
|
||||
*
|
||||
* @param SQLQuery $manipulation The query to augment
|
||||
* @param string $table
|
||||
* @param string|int $recordID
|
||||
*/
|
||||
protected function augmentWriteVersioned(&$manipulation, $table, $recordID) {
|
||||
$baseDataClass = ClassInfo::baseDataClass($table);
|
||||
@ -643,7 +647,7 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
*
|
||||
* @param array $manipulation Source manipulation data
|
||||
* @param string $table Name of table
|
||||
* @param int $recordID ID of record to version
|
||||
* @param string|int $recordID ID of record to version
|
||||
*/
|
||||
protected function augmentWriteStaged(&$manipulation, $table, $recordID) {
|
||||
// If the record has already been inserted in the (table), get rid of it.
|
||||
@ -659,7 +663,9 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
unset($manipulation[$table]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @param array $manipulation
|
||||
*/
|
||||
public function augmentWrite(&$manipulation) {
|
||||
// get Version number from base data table on write
|
||||
$version = null;
|
||||
@ -1143,8 +1149,6 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
* - If $_GET['stage'] is set, then it will use that stage, and store it in the session.
|
||||
* - If $_GET['archiveDate'] is set, it will use that date, and store it in the session.
|
||||
* - If neither of these are set, it checks the session, otherwise the stage is set to 'Live'.
|
||||
*
|
||||
* @param Session $session Optional session within which to store the resulting stage
|
||||
*/
|
||||
public static function choose_site_stage() {
|
||||
// Check any pre-existing session mode
|
||||
@ -1521,6 +1525,9 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
$labels['Versions'] = _t('Versioned.has_many_Versions', 'Versions', 'Past Versions of this page');
|
||||
}
|
||||
|
||||
/**
|
||||
* @param FieldList $fields
|
||||
*/
|
||||
public function updateCMSFields(FieldList $fields) {
|
||||
// remove the version field from the CMS as this should be left
|
||||
// entirely up to the extension (not the cms user).
|
||||
@ -1569,6 +1576,9 @@ class Versioned extends DataExtension implements TemplateGlobalProvider {
|
||||
return $this->defaultStage;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array
|
||||
*/
|
||||
public static function get_template_global_variables() {
|
||||
return array(
|
||||
'CurrentReadingMode' => 'get_reading_mode'
|
||||
@ -1592,6 +1602,9 @@ class Versioned_Version extends ViewableData {
|
||||
/** @var DataObject */
|
||||
protected $object;
|
||||
|
||||
/**
|
||||
* @param array $record
|
||||
*/
|
||||
public function __construct($record) {
|
||||
$this->record = $record;
|
||||
$record['ID'] = $record['RecordID'];
|
||||
|
Loading…
Reference in New Issue
Block a user