eplan/lib/eplan.lib.php
Eduard Wisch 3f36379265
Some checks failed
Deploy Eplan / deploy (push) Failing after 0s
feat: Dolibarr-Modul Eplan — Initial [deploy]
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>
2026-04-13 18:23:46 +02:00

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;
}