Radio Page Code Review Changes

Defined a SAAS_PRODUCT_BRANDING_NAME constant.
Defined constants for default station logo.
This commit is contained in:
drigato 2015-06-10 12:23:19 -04:00
parent 0796f58878
commit 8e8f8aa55b
5 changed files with 11 additions and 25 deletions

View file

@ -502,7 +502,7 @@ class Application_Model_Preference
if (!empty($description)) {
return $description;
} else {
return "Powered by Airtime Pro";
return sprintf(_("Powered by %s"), SAAS_PRODUCT_BRANDING_NAME);
}
}
@ -613,7 +613,7 @@ class Application_Model_Preference
} else {
// We return the Airtime logo if no logo is set in the database.
// airtime_logo.png is stored under the public directory
return "airtime_logo.png";
return DEFAULT_LOGO_PLACEHOLDER;
}
}