From 5cdc89efc54310bb6b60b47d9cd9fb1ef9bc6b90 Mon Sep 17 00:00:00 2001 From: icewing Date: Mon, 10 Mar 2008 12:29:40 +0000 Subject: Marcus Povey * Simple maths functions added git-svn-id: https://code.elgg.org/elgg/trunk@132 36083f99-b078-4883-b0ff-0f9b5a30f544 --- engine/lib/annotations.php | 92 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 92 insertions(+) (limited to 'engine/lib/annotations.php') diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 4c1d15cb0..3a950568f 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -325,6 +325,98 @@ return false; } + /** + * Return the sum of a given integer annotation. + * + * @param $object_id int + * @param $object_type string + * @param $name string + */ + function get_annotations_sum($object_id, $object_type, $name) + { + global $CONFIG; + + $object_id = (int)$object_id; + $object_type = sanitise_string($object_type); + $name = santitise_string($name); + + $row = get_data_row("SELECT sum(value) as sum from {$CONFIG->dbprefix}annotations where object_id=$object_id and object_type='$object_type' and value_type='integer' and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); + + if ($row) + return $row->sum; + + return false; + } + + /** + * Return the max of a given integer annotation. + * + * @param $object_id int + * @param $object_type string + * @param $name string + */ + function get_annotations_max($object_id, $object_type, $name) + { + global $CONFIG; + + $object_id = (int)$object_id; + $object_type = sanitise_string($object_type); + $name = santitise_string($name); + + $row = get_data_row("SELECT max(value) as max from {$CONFIG->dbprefix}annotations where object_id=$object_id and object_type='$object_type' and value_type='integer' and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); + + if ($row) + return $row->max; + + return false; + } + + /** + * Return the minumum of a given integer annotation. + * + * @param $object_id int + * @param $object_type string + * @param $name string + */ + function get_annotations_min($object_id, $object_type, $name) + { + global $CONFIG; + + $object_id = (int)$object_id; + $object_type = sanitise_string($object_type); + $name = santitise_string($name); + + $row = get_data_row("SELECT min(value) as min from {$CONFIG->dbprefix}annotations where object_id=$object_id and object_type='$object_type' and value_type='integer' and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); + + if ($row) + return $row->min; + + return false; + } + + /** + * Return the average of a given integer annotation. + * + * @param $object_id int + * @param $object_type string + * @param $name string + */ + function get_annotations_avg($object_id, $object_type, $name) + { + global $CONFIG; + + $object_id = (int)$object_id; + $object_type = sanitise_string($object_type); + $name = santitise_string($name); + + $row = get_data_row("SELECT avg(value) as avg from {$CONFIG->dbprefix}annotations where object_id=$object_id and object_type='$object_type' and value_type='integer' and name='$name' and (access_id in {$access} or (access_id = 0 and owner_id = {$_SESSION['id']}))"); + + if ($row) + return $row->avg; + + return false; + } + /** * Delete a given annotation. * -- cgit v1.2.3