function taxonomy_service_select_nodes in Services 7
Same name and namespace in other branches
- 5 services/taxonomy_service/taxonomy_service.module \taxonomy_service_select_nodes()
- 6.3 resources/taxonomy_resource.inc \taxonomy_service_select_nodes()
- 6 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_select_nodes()
- 6.2 services/taxonomy_service/taxonomy_service.inc \taxonomy_service_select_nodes()
- 7.3 resources/taxonomy_resource.inc \taxonomy_service_select_nodes()
Services interface to taxonomy_select_nodes().
Note that where taxonomy_select_nodes() returns the results of a db_query(), this function returns an array of node objects.
Return value
An array of node objects.
See also
1 string reference to 'taxonomy_service_select_nodes'
- taxonomy_service_service in services/
taxonomy_service/ taxonomy_service.module - Implementation of hook_service().
File
- services/
taxonomy_service/ taxonomy_service.inc, line 29 - @author Services Dev Team
Code
function taxonomy_service_select_nodes($tids = array(), $fields = array(), $operator = 'or', $depth = 0, $pager = TRUE, $order = 'n.sticky DESC, n.created DESC') {
$result = taxonomy_select_nodes($tids, $operator, $depth, $pager, $order);
while ($node = db_fetch_object($result)) {
$nodes[] = services_node_load(node_load($node->nid), $fields);
}
return $nodes;
}