]> git.andy128k.dev Git - ipf.git/commitdiff
datetime field
authorAndrey Kutejko <andy128k@gmail.com>
Tue, 19 Feb 2013 21:19:59 +0000 (23:19 +0200)
committerAndrey Kutejko <andy128k@gmail.com>
Tue, 19 Feb 2013 21:19:59 +0000 (23:19 +0200)
ipf/form/db/datetime.php [new file with mode: 0644]

diff --git a/ipf/form/db/datetime.php b/ipf/form/db/datetime.php
new file mode 100644 (file)
index 0000000..0e04e12
--- /dev/null
@@ -0,0 +1,8 @@
+<?php
+
+class IPF_Form_DB_Datetime extends IPF_Form_DB{
+    public $type = 'datetime';
+    function formField($def, $form_field='IPF_Form_Field_Datetime'){
+        return parent::formField($def, $form_field);
+    }
+}