Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Steur <thomas.steur@googlemail.com>2014-05-23 02:01:04 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-05-23 02:01:04 +0400
commit63b596a9044825185e0eeac1974e21dccac9967c (patch)
tree9a09fa9b4396af54f146b409d2a40ee219b6bcde /plugins/CoreAdminHome/CustomLogo.php
parent99d70f99068b110b33eafb09946769e3b0be6811 (diff)
started experiment making morpheus default theme
Diffstat (limited to 'plugins/CoreAdminHome/CustomLogo.php')
-rw-r--r--plugins/CoreAdminHome/CustomLogo.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/CoreAdminHome/CustomLogo.php b/plugins/CoreAdminHome/CustomLogo.php
index 7f543973c3..b4f6884793 100644
--- a/plugins/CoreAdminHome/CustomLogo.php
+++ b/plugins/CoreAdminHome/CustomLogo.php
@@ -21,7 +21,7 @@ class CustomLogo
public function getLogoUrl($pathOnly = false)
{
- $defaultLogo = 'plugins/Zeitgeist/images/logo.png';
+ $defaultLogo = 'plugins/Morpheus/images/logo.png';
$themeLogo = 'plugins/%s/images/logo.png';
$userLogo = CustomLogo::getPathUserLogo();
return $this->getPathToLogo($pathOnly, $defaultLogo, $themeLogo, $userLogo);
@@ -29,7 +29,7 @@ class CustomLogo
public function getHeaderLogoUrl($pathOnly = false)
{
- $defaultLogo = 'plugins/Zeitgeist/images/logo-header.png';
+ $defaultLogo = 'plugins/Morpheus/images/logo-header.png';
$themeLogo = 'plugins/%s/images/logo-header.png';
$customLogo = CustomLogo::getPathUserLogoSmall();
return $this->getPathToLogo($pathOnly, $defaultLogo, $themeLogo, $customLogo);
@@ -37,7 +37,7 @@ class CustomLogo
public function getSVGLogoUrl($pathOnly = false)
{
- $defaultLogo = 'plugins/Zeitgeist/images/logo.svg';
+ $defaultLogo = 'plugins/Morpheus/images/logo.svg';
$themeLogo = 'plugins/%s/images/logo.svg';
$customLogo = CustomLogo::getPathUserSvgLogo();
$svg = $this->getPathToLogo($pathOnly, $defaultLogo, $themeLogo, $customLogo);