BaseseoForm.class.php 2.46 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
<?php

/**
 * seo form base class.
 *
 * @method seo 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 BaseseoForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'               => new sfWidgetFormInputHidden(array(), array()),
      'link'             => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
      'title'            => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
      'description'      => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
      'keywords'         => new sfWidgetFormInputText(array(), array("size" => 64, "maxlength" => 255)),
      'bottomTextHeader' => new sfWidgetFormInputText(array(), array("size" => 25, "maxlength" => 100)),
      'bottomText'       => new sfWidgetFormInputText(array(), array("size" => 65)),
      'created_at'       => new sfWidgetFormDateTime(array(), array("required" => true)),
      'updated_at'       => new sfWidgetFormDateTime(array(), array("required" => true)),
    ));

    $this->setValidators(array(
      'id'               => new sfValidatorDoctrineChoice(array('model' => $this->getModelName(), 'column' => 'id', 'required' => false)),
      'link'             => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'title'            => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'description'      => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'keywords'         => new sfValidatorString(array('max_length' => 255, 'required' => false)),
      'bottomTextHeader' => new sfValidatorString(array('max_length' => 100, 'required' => false)),
      'bottomText'       => new sfValidatorPass(array('required' => false)),
      'created_at'       => new sfValidatorDateTime(),
      'updated_at'       => new sfValidatorDateTime(),
    ));

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

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

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

    $this->setupInheritance();

    parent::setup();
  }

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

}