/**
  * Constructor.
  *
  * This is just another way of instantiating a new form.
  *  $form = new Clansuite_Form(self::getFormDescription());
  */
 public function __construct()
 {
     // fill the settings array into the formgenerator
     parent::__construct(self::getFormDescription());
     // then add some additional stuff this form
     $this->setupForm();
 }