You are here

function styles_variable_name in Styles 6

Same name and namespace in other branches
  1. 6.2 includes/styles.variables.inc \styles_variable_name()
  2. 7.2 includes/styles.variables.inc \styles_variable_name()

Return the fully namespace variable name.

Parameters

string $name: The variable name to retrieve the namespaced name.

Return value

string The fully namespace variable name, prepended with STYLES_NAMESPACE.

File

includes/styles.variables.inc, line 150
styles.variables.inc Variable defaults for Styles.

Code

function styles_variable_name($name) {
  return STYLES_NAMESPACE . $name;
}