From 8d81da253cf86c02457483237362649ddea4034d Mon Sep 17 00:00:00 2001 From: oesi Date: Wed, 9 Mar 2016 17:16:36 +0100 Subject: [PATCH] =?UTF-8?q?Scripte=20zum=20=C3=9Cberschreiben=20von=20Core?= =?UTF-8?q?=20Funktionalit=C3=A4ten=20zu=20Template=20Addon=20hinzugef?= =?UTF-8?q?=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- addons/template/cis/init.js.php | 44 +++++++++++++++++++++++++++++ addons/template/vilesci/init.js.php | 44 +++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+) create mode 100644 addons/template/cis/init.js.php create mode 100644 addons/template/vilesci/init.js.php diff --git a/addons/template/cis/init.js.php b/addons/template/cis/init.js.php new file mode 100644 index 000000000..174f620ed --- /dev/null +++ b/addons/template/cis/init.js.php @@ -0,0 +1,44 @@ + + */ +/** + * Initialisierung des Addons + */ +?> +if(typeof addon =='undefined') + var addon=Array(); + +addon.push( +{ + init: function(page, params) + { + // Diese Funktion wird nach dem Laden der Seite im CIS aufgerufen + + /* + switch(page) + { + case 'cis/private/tools/zeitaufzeichnung.php': + break; + + default: + break; + } + */ + } +}); diff --git a/addons/template/vilesci/init.js.php b/addons/template/vilesci/init.js.php new file mode 100644 index 000000000..5ac9310ca --- /dev/null +++ b/addons/template/vilesci/init.js.php @@ -0,0 +1,44 @@ + + */ +/** + * Initialisierung des Addons + */ +?> +if(typeof addon =='undefined') + var addon=Array(); + +addon.push( +{ + init: function(page, params) + { + // Diese Funktion wird nach dem Laden der Seite im Vilesci aufgerufen + + /* + switch(page) + { + case 'vilesci/lehre/lehrveranstaltung.php': + break; + + default: + break; + } + */ + } +});