';
+ print '';
$pathtofile = $listofmodules[strtolower($module)]['moduledescriptorrelpath'];
+ print '| ';
print ' '.$langs->trans("DescriptorFile").' : '.$pathtofile.'';
print ' | ';
- print ''.img_picto($langs->trans("Edit"), 'edit').'';
+ print ''.img_picto($langs->trans("Edit"), 'edit').'';
print ' | ';
print '| ';
@@ -3113,13 +3114,15 @@ elseif (!empty($module))
if (dol_is_file($dirins.'/'.$pathtohook))
{
print ''.$pathtohook.'';
- print ' | '.img_picto($langs->trans("Edit"), 'edit').' | ';
- print ''.img_picto($langs->trans("Delete"), 'delete').' | ';
+ print '';
+ print ''.img_picto($langs->trans("Edit"), 'edit').' ';
+ print ''.img_picto($langs->trans("Delete"), 'delete').' | ';
}
else
{
print ''.$langs->trans("FileNotYetGenerated").'';
- print ' | ';
+ print '';
+ print ' | ';
}
print ' ';
}
@@ -3163,6 +3166,14 @@ elseif (!empty($module))
print ' ';
print '';
}
else
@@ -3227,7 +3240,7 @@ elseif (!empty($module))
if (dol_is_file($dirins.'/'.$pathtohook))
{
print ''.$pathtohook.'';
- print ''.img_picto($langs->trans("Edit"), 'edit').' | ';
+ print ''.img_picto($langs->trans("Edit"), 'edit').' | ';
print ''.img_picto($langs->trans("Delete"), 'delete').' | ';
}
else
@@ -3279,7 +3292,7 @@ elseif (!empty($module))
if (dol_is_file($dirins.'/'.$pathtohook))
{
print ''.$pathtohook.'';
- print ''.img_picto($langs->trans("Edit"), 'edit').' | ';
+ print ''.img_picto($langs->trans("Edit"), 'edit').' | ';
print ''.img_picto($langs->trans("Delete"), 'delete').' | ';
}
else
@@ -3335,7 +3348,7 @@ elseif (!empty($module))
$pathtofile = $widget['relpath'];
print '| '.$langs->trans("WidgetFile").' : '.$pathtofile.'';
- print ' | '.img_picto($langs->trans("Edit"), 'edit').'';
+ print ' | '.img_picto($langs->trans("Edit"), 'edit').'';
print ' | '.img_picto($langs->trans("Delete"), 'delete').' | ';
print ' ';
}
@@ -3473,7 +3486,7 @@ elseif (!empty($module))
print ' ';
print ' '.$langs->trans("DescriptorFile").' : '.$pathtofile.'';
- print ' '.img_picto($langs->trans("Edit"), 'edit').'';
+ print ' '.img_picto($langs->trans("Edit"), 'edit').'';
print ' ';
print ' ';
@@ -3602,7 +3615,7 @@ elseif (!empty($module))
if (preg_match('/\.md$/i', $spec['name'])) $format = 'markdown';
print '| ';
print ' '.$langs->trans("SpecificationFile").' : '.$pathtofile.'';
- print ' | '.img_picto($langs->trans("Edit"), 'edit').' | ';
+ print ''.img_picto($langs->trans("Edit"), 'edit').' | ';
print ''.img_picto($langs->trans("Delete"), 'delete').' | ';
print ' ';
}
@@ -3657,7 +3670,7 @@ elseif (!empty($module))
// HTML
print ' '.$langs->trans("PathToModuleDocumentation", "HTML").' : ';
- if (!dol_is_file($outputfiledoc)) print ''.$langs->trans("FileNotYetGenerated").'';
+ if (!dol_is_file($outputfiledoc)) print ''.$langs->trans("FileNotYetGenerated").'';
else {
print '';
print '';
@@ -3670,7 +3683,7 @@ elseif (!empty($module))
// PDF
print ' '.$langs->trans("PathToModuleDocumentation", "PDF").' : ';
- if (!dol_is_file($outputfiledocpdf)) print ''.$langs->trans("FileNotYetGenerated").'';
+ if (!dol_is_file($outputfiledocpdf)) print ''.$langs->trans("FileNotYetGenerated").'';
else {
print '';
print '';
@@ -3744,7 +3757,7 @@ elseif (!empty($module))
print ' ';
print ' '.$langs->trans("PathToModulePackage").' : ';
- if (!dol_is_file($outputfilezip)) print ''.$langs->trans("FileNotYetGenerated").'';
+ if (!dol_is_file($outputfilezip)) print ''.$langs->trans("FileNotYetGenerated").'';
else {
$relativepath = $modulelowercase.'/bin/'.$FILENAMEZIP;
print ''.$outputfilezip.'';
|