/** * @return string */ function getTransformScript() { if (!isset($this->transformScript)) { $this->transformScript = false; if ($this->repo) { $script = $this->repo->getThumbScriptUrl(); if ($script) { $this->transformScript = "{$script}?f=" . urlencode($this->getName()); } } } return $this->transformScript; }
/** * @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; }