diff options
author | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-02-05 13:15:20 +0100 |
---|---|---|
committer | Jaime Perez Crespo <jaime.perez@uninett.no> | 2016-02-05 13:15:20 +0100 |
commit | ea366948cfd1980289037dafa17353c547cefd34 (patch) | |
tree | d6aac07afdb86fc72cde178a04da27c108ab1a58 /lib/SimpleSAML | |
parent | e3611647019def7989da766d9081ea0fe043f37e (diff) | |
download | simplesamlphp-ea366948cfd1980289037dafa17353c547cefd34.zip simplesamlphp-ea366948cfd1980289037dafa17353c547cefd34.tar.gz simplesamlphp-ea366948cfd1980289037dafa17353c547cefd34.tar.bz2 |
Get rid of unused, private methods in SimpleSAML_XHTML_Template.
Diffstat (limited to 'lib/SimpleSAML')
-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() |