From 39065cc82c617b0fb35c6e05c9f8fbade512f203 Mon Sep 17 00:00:00 2001 From: icewing Date: Wed, 5 Mar 2008 14:42:35 +0000 Subject: Types forced on $object->value git-svn-id: https://code.elgg.org/elgg/trunk@77 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/metadata.php | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) (limited to 'engine/lib/metadata.php') diff --git a/engine/lib/metadata.php b/engine/lib/metadata.php index 946f7fcba..7483bc0eb 100644 --- a/engine/lib/metadata.php +++ b/engine/lib/metadata.php @@ -24,14 +24,20 @@ private $attributes; /** - * Construct a new site object, optionally from a given id value. + * Construct a new site object, optionally from a given id value or row. * - * @param int $id + * @param mixed $id */ function __construct($id = null) { if (!empty($id)) { - if ($metadata = get_metadata($id)) { + + if ($id instanceof stdClass) + $metadata = $id; // Create from db row + else + $metadata = get_metadata($id); + + if ($metadata) { $objarray = (array) $metadata; foreach($objarray as $key => $value) { $this->attributes[$key] = $value; @@ -42,6 +48,21 @@ function __get($name) { if (isset($attributes[$name])) { + + // Sanitise value if necessary + if ($name=='value') + { + switch ($attributes['value_type']) + { + case 'integer' : return (int)$attributes['value']; + case 'tag' : + case 'text' : + case 'file' : return sanitise_string($attributes['value']); + + default : throw new InstallationException("Type {$attributes['value_type']} is not supported. This indicates an error in your installation, most likely caused by an incomplete upgrade."); + } + } + return $attributes[$name]; } return null; @@ -154,6 +175,7 @@ * @param string $order_by * @param int $limit * @param int $offset + * @return array of ElggMetadata */ function get_metadatas($object_id = 0, $object_type = "", $owner_id = 0, $order_by = "created desc", $limit = 10, $offset = 0) { -- cgit v1.2.3