Author: francois
Date: 2010-04-22 15:17:16 +0200 (Thu, 22 Apr 2010)
New Revision: 29239
Modified:
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormFilterGenerator.class.php
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormGenerator.class.php
Log:
[sfPropel15Plugin] Added Oracle custom column types handling in generator
(closes #8555)
Modified:
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormFilterGenerator.class.php
===================================================================
---
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormFilterGenerator.class.php
2010-04-22 13:12:39 UTC (rev 29238)
+++
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormFilterGenerator.class.php
2010-04-22 13:17:16 UTC (rev 29239)
@@ -120,6 +120,7 @@
switch ($column->getType())
{
case PropelColumnTypes::BOOLEAN:
+ case PropelColumnTypes::BOOLEAN_EMU:
$name = 'Choice';
break;
case PropelColumnTypes::DATE:
Modified:
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormGenerator.class.php
===================================================================
---
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormGenerator.class.php
2010-04-22 13:12:39 UTC (rev 29238)
+++
plugins/sfPropel15Plugin/trunk/lib/generator/sfPropelFormGenerator.class.php
2010-04-22 13:17:16 UTC (rev 29239)
@@ -223,9 +223,11 @@
switch ($column->getType())
{
case PropelColumnTypes::BOOLEAN:
+ case PropelColumnTypes::BOOLEAN_EMU:
$name = 'InputCheckbox';
break;
case PropelColumnTypes::CLOB:
+ case PropelColumnTypes::CLOB_EMU:
case PropelColumnTypes::LONGVARCHAR:
$name = 'Textarea';
break;
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.