- url */ public function getDefaultUrl() { return 'index.php?module='.$this->getModuleName().'&parent=Settings&view='.$this->getDefaultViewName(); } public function getDetailViewUrl() { $menuItem = $this->getMenuItem(); return 'index.php?module='.$this->getModuleName().'&parent=Settings&view='.$this->getDefaultViewName().'&block='.$menuItem->get('blockid').'&fieldid='.$menuItem->get('fieldid'); } /** * Function to get the url for Edit view of the module * @return - url */ public function getEditViewUrl() { $menuItem = $this->getMenuItem(); return 'index.php?module='.$this->getModuleName().'&parent=Settings&view='.$this->getEditViewName().'&block='.$menuItem->get('blockid').'&fieldid='.$menuItem->get('fieldid'); } }