summaryrefslogtreecommitdiffstats
path: root/lib/SimpleSAML
diff options
context:
space:
mode:
authorJaime Perez Crespo <jaime.perez@uninett.no>2016-02-05 13:15:20 +0100
committerJaime Perez Crespo <jaime.perez@uninett.no>2016-02-05 13:15:20 +0100
commitea366948cfd1980289037dafa17353c547cefd34 (patch)
treed6aac07afdb86fc72cde178a04da27c108ab1a58 /lib/SimpleSAML
parente3611647019def7989da766d9081ea0fe043f37e (diff)
downloadsimplesamlphp-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.php28
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()