[ Index ] |
|
Code source de Symfony 1.0.0 |
1 <?php 2 3 if (in_array($column->getColumn()->getPropelType(), array('VARCHAR', 'LONGVARCHAR', 'DATE','CHAR', 'TIMESTAMP'))) { 4 echo "'" . pg_escape_string($column->getValue()) . "'"; 5 } elseif ($column->getColumn()->getPropelType() == 'BOOLEAN') { 6 echo ($column->getValue() == 1 || $column->getValue() == 't' ? "'t'" : "'f'"); 7 } else { 8 echo $column->getValue(); 9 } 10 11 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Fri Mar 16 22:42:14 2007 | par Balluche grâce à PHPXref 0.7 |