function ARC_rdfxml_parser::__construct in Taxonomy import/export via XML 5
Same name and namespace in other branches
- 5.2 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
- 6.2 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
- 6 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
2 calls to ARC_rdfxml_parser::__construct()
1 method overrides ARC_rdfxml_parser::__construct()
File
- arc/
ARC_rdfxml_parser.php, line 86
Class
Code
function __construct($args = "") {
$this->init_args = $args;
/* base, bnode_prefix, proxy_host, proxy_port, user_agent, headers, save_data, max_lines, encoding */
$this->skip_terms = array(
"http://www.w3.org/1999/02/22-rdf-syntax-ns# RDF",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# Description",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# ID",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# about",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# parseType",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# resource",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# nodeID",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# datatype",
"http://www.w3.org/1999/02/22-rdf-syntax-ns# type",
);
}