KataoProductFamilyForm.class.php 701 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * KataoProductFamily form.
  4. *
  5. * @package form
  6. * @subpackage katao_product_family
  7. * @version SVN: $Id: sfPropelFormTemplate.php 6174 2007-11-27 06:22:40Z fabien $
  8. */
  9. class KataoProductFamilyForm extends BaseKataoProductFamilyForm {
  10. public function configure() {
  11. unset($this->validatorSchema['url_identifier'], $this->validatorSchema['created_at'], $this->validatorSchema['updated_at']);
  12. unset($this->widgetSchema['url_identifier'], $this->widgetSchema['created_at'], $this->widgetSchema['updated_at']);
  13. $this->widgetSchema->setLabels(array(
  14. 'katao_product_category_id' => 'Rayon',
  15. 'name' => 'Nom',
  16. ));
  17. }
  18. }