summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Rettberg2019-07-16 13:40:54 +0200
committerSimon Rettberg2019-07-16 13:40:54 +0200
commitbc05888a879b6fe75bd5094361a6bdbfd2760a17 (patch)
treedc65c381f58251dc6534832e377723c0db9102be
parent[inc/Render] Add lang property to html tag (diff)
downloadslx-admin-bc05888a879b6fe75bd5094361a6bdbfd2760a17.tar.gz
slx-admin-bc05888a879b6fe75bd5094361a6bdbfd2760a17.tar.xz
slx-admin-bc05888a879b6fe75bd5094361a6bdbfd2760a17.zip
[inc/Render] Remove legacy functions
-rw-r--r--inc/render.inc.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/inc/render.inc.php b/inc/render.inc.php
index b8f911ed..f8f9e56b 100644
--- a/inc/render.inc.php
+++ b/inc/render.inc.php
@@ -152,26 +152,6 @@ class Render
}
/**
- * Add given js script file from the script directory to the header
- *
- * @param string $file file name of script
- */
- public static function addScriptTop($file)
- {
- trigger_error('Ignoring addScriptTop for ' . $file . ': Deprecated, use module-specific clientscript.js', E_USER_WARNING);
- }
-
- /**
- * Add given js script file from the script directory to the bottom
- *
- * @param string $file file name of script
- */
- public static function addScriptBottom($file)
- {
- trigger_error('Ignoring addScriptBottom for ' . $file . ': Deprecated, use module-specific clientscript.js', E_USER_WARNING);
- }
-
- /**
* Add the given template to the output, using the given params for placeholders in the template
*/
public static function addTemplate($template, $params = false, $module = false)