diff options
author | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 16:31:53 +0000 |
---|---|---|
committer | icewing <icewing@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 16:31:53 +0000 |
commit | d98c0d4c6c56d015958bdc88baa00d6ca6bcb70d (patch) | |
tree | 3aa101d7d1364ec717e22225313dd0663018a433 /engine/lib/annotations.php | |
parent | e231b7079e97f4c4a7d48670a63176f3b62158b9 (diff) | |
download | elgg-d98c0d4c6c56d015958bdc88baa00d6ca6bcb70d.tar.gz elgg-d98c0d4c6c56d015958bdc88baa00d6ca6bcb70d.tar.bz2 |
Marcus Povey <marcus@dushka.co.uk>
* Support for river entries
git-svn-id: https://code.elgg.org/elgg/trunk@701 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/annotations.php')
-rw-r--r-- | engine/lib/annotations.php | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/engine/lib/annotations.php b/engine/lib/annotations.php index 8a690769d..e04c302e1 100644 --- a/engine/lib/annotations.php +++ b/engine/lib/annotations.php @@ -98,8 +98,16 @@ function delete()
{
return delete_annotation($this->id);
- }
-
+ } + + // SYSTEM LOG INTERFACE //////////////////////////////////////////////////////////// + + /** + * For a given ID, return the object associated with it. + * This is used by the river functionality primarily. + * This is useful for checking access permissions etc on objects. + */ + public function getObjectFromID($id) { return get_annotation($id); }
}
/**
|