function views_slideshow_galleria_variable_set in Views Slideshow: Galleria 6
Wrapper for variable_set() for Views Slideshow: Galleria variable registry.
Parameters
string $name: The variable name to set. Note that it will be namespaced by pre-pending VIEWS_SLIDESHOW_GALLERIA_NAMESPACE, as to avoid variable collisions with other modules.
unknown $value: The value for which to set the variable.
Return value
unknown Returns the stored variable after setting.
See also
views_slideshow_galleria_variable_get()
views_slideshow_galleria_variable_del()
views_slideshow_galleria_variable_default()
1 call to views_slideshow_galleria_variable_set()
- views_slideshow_galleria_path in ./
views_slideshow_galleria.module - Return the path to the Galleria plugin.
File
- includes/
views_slideshow_galleria.variables.inc, line 63 - Variable defaults for Views Slideshow: Galleria.
Code
function views_slideshow_galleria_variable_set($name, $value) {
$variable_name = VIEWS_SLIDESHOW_GALLERIA_NAMESPACE . $name;
return variable_set($variable_name, $value);
}