Merge "Http::getProxy() method to get proxy configuration"
[lhc/web/wiklou.git] / includes / TemplateParser.php
index 3c62c14..20142a7 100644 (file)
@@ -38,10 +38,10 @@ class TemplateParser {
 
        /**
         * @param string $templateDir
-        * @param boolean $forceRecompile
+        * @param bool $forceRecompile
         */
        public function __construct( $templateDir = null, $forceRecompile = false ) {
-               $this->templateDir = $templateDir ? $templateDir : __DIR__ . '/templates';
+               $this->templateDir = $templateDir ?: __DIR__ . '/templates';
                $this->forceRecompile = $forceRecompile;
        }
 
@@ -49,7 +49,7 @@ class TemplateParser {
         * Constructs the location of the the source Mustache template
         * @param string $templateName The name of the template
         * @return string
-        * @throws UnexpectedValueException Disallows upwards directory traversal via $templateName
+        * @throws UnexpectedValueException If $templateName attempts upwards directory traversal
         */
        protected function getTemplateFilename( $templateName ) {
                // Prevent upwards directory traversal using same methods as Title::secureAndSplit
@@ -103,10 +103,8 @@ class TemplateParser {
 
                if ( $secretKey ) {
                        // See if the compiled PHP code is stored in cache.
-                       // CACHE_ACCEL throws an exception if no suitable object cache is present, so fall
-                       // back to CACHE_ANYTHING.
-                       $cache = ObjectCache::newAccelerator( CACHE_ANYTHING );
-                       $key = wfMemcKey( 'template', $templateName, $fastHash );
+                       $cache = ObjectCache::getLocalServerInstance( CACHE_ANYTHING );
+                       $key = $cache->makeKey( 'template', $templateName, $fastHash );
                        $code = $this->forceRecompile ? null : $cache->get( $key );
 
                        if ( !$code ) {
@@ -172,13 +170,13 @@ class TemplateParser {
                }
                return LightnCandy::compile(
                        $code,
-                       array(
+                       [
                                // Do not add more flags here without discussion.
                                // If you do add more flags, be sure to update unit tests as well.
                                'flags' => LightnCandy::FLAG_ERROR_EXCEPTION,
                                'basedir' => $this->templateDir,
                                'fileext' => '.mustache',
-                       )
+                       ]
                );
        }
 
@@ -199,7 +197,7 @@ class TemplateParser {
         * @param array $scopes
         * @return string
         */
-       public function processTemplate( $templateName, $args, array $scopes = array() ) {
+       public function processTemplate( $templateName, $args, array $scopes = [] ) {
                $template = $this->getTemplate( $templateName );
                return call_user_func( $template, $args, $scopes );
        }