function _comment_resource_retrieve in Services 6.3
Same name and namespace in other branches
- 7.3 resources/comment_resource.inc \_comment_resource_retrieve()
Returns a specified comment
Parameters
$cid: Unique identifier for the specified comment
Return value
The comment object
1 string reference to '_comment_resource_retrieve'
- _comment_resource_definition in resources/
comment_resource.inc - @file Will define the comments resource for dealing with node comments
File
- resources/
comment_resource.inc, line 279 - Will define the comments resource for dealing with node comments
Code
function _comment_resource_retrieve($cid) {
return _comment_load($cid);
}