Example #1
0
 /**
  * @return string
  */
 function getTransformScript()
 {
     if (!isset($this->transformScript)) {
         $this->transformScript = false;
         if ($this->repo) {
             $script = $this->repo->getThumbScriptUrl();
             if ($script) {
                 $this->transformScript = wfAppendQuery($script, array('f' => $this->getName()));
             }
         }
     }
     return $this->transformScript;
 }