/**
  * Provides an array or GET parameters for URL generation
  *
  * @param array $values Array of values to include into the parameters or which might influence the parameters
  *
  * @return string[] Array of parameters which have to be added to URLs
  */
 public function getUrlParameters(array $values)
 {
     $parameters = ['expandFolder' => isset($values['identifier']) ? $values['identifier'] : (string) $this->expandFolder];
     return array_merge($this->selectImageController->getUrlParameters($values), $parameters);
 }
Esempio n. 2
0
 /**
  * Returns the URL of the current script
  *
  * @return string
  */
 public function getScriptUrl()
 {
     return $this->selectImageController->getScriptUrl();
 }