Re-add deprecated Pico::getBaseThemeUrl() to maintain BC

This commit is contained in:
Daniel Rudolf 2019-07-14 15:21:12 +02:00
parent ae82c16369
commit 6476d6507d
No known key found for this signature in database
GPG key ID: A061F02CD8DE4538

View file

@ -2240,6 +2240,18 @@ class Pico
return substr($path, $contentDirLength, -$contentExtLength) ?: null;
}
/**
* Returns the URL of the themes folder of this Pico instance
*
* @deprecated 3.0.0
*
* @return string
*/
public function getBaseThemeUrl()
{
return $this->getConfig('themes_url');
}
/**
* Returns the URL of a given absolute path within this Pico instance
*