diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-10 12:29:40 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-03-10 12:29:40 +0000 |
commit | 5cdc89efc54310bb6b60b47d9cd9fb1ef9bc6b90 (patch) | |
tree | c59828cd709a15eeefc6cf5c2dd61819b0f06466 /engine/lib/sites.php | |
parent | dab73343aa7e5b6a46d9094bf5b39522e769392f (diff) | |
download | elgg-5cdc89efc54310bb6b60b47d9cd9fb1ef9bc6b90.tar.gz elgg-5cdc89efc54310bb6b60b47d9cd9fb1ef9bc6b90.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Simple maths functions added
git-svn-id: https://code.elgg.org/elgg/trunk@132 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/sites.php')
-rw-r--r-- | engine/lib/sites.php | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/engine/lib/sites.php b/engine/lib/sites.php index e8c17b34c..546ef9161 100644 --- a/engine/lib/sites.php +++ b/engine/lib/sites.php @@ -517,11 +517,7 @@ * @param string $name * @param int $site_id */ - function get_site_annotations_avg($name, $site_id) - { - // TODO : Writeme - throw new NotImplementedException("Writeme!"); - } + function get_site_annotations_avg($name, $site_id) { return get_annotations_avg($object_id, $object_type, $name); } /** * Get the sum of integer type annotations of a given type. @@ -529,11 +525,7 @@ * @param string $name * @param int $site_id */ - function get_site_annotations_sum($name, $site_id) - { - // TODO : Writeme - throw new NotImplementedException("Writeme!"); - } + function get_site_annotations_sum($name, $site_id) { return get_annotations_sum($object_id, $object_type, $name); } /** * Get the min of integer type annotations of a given type. @@ -541,11 +533,7 @@ * @param string $name * @param int $site_id */ - function get_site_annotations_min($name, $site_id) - { - // TODO : Writeme - throw new NotImplementedException("Writeme!"); - } + function get_site_annotations_min($name, $site_id) { return get_annotations_min($object_id, $object_type, $name); } /** * Get the max of integer type annotations of a given type. @@ -553,11 +541,7 @@ * @param string $name * @param int $site_id */ - function get_site_annotations_max($name, $site_id) - { - // TODO : Writeme - throw new NotImplementedException("Writeme!"); - } + function get_site_annotations_max($name, $site_id) { return get_annotations_max($object_id, $object_type, $name); } /** * Remove all site annotations, or site annotations of a given type. |