Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#579 [Session] add: move content middle of page #581

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions view/session/session_card.php
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,14 @@
unset($object->fields['fk_soc']); // Hide field already shown in banner.
unset($object->fields['fk_contrat']); // Hide field already shown in banner.

$content = $object->fields['content'];
unset($object->fields['content']);

// Common attributes.
require_once DOL_DOCUMENT_ROOT . '/core/tpl/commonfields_view.tpl.php';

$object->fields['content'] = $content;

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Logique des Fields pas compris la sa sert a rien

// Categories
if ($conf->categorie->enabled) {
print '<tr><td class="valignmiddle">' . $langs->trans('Categories') . '</td><td>';
Expand All @@ -478,6 +483,21 @@

print '<div class="clearboth"></div>';

print '<table class="centpercent notopnoleftnoright table-fiche-title">';
print '<tbody>';
print '<tr class="titre">';
print '<td class="nobordernopadding valignmiddle col-title">';
print '<div class="titre inline-block">' . $langs->trans($content['label']) . '</div>';
print '</td>';
print '</tr>';
print '<tr>';
print '<td>';
print '<div class="longmessagecut">' . $object->content . '</div>';
print '</td>';
print '</tr>';
print '</tbody>';
print '</table>';

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pk ne pas utiliser la fonction pour print un titre/ pk ne pas s'inspirer du design de ticket /

print dol_get_fiche_end();

$documentTypeArray = ['trainingsession', 'attendancesheet', 'completioncertificate'];
Expand Down