mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-03-06 18:46:17 +01:00
* NEW: Rework of the management of the card and fields on the web portal * Correction pre-commit check * Correction affichage logo login * Ajout hook * Ajout params fonction FormWebPortal::convertAllLink() * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction phpstan * Correction travis * Correction travis * Correction travis * Correction travis * Correction * Fix get options of sellist by AJAX in webportal scope * Correction pre-commit * Correction pre-commit * Add hook and change hook name for viewImage controller * Correction phan * Corrections * Corrections
32 lines
764 B
PHP
32 lines
764 B
PHP
<!-- file card-edit-header.tpl.php -->
|
|
<?php
|
|
/* Copyright (C) 2025 Open-Dsi <support@open-dsi.fr>
|
|
*/
|
|
// Protection to avoid direct call of template
|
|
if (empty($context) || !is_object($context)) {
|
|
print "Error, template page can't be called as URL";
|
|
exit(1);
|
|
}
|
|
'@phan-var-force Context $context';
|
|
'@phan-var-force AbstractCardController $this';
|
|
|
|
/**
|
|
* @var Conf $conf
|
|
* @var HookManager $hookmanager
|
|
* @var Translate $langs
|
|
* @var Context $context
|
|
* @var AbstractCardController $this
|
|
* @var FormCardWebPortal $formCard
|
|
*/
|
|
$formCard = $this->formCard;
|
|
|
|
?>
|
|
|
|
<header>
|
|
<div>
|
|
<div class="header-card-main-information inline-block valignmiddle">
|
|
<h2><?php print $langs->trans($formCard->titleKey) ?></h2>
|
|
</div>
|
|
</div>
|
|
</header>
|