CMS  Version 3.9
section_import_file.inc
Go to the documentation of this file.
1 <?php
14 class SectionImportFile extends DataItem
15 {
16  // Fields
17  var $fields = array("import_file_id" => Number,
18  "import_file" => String);
19 
20  function SectionImportFile()
21  {
22  $this->table = "";
23  $this->primary_key = "import_file_id";
24 
25  $this->DataItem(func_get_args());
26  }
27 }
28 ?>
DataItem pseudo-object to handle section XML imports.