summaryrefslogtreecommitdiff
path: root/it_dbi.class
diff options
context:
space:
mode:
authorChristian Schneider2012-01-18 13:29:30 +0000
committerChristian Schneider2012-01-18 13:29:30 +0000
commit6c1d543ed7b45629cbf2731449506c24f9798b9f (patch)
tree9304d66c5ff7789f72965f6e3de4bc105f25f1c1 /it_dbi.class
parent4279e7b79da13bbf013c7d5394a5f34182709e56 (diff)
downloaditools-6c1d543ed7b45629cbf2731449506c24f9798b9f.tar.gz
itools-6c1d543ed7b45629cbf2731449506c24f9798b9f.tar.bz2
itools-6c1d543ed7b45629cbf2731449506c24f9798b9f.zip
Update declaration and documentation of _convertfunc
Diffstat (limited to 'it_dbi.class')
-rw-r--r--it_dbi.class8
1 files changed, 4 insertions, 4 deletions
diff --git a/it_dbi.class b/it_dbi.class
index 04206ca..50f08b9 100644
--- a/it_dbi.class
+++ b/it_dbi.class
@@ -39,10 +39,10 @@ class it_dbi
'localized_defaultlanguage' => "de", # Localize fields with this suffix, e.g. copy title_de to title on read
);
- var $_key; # Key of currently loaded record or null (public readonly)
- var $_fields; # Array of name => array(Field,Type,Null,Key,Default,Extra,Length) of fields (public readonly)
- var $_isint; # Array of name => bool if field is an INT field
- var $_link; # DB link identifier (private)
+ var $_key; # Key of currently loaded record or null (public readonly)
+ var $_fields; # Array of name => array(Field,Type,Null,Key,Default,Extra,Length) of fields (public readonly)
+ var $_convertfunc; # Array of name => convert function (currently intval and floatval) for this field's values
+ var $_link; # DB link identifier (private)
/**