BaseBasketOfferForm.class.php 1.77 KB
Newer Older
Яков's avatar
first  
Яков committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?php

/**
 * BasketOffer form base class.
 *
 * @method BasketOffer getObject() Returns the current form's model object
 *
 * @package    sf
 * @subpackage form
 * @author     Atma
 * @version    SVN: $Id: sfDoctrineFormGeneratedTemplate.php 24171 2009-11-19 16:37:50Z Kris.Wallsmith $
 */
abstract class BaseBasketOfferForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'        => new sfWidgetFormInputHidden(array(), array()),
      'amount'    => new sfWidgetFormInputText(array(), array("size" => 8, "maxlength" => 8, "required" => true)),
      'basket_id' => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('Basket'), 'add_empty' => false), array("required" => true)),
      'offer_id'  => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('Offer'), 'add_empty' => false), array("required" => true)),
      'price'     => new sfWidgetFormInputText(array(), array("size" => 18, "maxlength" => 18, "required" => true)),
    ));

    $this->setValidators(array(
      'id'        => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
      'amount'    => new sfValidatorInteger(array('required' => false)),
      'basket_id' => new sfValidatorDoctrineChoice(array('model' => $this->getRelatedModelName('Basket'))),
      'offer_id'  => new sfValidatorDoctrineChoice(array('model' => $this->getRelatedModelName('Offer'))),
      'price'     => new sfValidatorNumber(),
    ));

    $this->widgetSchema->setNameFormat('basket_offer[%s]');

    $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);

    $this->setupInheritance();

    parent::setup();
  }

  public function getModelName()
  {
    return 'BasketOffer';
  }

}