Jump to main content
URZ Workshop „Creating websites with TUCAL“
Articles from „University news“
URZ Workshop „Creating websites with TUCAL“ 

Articles from „University news“

Extension module for displaying articles from the university news

Integration of the module

In the TUCAL editor, this information is entered in the „Seiteneinstellungen (PHP)“ (page settings) text field:

require_once('tu/inc/uni_aktuell.inc');
page settings in the editor

Basic structure

echo uni_aktuell(array $labels, integer $quantity, integer $max_age [, array $style]);

Possible parameters

  • $labels | PHP array
    • array('label1' [,'label2', ...])
    • Labels are tags or IDs of articles, linked by OR if more than one is specified
    • Tags can be faculties/institutions or target groups, for example: 'Naturwissenschaften', 'Informatik', 'MERGE', 'Forschung', 'Studierende' ...
    • Additional label 'Englisch!' retrieves English articles
    • Article IDs can be found at the end of the URL: https://www.tu-chemnitz.de/tu/pressestelle/aktuell/12345
  • $quantity | PHP integer
    • maximum displayed news (default: 10)
  • $max_age | PHP integer
    • articles younger than n days old (default: 365)
  • $style | PHP array [optional]
    • Array of values that affect the style of the news
    • Possible entries:
      'level' (2 to 6, which heading level is needed),
      'link' ('popup' = details as pop-up, otherwise new page)

Examples

echo uni_aktuell(array('Universitätsrechenzentrum'), 2180);
  • Veranstaltungen

    Viele Personen stehen vor einem Gebäude. Kinder stehen auf einer Bühne.Vorfreude auf die Weihnachtszeit

    Viele Gäste besuchten am 4. Dezember 2024 den TUCweihnachtsmarkt, der nicht nur mit einem bunten Programm auf die Advents- und Weihnachtszeit einstimmte – Weihnachtsvorlesung der Chemiker war ein Höhepunkt

  • Veranstaltungen

    Ein Weihnachstmann und viele junge Leuten stehen vor einer Straßenbahn.TUCweihnachtsmarkt öffnet seine Pforten

    Am 4. Dezember 2024 wird die Vorweihnachtszeit auf dem Campusplatz und im Hörsaalgebäude mit Musik, Unterhaltung und Leckereien eingeläutet – Unishop präsentiert erweitertes Weihnachtssortiment

echo uni_aktuell(array( 'International''Englisch!'), 4360, array('link' => 'popup'));