function ARC_api_helper::get_prop_tables in Taxonomy import/export via XML 5
Same name and namespace in other branches
- 5.2 arc/ARC_api_helper.php \ARC_api_helper::get_prop_tables()
- 6.2 arc/ARC_api_helper.php \ARC_api_helper::get_prop_tables()
- 6 arc/ARC_api_helper.php \ARC_api_helper::get_prop_tables()
2 calls to ARC_api_helper::get_prop_tables()
File
- arc/
ARC_api_helper.php, line 235
Class
Code
function get_prop_tables() {
$result = array();
$prop_tables = isset($this->config["prop_tables"]) && is_array($this->config["prop_tables"]) ? $this->config["prop_tables"] : array();
foreach ($prop_tables as $cur_tbl) {
$result[] = $cur_tbl["prop_type"] == "dt" ? "triple_dp_" . $cur_tbl["name"] : "triple_op_" . $cur_tbl["name"];
}
return $result;
}