* @param $timeupper
* @return unknown_type
*/
-function get_entities_from_annotations($entity_type = "", $entity_subtype = "", $name = "", $value = "", $owner_guid = 0, $group_guid = 0, $limit = 10, $offset = 0, $order_by = "asc", $count = false, $timelower = 0, $timeupper = 0) {
+function get_entities_from_annotations($entity_type = "", $entity_subtype = "", $name = "", $value = "",
+$owner_guid = 0, $group_guid = 0, $limit = 10, $offset = 0, $order_by = "asc", $count = false,
+$timelower = 0, $timeupper = 0) {
elgg_log('get_entities_from_annotations() was deprecated in 1.7 by elgg_get_entities_from_annotations()!', 'WARNING');
if ($group_guid) {
$options['container_guid'] = $group_guid;
}
-
+
if ($limit) {
$options['limit'] = $limit;
}
$options['count'] = $count;
}
- // need to be able to pass false
- $options['annotations_case_sensitive'] = $case_sensitive;
-
return elgg_get_entities_from_annotations($options);
}