/**
  * @param             $name
  * @param             $type
  * @param Form        $parent
  * @param array       $options
  */
 public function __construct($name, $type, Form $parent, array $options = array())
 {
     $this->name = $name;
     $this->type = $type;
     $this->parent = $parent;
     $this->formHelper = $this->parent->getFormHelper();
     $this->setTemplate();
     $this->setDefaultOptions($options);
 }