/**
  * Sets the generic default formatter name used by the class. If you want all
  * of your forms to be generated with the <code>list</code> format, you can
  * do it in a project or application configuration class:
  *
  * <pre>
  * class ProjectConfiguration extends sfProjectConfiguration
  * {
  *   public function setup()
  *   {
  *     sfWidgetFormSchema::setDefaultFormFormatterName('list');
  *   }
  * }
  * </pre>
  *
  * @param string $name  New default formatter name
  */
 public static function setDefaultFormFormatterName($name)
 {
     self::$defaultFormatterName = $name;
 }