You are here

function site_banner_get_default_background_color in Site Banner 7

Determines default site banner background color.

Return value

string default banner background color code.

2 calls to site_banner_get_default_background_color()
site_banner_admin_settings_form in ./site_banner.admin.inc
Implements hook_form_FORM_ID() for node_type_form().
site_banner_build_banner in ./site_banner.module
Builds the site banner and implementing the context hooks.

File

./site_banner.module, line 499
Main module file implementing callbacks for the site banner module.

Code

function site_banner_get_default_background_color() {
  return '#ffff00';
}