Files
FHC-Core/application/config/cis.php
T
Paolo ac5bbf7ac6 - Added new global constant FHC_OE_ROOT in config/global.config-default.inc.php
- Replaced where needed the string "etw" with FHC_OE_ROOT
- Added new config entry "cis_oes_lehrauftraege" in application/config/cis.php
- Used the new config entry "cis_oes_lehrauftraege" in the view
  application/views/lehre/lehrauftrag/acceptLehrauftrag.php to replace
  the hard coded strings "etw" and "lehrgang"
2026-02-18 11:19:41 +01:00

24 lines
782 B
PHP

<?php
if (! defined('BASEPATH')) exit('No direct script access allowed');
// CMS Content Id for CIS4 Menu Root
$config['cis_menu_root_content_id'] = 11091;
// send Mails for ProfilUpdate
$config['cis_send_profil_update_mails'] = true;
// Vilesci CI BaseUrl
$config['cis_vilesci_base_url'] = defined('VILESCI_ROOT') ? VILESCI_ROOT : APP_ROOT;
$config['cis_vilesci_index_page'] = 'index.ci.php';
// Cis CI BaseUrl
$config['cis_base_url'] = defined('CIS_ROOT') ? CIS_ROOT : APP_ROOT;
$config['cis_index_page'] = 'cis.php';
// Associative array of OEs allowed to have lehrauftraege
// Array structure: OE => Name of the phrase that contains the name of the OE
$config['cis_oes_lehrauftraege'] = array(
'etw' => 'PDFLehrauftraegeFH',
'lehrgang' => 'PDFLehrauftraegeLehrgaenge'
);