diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ws_functions.inc.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/ws_functions.inc.php b/include/ws_functions.inc.php index 203367356..0e4b1a8c2 100644 --- a/include/ws_functions.inc.php +++ b/include/ws_functions.inc.php @@ -1192,6 +1192,33 @@ function ws_tags_getList($params, &$service) return array('tags' => new PwgNamedArray($tags, 'tag', array('id','url_name','url', 'counter' )) ); } +/** + * returns the list of tags as you can see them in administration (web + * service method). + * + * Only admin can run this method and permissions are not taken into + * account. + */ +function ws_tags_getAdminList($params, &$service) +{ + if (!is_admin()) + { + return new PwgError(401, 'Access denied'); + } + + $tags = get_all_tags(); + return array( + 'tags' => new PwgNamedArray( + $tags, + 'tag', + array( + 'name', + 'id', + 'url_name', + ) + ) + ); +} /** * returns a list of images for tags (web service method) |