|
@@ -110,11 +110,9 @@ print '</table>';
|
|
|
|
|
|
// We close div and reopen for second column
|
|
|
print '</div>';
|
|
|
-print '<div class="fichehalfright">';
|
|
|
|
|
|
-print '<div class="underbanner clearboth"></div>';
|
|
|
-print '<table class="border centpercent tableforfield">';
|
|
|
|
|
|
+$rightpart = '';
|
|
|
$alreadyoutput = 1;
|
|
|
foreach ($object->fields as $key => $val) {
|
|
|
if ($alreadyoutput) {
|
|
@@ -139,38 +137,46 @@ foreach ($object->fields as $key => $val) {
|
|
|
|
|
|
$value = $object->$key;
|
|
|
|
|
|
- print '<tr><td';
|
|
|
- print ' class="'.(empty($val['tdcss']) ? 'titlefield' : $val['tdcss']).' fieldname_'.$key;
|
|
|
- //if ($val['notnull'] > 0) print ' fieldrequired'; // No fieldrequired inthe view output
|
|
|
+ $rightpart .= '<tr><td';
|
|
|
+ $rightpart .= ' class="'.(empty($val['tdcss']) ? 'titlefield' : $val['tdcss']).' fieldname_'.$key;
|
|
|
+ //if ($val['notnull'] > 0) $rightpart .= ' fieldrequired'; // No fieldrequired inthe view output
|
|
|
if ($val['type'] == 'text' || $val['type'] == 'html') {
|
|
|
- print ' tdtop';
|
|
|
+ $rightpart .= ' tdtop';
|
|
|
}
|
|
|
- print '">';
|
|
|
+ $rightpart.= '">';
|
|
|
if (!empty($val['help'])) {
|
|
|
- print $form->textwithpicto($langs->trans($val['label']), $langs->trans($val['help']));
|
|
|
+ $rightpart .= $form->textwithpicto($langs->trans($val['label']), $langs->trans($val['help']));
|
|
|
} else {
|
|
|
- print $langs->trans($val['label']);
|
|
|
+ $rightpart .= $langs->trans($val['label']);
|
|
|
}
|
|
|
- print '</td>';
|
|
|
- print '<td class="valuefield fieldname_'.$key;
|
|
|
+ $rightpart .= '</td>';
|
|
|
+ $rightpart .= '<td class="valuefield fieldname_'.$key;
|
|
|
if ($val['type'] == 'text') {
|
|
|
- print ' wordbreak';
|
|
|
+ $rightpart .= ' wordbreak';
|
|
|
}
|
|
|
if (!empty($val['cssview'])) {
|
|
|
- print ' '.$val['cssview'];
|
|
|
+ $rightpart .= ' '.$val['cssview'];
|
|
|
}
|
|
|
- print '">';
|
|
|
+ $rightpart .= '">';
|
|
|
if (in_array($val['type'], array('text', 'html'))) {
|
|
|
- print '<div class="longmessagecut">';
|
|
|
+ $rightpart .= '<div class="longmessagecut">';
|
|
|
}
|
|
|
- print $object->showOutputField($val, $key, $value, '', '', '', 0);
|
|
|
- //print dol_escape_htmltag($object->$key, 1, 1);
|
|
|
+ $rightpart .= $object->showOutputField($val, $key, $value, '', '', '', 0);
|
|
|
+ //$rightpart .= dol_escape_htmltag($object->$key, 1, 1);
|
|
|
if (in_array($val['type'], array('text', 'html'))) {
|
|
|
- print '</div>';
|
|
|
+ $rightpart .= '</div>';
|
|
|
}
|
|
|
- print '</td>';
|
|
|
- print '</tr>';
|
|
|
+ $rightpart .= '</td>';
|
|
|
+ $rightpart .= '</tr>';
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+print '<div class="fichehalfright">';
|
|
|
+print '<div class="underbanner clearboth"></div>';
|
|
|
+
|
|
|
+print '<table class="border centpercent tableforfield">';
|
|
|
+
|
|
|
+print $rightpart;
|
|
|
+
|
|
|
?>
|
|
|
<!-- END PHP TEMPLATE commonfields_view.tpl.php -->
|