You are here

function ARC_api::get_query_sub_handler in Taxonomy import/export via XML 5.2

Same name and namespace in other branches
  1. 5 arc/ARC_api.php \ARC_api::get_query_sub_handler()
  2. 6.2 arc/ARC_api.php \ARC_api::get_query_sub_handler()
  3. 6 arc/ARC_api.php \ARC_api::get_query_sub_handler()

File

arc/ARC_api.php, line 202

Class

ARC_api

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;
}