Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php

/*
 * This file is part of the symfony package.
 * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/**
 * Extends the form component with symfony-specific functionality.
 *
 * @package    symfony
 * @subpackage form
 * @author     Kris Wallsmith <kris.wallsmith@symfony-project.com>
 * @version    SVN: $Id: sfFormSymfony.class.php 23810 2009-11-12 11:07:44Z Kris.Wallsmith $
 */
class sfFormSymfony extends sfForm
{
  static protected
    $dispatcher = null;

  /**
   * Constructor.
   *
   * Notifies the 'form.post_configure' event.
   *
   * @see sfForm
   */
  public function __construct($defaults = array(), $options = array(), $CSRFSecret = null)
  {
    parent::__construct($defaults, $options, $CSRFSecret);

    if (self::$dispatcher)
    {
      self::$dispatcher->notify(new sfEvent($this, 'form.post_configure'));
    }
  }

  /**
   * Sets the event dispatcher to be used by all forms.
   *
   * @param sfEventDispatcher $dispatcher
   */
  static public function setEventDispatcher(sfEventDispatcher $dispatcher = null)
  {
    self::$dispatcher = $dispatcher;
  }

  /**
   * Returns the event dispatcher.
   *
   * @return sfEventDispatcher
   */
  static public function getEventDispatcher()
  {
    return self::$dispatcher;
  }

  /**
   * Notifies the 'form.filter_values' and 'form.validation_error' events.
   *
   * @see sfForm
   */
  protected function doBind(array $values)
  {
    if (self::$dispatcher)
    {
      $values = self::$dispatcher->filter(new sfEvent($this, 'form.filter_values'), $values)->getReturnValue();
    }

    try
    {
      parent::doBind($values);
    }
    catch (sfValidatorError $error)
    {
      if (self::$dispatcher)
      {
        self::$dispatcher->notify(new sfEvent($this, 'form.validation_error', array('error' => $error)));
      }

      throw $error;
    }
  }

  /**
   * Calls methods defined via sfEventDispatcher.
   *
   * @param string $method    The method name
   * @param array  $arguments The method arguments
   *
   * @return mixed The returned value of the called method
   */
  public function __call($method, $arguments)
  {
    if (self::$dispatcher)
    {
      $event = self::$dispatcher->notifyUntil(new sfEvent($this, 'form.method_not_found', array('method' => $method, 'arguments' => $arguments)));
      if ($event->isProcessed())
      {
        return $event->getReturnValue();
      }
    }

    throw new sfException(sprintf('Call to undefined method %s::%s.', get_class($this), $method));
  }
}