You are here

function ARC_rdfxml_parser::__construct in Taxonomy import/export via XML 5

Same name and namespace in other branches
  1. 5.2 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
  2. 6.2 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
  3. 6 arc/ARC_rdfxml_parser.php \ARC_rdfxml_parser::__construct()
2 calls to ARC_rdfxml_parser::__construct()
ARC_rdfxml_parser::ARC_rdfxml_parser in arc/ARC_rdfxml_parser.php
ARC_rdf_store_rdfxml_loader::prepare in arc/ARC_rdf_store_rdfxml_loader.php
1 method overrides ARC_rdfxml_parser::__construct()
ARC_rdf_store_rdfxml_loader::__construct in arc/ARC_rdf_store_rdfxml_loader.php

File

arc/ARC_rdfxml_parser.php, line 86

Class

ARC_rdfxml_parser

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",
  );
}