<?php

/**
 * PollQuestion form base class.
 *
 * @method PollQuestion getObject() Returns the current form's model object
 *
 * @package    mongolcom
 * @subpackage form
 * @author     Your name here
 * @version    SVN: $Id: sfDoctrineFormGeneratedTemplate.php 29553 2010-05-20 14:33:00Z Kris.Wallsmith $
 */
abstract class BasePollQuestionForm extends BaseFormDoctrine
{
  public function setup()
  {
    $this->setWidgets(array(
      'id'         => new sfWidgetFormInputHidden(),
      'poll_id'    => new sfWidgetFormDoctrineChoice(array('model' => $this->getRelatedModelName('Poll'), 'add_empty' => false)),
      'question'   => new sfWidgetFormInputText(),
      'sort_order' => new sfWidgetFormInputText(),
    ));

    $this->setValidators(array(
      'id'         => new sfValidatorChoice(array('choices' => array($this->getObject()->get('id')), 'empty_value' => $this->getObject()->get('id'), 'required' => false)),
      'poll_id'    => new sfValidatorDoctrineChoice(array('model' => $this->getRelatedModelName('Poll'))),
      'question'   => new sfValidatorString(array('max_length' => 255)),
      'sort_order' => new sfValidatorInteger(),
    ));

    $this->widgetSchema->setNameFormat('poll_question[%s]');

    $this->errorSchema = new sfValidatorErrorSchema($this->validatorSchema);

    $this->setupInheritance();

    parent::setup();
  }

  public function getModelName()
  {
    return 'PollQuestion';
  }

}
