You are here

function media_vimeo_variable_name in Media: Vimeo 7

Same name and namespace in other branches
  1. 6 includes/media_vimeo.variables.inc \media_vimeo_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 MEDIA_VIMEO_NAMESPACE.

File

includes/media_vimeo.variables.inc, line 136
media_vimeo/includes/media_vimeo.variables.inc Variable defaults for Media: Vimeo.

Code

function media_vimeo_variable_name($name) {
  return MEDIA_VIMEO_NAMESPACE . $name;
}