function ARC_rdf_store::set_graph_var in Taxonomy import/export via XML 6
Same name and namespace in other branches
- 5.2 arc/ARC_rdf_store.php \ARC_rdf_store::set_graph_var()
- 5 arc/ARC_rdf_store.php \ARC_rdf_store::set_graph_var()
- 6.2 arc/ARC_rdf_store.php \ARC_rdf_store::set_graph_var()
File
- arc/
ARC_rdf_store.php, line 169
Class
Code
function set_graph_var($g_hash = "", $var_name = "", $var_val = "") {
$g_hash = !$g_hash || strpos($g_hash, ":") !== false ? md5($g_hash) : $g_hash;
return $this
->set_store_var("g", $g_hash, $var_name, $var_val);
}