CMS  Version 3.9
data_import_profile.inc
Go to the documentation of this file.
1 <?php
7 class DataImportProfile extends DataItem
8 {
9  var $table = "data_import_profile";
10  var $primary_key = "import_profile_id";
11 
12  var $fields = array("import_profile_id" => Number,
13  "profile" => String,
14  "class" => String,
15  "notes" => Text);
16 
17 }
18 ?>