public function getDom()
 {
     return parent::getDom();
 }
 /**
  * Finds the element in the view referenced by $id
  * @param string $id
  */
 public function __get($id)
 {
     return $this->_view->getElement($id);
 }
 public function createPhElement(SimpleXMLElement $e, phFormView $view)
 {
     $form = $view->getForm()->getForm($view->getRealName((string) $e->attributes()->name));
     return $form;
 }