<?php // =========================================================================== // CONFIG.TEAMCAL.PHP // -------------------------------------------------------------------------- // Application: TeamCal // Purpose: Set basic configuration for TeamCal // Author: George Lewe // Copyright: (c) 2004-2009 by Lewe.com (www.lewe.com) // All rights reserved. // // ===========================================================================
Hier wird die Sprache für die Oberfläche von TeamCal und der Subtitel der über der Menüleiste erscheint gesetzt:
// Language require("lang/english.teamcal.php"); // require("lang/deutsch.teamcal.php"); // __________________________________________________________________________ // Your Information // *** You can change these settings! *** // The footer copyright note is meant to refer to the entity hosting/providing // the TeamCal application to its users. The powered-by statement however must // always be visible and may not be changed. $tc_config['app_subtitle'] = "Your Subtitle Here"; $tc_config['app_footer_cpy'] = "Copyright © 2004-2009 by <a href=\"http://www.lewe.com\" class=\"copyright\">Lewe.com</a>.";
Hier wird die Beschriftung für die Tagessymbole (Abwesenheitscodes) unter dem Menüpunkt Legende/Legend gesetzt:
// __________________________________________________________________________ // Absence Type // Describes the type of absence (or presence) of a team member for a given // day and assigns a symbol to be used in the INI file. Check the language // file for displaying different symbols in the calendar. $tc_config['present'] = '.'; $tc_config['duty_trip'] = 'D'; $tc_config['day_off'] = 'F'; $tc_config['home_office'] = 'H'; $tc_config['not_present'] = 'N'; $tc_config['sick'] = 'S'; $tc_config['training'] = 'T'; $tc_config['vacation'] = 'V'; $tc_config['blocked'] = 'B'; ?>
Achtung - alle anderen Einträge bitte **nicht** verändern !
der Eintrag „$tc_config['present'] = '.';“ wird momentan nicht ausgewertet/verwendet ! - diesen Eintrag nicht löschen, er wird intern verwendet !