Skip to content
Snippets Groups Projects
Commit 95ab0da5 authored by Satish's avatar Satish
Browse files

Fixes #764 - vt71 - Multiple bugs Webforms

parent 5ec66f5d
No related branches found
No related tags found
No related merge requests found
......@@ -202,4 +202,18 @@ class Settings_Vtiger_Module_Model extends Vtiger_Base_Model {
return $settingsMenuList;
}
public function getModuleIcon() {
$moduleName = $this->getName();
$moduleModel = Vtiger_Module_Model::getInstance($moduleName);
if ($moduleModel) {
$moduleIcon = $moduleModel->getModuleIcon();
} else {
$lowerModuleName = strtolower($moduleName);
$title = vtranslate($moduleName, $moduleName);
$moduleIcon = "<i class='vicon-$lowerModuleName' title='$title'></i>";
}
return $moduleIcon;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment