diff options
author | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-31 23:50:21 +0000 |
---|---|---|
committer | brettp <brettp@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2010-01-31 23:50:21 +0000 |
commit | 0a274719cddf5fd2cc26804fb51fdd28a1bcabe0 (patch) | |
tree | 37af4997b98822260900c376e8768da42d48cf7b /engine/lib/group.php | |
parent | 10136dab54a59af57071c56e11e5ac2b394b0a2a (diff) | |
download | elgg-0a274719cddf5fd2cc26804fb51fdd28a1bcabe0.tar.gz elgg-0a274719cddf5fd2cc26804fb51fdd28a1bcabe0.tar.bz2 |
Deprecated old search functions and views.
git-svn-id: http://code.elgg.org/elgg/trunk@3872 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'engine/lib/group.php')
-rw-r--r-- | engine/lib/group.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/engine/lib/group.php b/engine/lib/group.php index cbc34b71b..3a6f3adf1 100644 --- a/engine/lib/group.php +++ b/engine/lib/group.php @@ -867,8 +867,10 @@ function add_group_tool_option($name,$label,$default_on=true) { * @param int $offset Offset. * @param string $order_by The order. * @param boolean $count Whether to return the count of results or just the results. + * @deprecated 1.7 */ function search_for_group($criteria, $limit = 10, $offset = 0, $order_by = "", $count = false) { + elgg_log('search_for_group() was deprecated in 1.7.', 'WARNING'); global $CONFIG; $criteria = sanitise_string($criteria); @@ -905,9 +907,10 @@ function search_for_group($criteria, $limit = 10, $offset = 0, $order_by = "", $ /** * Returns a formatted list of groups suitable for injecting into search. - * + * @deprecated 1.7 */ function search_list_groups_by_name($hook, $user, $returnvalue, $tag) { + elgg_log('search_list_groups_by_name() was deprecated in 1.7.', 'WARNING'); // Change this to set the number of groups that display on the search page $threshold = 4; @@ -935,8 +938,10 @@ function search_list_groups_by_name($hook, $user, $returnvalue, $tag) { * @param string $tag Search criteria * @param int $limit The number of entities to display on a page * @return string The list in a form suitable to display + * @deprecated 1.7 */ function list_group_search($tag, $limit = 10) { + elgg_log('list_group_search() was deprecated in 1.7.', 'WARNING'); $offset = (int) get_input('offset'); $limit = (int) $limit; $count = (int) search_for_group($tag, 10, 0, '', true); |