You are here

function file_styles_variable_name in Styles 7.2

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 FILE_STYLES_NAMESPACE.

File

contrib/file_styles/includes/file_styles.variables.inc, line 128
file_styles/includes/file_styles.variables.inc Variable defaults for File Styles.

Code

function file_styles_variable_name($name) {
  return FILE_STYLES_NAMESPACE . $name;
}