Plugins  LAST
 All Data Structures Files Functions Variables Pages
Public Member Functions
Importcard_Format_SQL Class Reference
Inheritance diagram for Importcard_Format_SQL:
Inheritance graph
Collaboration diagram for Importcard_Format_SQL:
Collaboration graph

Public Member Functions

 __construct (Database $p_cn, $p_id=-1)
 

Detailed Description

Definition at line 29 of file class_impcard_format_sql.php.

Constructor & Destructor Documentation

Importcard_Format_SQL::__construct ( Database  $p_cn,
  $p_id = -1 
)

Definition at line 32 of file class_impcard_format_sql.php.

References name, and table.

33  {
34  $this->table="importcard.format";
35  $this->primary_key="id";
36  /*
37  * List of columns
38  */
39  $this->name=array(
40  "id"=>"id"
41  , "f_name"=>"f_name"
42  , "f_card_category"=>"f_card_category"
43  , "f_skiprow"=>"f_skiprow"
44  , "f_delimiter"=>"f_delimiter"
45  , "f_surround"=>"f_surround"
46  , "f_unicode_encoding"=>"f_unicode_encoding"
47  , "f_position"=>"f_position"
48  , "f_saved"=>"f_saved"
49  );
50  /*
51  * Type of columns
52  */
53  $this->type=array(
54  "id"=>"numeric"
55  , "f_name"=>"text"
56  , "f_card_category"=>"numeric"
57  , "f_skiprow"=>"numeric"
58  , "f_delimiter"=>"text"
59  , "f_surround"=>"text"
60  , "f_unicode_encoding"=>"text"
61  , "f_position"=>"text"
62  , "f_saved"=>"numeric"
63  );
64 
65 
66  $this->default=array(
67  "id"=>"auto"
68  );
69 
70  $this->date_format="DD.MM.YYYY";
71  parent::__construct($p_cn, $p_id);
72  }
$categorie_appel table
$categorie_appel name

The documentation for this class was generated from the following file: