diff options
Diffstat (limited to 'lib/SimpleSAML/XHTML/Template.php')
-rw-r--r-- | lib/SimpleSAML/XHTML/Template.php | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/lib/SimpleSAML/XHTML/Template.php b/lib/SimpleSAML/XHTML/Template.php index 76f5659..9fe7249 100644 --- a/lib/SimpleSAML/XHTML/Template.php +++ b/lib/SimpleSAML/XHTML/Template.php @@ -29,18 +29,6 @@ class SimpleSAML_XHTML_Template { $this->translator = new SimpleSAML\Locale\Translate($configuration, $defaultDictionary = null); } - /** - * Includes a file relative to the template base directory. - * This function can be used to include headers and footers etc. - * - */ - private function includeAtTemplateBase($file) { - $data = $this->data; - - $filename = $this->findTemplatePath($file); - - include($filename); - } /** * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Locale\Translate::getTranslation() @@ -61,22 +49,6 @@ class SimpleSAML_XHTML_Template { /** - * Wrap Language->isLanguageRTL - */ - private function isLanguageRTL() { - return $this->translator->language->isLanguageRTL(); - } - - - /** - * Wraps Language->getLanguageList - */ - private function getLanguageList() { - return $this->translator->language->getLanguageList(); - } - - - /** * Wraps Translate->includeInlineTranslation() * * @see \SimpleSAML\Locale\Translate::includeInlineTranslation() |