|
@@ -453,6 +453,7 @@ print '<td width="140">'.$langs->trans("Name").'</td>';
|
|
|
print '<td>'.$langs->trans("Description").'</td>';
|
|
|
print '<td align="center" width="80">'.$langs->trans("Status").'</td>';
|
|
|
print '<td align="center" width="60">'.$langs->trans("Infos").'</td>';
|
|
|
+print '<td align="center" width="60">'.$langs->trans("Preview").'</td>';
|
|
|
print "</tr>\n";
|
|
|
|
|
|
foreach ($dirsociete as $dirroot)
|
|
@@ -536,8 +537,12 @@ foreach ($dirsociete as $dirroot)
|
|
|
}
|
|
|
$htmltooltip.='<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
|
|
|
$htmltooltip.='<br>'.$langs->trans("WatermarkOnDraft").': '.yn((! empty($module->option_draft_watermark)?$module->option_draft_watermark:''), 1, 1);
|
|
|
+
|
|
|
+ print '<td align="center" class="nowrap">';
|
|
|
+ print $form->textwithpicto('',$htmltooltip,1,0);
|
|
|
+ print '</td>';
|
|
|
|
|
|
-
|
|
|
+ // Preview
|
|
|
print '<td align="center" class="nowrap">';
|
|
|
if ($module->type == 'pdf')
|
|
|
{
|
|
@@ -547,7 +552,7 @@ foreach ($dirsociete as $dirroot)
|
|
|
{
|
|
|
$linkspec=img_object($langs->trans("PreviewNotAvailable"),'generic');
|
|
|
}
|
|
|
- print $form->textwithpicto(' '.$linkspec,$htmltooltip,1,0);
|
|
|
+ print $linkspec;
|
|
|
print '</td>';
|
|
|
|
|
|
print "</tr>\n";
|