/**
  *
  */
 public function adddomaincreateAction()
 {
     $domain = new Administer_Lib_Meta_Domain($this->_getParam('table'), $this->_getParam('module_domain'));
     if (!file_exists($domain->get_domain_path())) {
         $domain->create_domain();
     }
     if (!file_exists($domain->get_table_path())) {
         $domain->create_table();
     }
     $this->view->domain = $domain;
 }