BaseMailTemplateForm.class.php 2.24 KB
Newer Older
Игорь's avatar
init    
Игорь 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
<?php

/**
 * MailTemplate form base class.
 *
 * @method MailTemplate 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 BaseMailTemplateForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'     => new sfWidgetFormInputHidden(array(), array("autocomplete" => "off")),
      'title'  => new sfWidgetFormInputText(array(), array("autocomplete" => "off", "size" => 64, "maxlength" => 255, "required" => true)),
      'event'  => new sfWidgetFormInputText(array(), array("autocomplete" => "off", "size" => 64, "maxlength" => 255, "required" => true)),
      'theme'  => new sfWidgetFormTextarea(array(), array("autocomplete" => "off", "rows" => 5, "cols" => 70, "required" => true)),
      'copy'   => new sfWidgetFormTextarea(array(), array("autocomplete" => "off", "rows" => 5, "cols" => 70)),
      'params' => new sfWidgetFormTextarea(array(), array("autocomplete" => "off", "rows" => 5, "cols" => 70)),
      'body'   => new sfWidgetFormInputText(array(), array("autocomplete" => "off", "size" => 65, "required" => true)),
    ));

    $this->setValidators(array(
      'id'     => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
      'title'  => new sfValidatorString(array('max_length' => 255)),
      'event'  => new sfValidatorString(array('max_length' => 255)),
      'theme'  => new sfValidatorString(array('max_length' => 1000)),
      'copy'   => new sfValidatorString(array('max_length' => 1000, 'required' => false)),
      'params' => new sfValidatorString(array('max_length' => 10000, 'required' => false)),
      'body'   => new sfValidatorPass(),
    ));

    $this->validatorSchema->setPostValidator(
      new sfValidatorDoctrineUnique(array('model' => 'MailTemplate', 'column' => array('event')))
    );

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

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

    $this->setupInheritance();

    parent::setup();
  }

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

}