getMetaDataFile(); $this->dv = new DetailView2(); $this->dv->ss =& $this->ss; $this->dv->setup($this->module, $this->bean, $metadataFile, 'include/DetailView/DetailView.tpl'); } /** * @see SugarView::display() */ public function display() { if(empty($this->bean->id)){ sugar_die($GLOBALS['app_strings']['ERROR_NO_RECORD']); } $this->dv->process(); echo $this->dv->display(); } }