BasecsSettingForm.class.php 2.51 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
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php

/**
 * csSetting form base class.
 *
 * @method csSetting 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 BasecsSettingForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'              => new sfWidgetFormInputHidden(array(), array()),
      'name'            => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255, "required" => true)),
      'type'            => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255, "required" => true)),
      'widget_options'  => new sfWidgetFormTextarea(array(), array("rows" => 5, "cols" => 70)),
      'value'           => new sfWidgetFormTextarea(array(), array("rows" => 5, "cols" => 70)),
      'setting_group'   => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
      'setting_default' => new sfWidgetFormTextarea(array(), array("rows" => 5, "cols" => 70)),
      'slug'            => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
    ));

    $this->setValidators(array(
      'id'              => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
      'name'            => new sfValidatorString(array('max_length' => 255)),
      'type'            => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'widget_options'  => new sfValidatorString(array('required' => false)),
      'value'           => new sfValidatorString(array('required' => false)),
      'setting_group'   => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'setting_default' => new sfValidatorString(array('required' => false)),
      'slug'            => new sfValidatorString(array('max_length' => 255, 'required' => false)),
    ));

    $this->validatorSchema->setPostValidator(
      new sfValidatorAnd(array(
        new sfValidatorDoctrineUnique(array('model' => 'csSetting', 'column' => array('name'))),
        new sfValidatorDoctrineUnique(array('model' => 'csSetting', 'column' => array('slug'))),
      ))
    );

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

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

    $this->setupInheritance();

    parent::setup();
  }

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

}