public function __construct()
 {
     require_once __CA_LIB_DIR__ . '/core/Parsers/File_MARC/MARC.php';
     $this->ops_name = 'MARC';
     $this->ops_element_description = _t('Values reference a combination of MARC 21 field tags and associated indicators separated by a forward slash ("/"), e.g. "300/##". For further information on how to create a MARC mapping, please refer to the CollectiveAccess online documentation.');
     parent::__construct();
 }
Exemple #2
0
 public function __construct()
 {
     $this->ops_name = 'XML';
     $this->ops_element_description = _t('Values prefixed with @ reference XML attributes. All other values define XML elements. The usual restrictions and naming conventions for XML elements and attributes apply.');
     $this->opo_dom = new DOMDocument('1.0', 'utf-8');
     // are those settings?
     parent::__construct();
 }
 public function __construct()
 {
     $this->ops_name = 'ExifTool';
     $this->ops_element_description = _t('Values are ExifTool XML element names. See http://www.sno.phy.queensu.ca/~phil/exiftool/metafiles.html#xml');
     $this->opo_dom = new DOMDocument('1.0', 'utf-8');
     $this->opo_dom->formatOutput = true;
     $this->opo_dom->preserveWhiteSpace = false;
     parent::__construct();
 }
 public function __construct()
 {
     $this->ops_name = 'CSV';
     $this->ops_element_description = _t('Values are column numbers (indexing starts at 1).');
     parent::__construct();
 }