aboutsummaryrefslogtreecommitdiff
path: root/engine/lib
diff options
context:
space:
mode:
authoricewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-24 09:55:13 +0000
committericewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544>2008-04-24 09:55:13 +0000
commitb23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e (patch)
tree960d43bafb48d6292964e0920549b8d32cf51a56 /engine/lib
parent33962198a853f02497f72266ebf3fa692abd6976 (diff)
downloadelgg-b23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e.tar.gz
elgg-b23a13b0263efd2ef0fd8a26a6d4e724c4d4be9e.tar.bz2
Marcus Povey <marcus@dushka.co.uk>
* Generated now published * Metadata and annotations use time from db * Attributes use time from entity git-svn-id: https://code.elgg.org/elgg/trunk@514 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib')
-rw-r--r--engine/lib/annotations.php5
-rw-r--r--engine/lib/entities.php25
-rw-r--r--engine/lib/extender.php5
-rw-r--r--engine/lib/metadata.php5
4 files changed, 32 insertions, 8 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php
index e76254acb..4302d27a6 100644
--- a/engine/lib/annotations.php
+++ b/engine/lib/annotations.php
@@ -110,7 +110,10 @@
$type = "annotation";
$uuid = guid_to_uuid($this->entity_guid). $type . "/{$this->id}/";
- return new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid));
+ $meta = new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid));
+ $meta->setAttribute('published', date("r", $this->time_created));
+
+ return $meta;
}
}
diff --git a/engine/lib/entities.php b/engine/lib/entities.php
index e2624132d..2e330042c 100644
--- a/engine/lib/entities.php
+++ b/engine/lib/entities.php
@@ -402,36 +402,49 @@
// Generate uuid
$uuid = guid_to_uuid($this->getGUID());
- // Create entity
- $tmp[] = new ODDEntity(
+ // Create entity
+ $odd = new ODDEntity(
$uuid,
$this->attributes['type'],
get_subtype_from_id($this->attributes['subtype'])
);
+ $tmp[] = $odd;
+
// Now add its attributes
foreach ($this->attributes as $k => $v)
{
+ $meta = NULL;
+
switch ($k)
{
case 'guid' : // Dont use guid
case 'subtype' : // The subtype
case 'type' : // Don't use type
case 'access_id' : // Don't use access - if can export then its public for you, then importer decides what access to give this object.
- case 'time_created' : // Don't use date in export
case 'time_updated' : // Don't use date in export
break;
+
+ case 'time_created' : // Created = published
+ $odd->setAttribute('published', date("r", $v));
+ break;
case 'owner_guid' : // Convert owner guid to uuid, this will be stored in metadata
$k = 'owner_uuid';
$v = guid_to_uuid($v);
- $tmp[] = new ODDMetadata($uuid . "attr/$k/", $uuid, $k, $v);
+ $meta = new ODDMetadata($uuid . "attr/$k/", $uuid, $k, $v);
break;
default :
- $tmp[] = new ODDMetadata($uuid . "attr/$k/", $uuid, $k, $v);
+ $meta = new ODDMetadata($uuid . "attr/$k/", $uuid, $k, $v);
+ }
+
+ if ($meta)
+ {
+ $meta->setAttribute('published', date("r",$this->time_created));
+ $tmp[] = $meta;
}
}
@@ -460,7 +473,7 @@
$this->attributes['owner_guid'] = $_SESSION['id']; // Import as belonging to importer.
// Set time
- $this->attributes['time_created'] = strtotime($data->getAttribute('generated'));
+ $this->attributes['time_created'] = strtotime($data->getAttribute('published'));
$this->attributes['time_updated'] = time();
return true;
diff --git a/engine/lib/extender.php b/engine/lib/extender.php
index abf4f087d..88542a494 100644
--- a/engine/lib/extender.php
+++ b/engine/lib/extender.php
@@ -157,6 +157,11 @@
default : // Anything else assume attribute
$entity->set($attr_name, $attr_val);
}
+
+ // Set time if appropriate
+ $attr_time = $element->getAttribute('published');
+ if ($attr_time)
+ $entity->set('time_created', $attr_time);
// Save
if (!$entity->save())
diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php
index 06c187a70..d05688ea3 100644
--- a/engine/lib/metadata.php
+++ b/engine/lib/metadata.php
@@ -105,7 +105,10 @@
$type = "metadata";
$uuid = guid_to_uuid($this->entity_guid). $type . "/{$this->id}/";
- return new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid));
+ $meta = new ODDMetadata($uuid, guid_to_uuid($this->entity_guid), $this->attributes[$name], $this->attributes['value'], $type, guid_to_uuid($this->owner_guid));
+ $meta->setAttribute('published', date("r", $this->time_created));
+
+ return $meta;
}
}