function ARC_api::get_query_sub_handler in Taxonomy import/export via XML 6.2
Same name and namespace in other branches
- 5.2 arc/ARC_api.php \ARC_api::get_query_sub_handler()
- 5 arc/ARC_api.php \ARC_api::get_query_sub_handler()
- 6 arc/ARC_api.php \ARC_api::get_query_sub_handler()
File
- arc/
ARC_api.php, line 202
Class
Code
function get_query_sub_handler($query_type = "") {
if (in_array($query_type, array(
"select_json",
))) {
return $this
->get_component($query_type . "_sub_handler", "ARC_rdf_store_" . $query_type . "_sub_handler");
}
return false;
}