KataoProductCategoryForm.class.php 896 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * KataoProductCategory form.
  4. *
  5. * @package form
  6. * @subpackage katao_product_category
  7. * @version SVN: $Id: sfPropelFormTemplate.php 6174 2007-11-27 06:22:40Z fabien $
  8. */
  9. class KataoProductCategoryForm extends BaseKataoProductCategoryForm {
  10. public function configure() {
  11. unset($this->validatorSchema['katao_supplier_product_category_list'], $this->validatorSchema['url_identifier'], $this->validatorSchema['created_at'], $this->validatorSchema['updated_at']);
  12. unset($this->widgetSchema['katao_supplier_product_category_list'], $this->widgetSchema['url_identifier'], $this->widgetSchema['created_at'], $this->widgetSchema['updated_at']);
  13. $this->widgetSchema->setLabels(array(
  14. 'name' => 'Nom',
  15. 'accounting_code_suffix' => 'Code comptable (suffixe)',
  16. 'sort_order' => 'Ordre menu',
  17. ));
  18. }
  19. }