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

Added hook to stop migration if non ported extension found

parent 61c95e3c
No related branches found
No related tags found
1 merge request!203Added hook to stop migration if non ported extension found
......@@ -55,8 +55,8 @@ if (!$errorMessage) {
<title>Vtiger CRM Setup</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="resources/js/jquery-min.js"></script>
<link href="../layouts/v7/lib/todc/css/bootstrap.min.css" rel="stylesheet">
<link href="../layouts/v7/lib/todc/css/todc-bootstrap.min.css" rel="stylesheet">
<link href="resources/todc/css/bootstrap.min.css" rel="stylesheet">
<link href="resources/todc/css/todc-bootstrap.min.css" rel="stylesheet">
<link href="resources/css/mkCheckbox.css" rel="stylesheet">
<link href="resources/css/style.css" rel="stylesheet">
</head>
......@@ -183,5 +183,4 @@ if (!$errorMessage) {
});
</script>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
This diff is collapsed.
......@@ -72,10 +72,12 @@ class Migration_Index_View extends Vtiger_Basic_View {
}
public function getHeaderScripts(Vtiger_Request $request) {
$headerScriptInstances = parent::getHeaderScripts($request);
$headerScriptInstances = array();
$moduleName = $request->getModule();
$jsFileNames = array(
'modules.Vtiger.resources.Popup',
"modules.Vtiger.resources.List",
"modules.$moduleName.resources.Index"
);
......
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