Some checks failed
Deploy Eplan / deploy (push) Failing after 0s
Verknüpfung zur ElektroPlan PWA (Raumaufmaß mit Bluetooth-Laser). - Setup-Seite mit PWA-URL + großem Öffnen-Button - Menü-Eintrag unter Werkzeuge - Modul-Nr. 500037, Rechte: read + admin - Lang: de_DE + en_US Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
14 lines
387 B
PHP
14 lines
387 B
PHP
<?php
|
|
function eplanAdminPrepareHead()
|
|
{
|
|
global $langs, $conf;
|
|
$langs->load("eplan@eplan");
|
|
$head = array();
|
|
$h = 0;
|
|
$head[$h][0] = dol_buildpath('/eplan/admin/setup.php', 1);
|
|
$head[$h][1] = $langs->trans("Einstellungen");
|
|
$head[$h][2] = 'settings';
|
|
$h++;
|
|
complete_head_from_modules($conf, $langs, null, $head, $h, 'eplan@eplan');
|
|
return $head;
|
|
}
|