You are here

function drush_variable_realm_set in Variable 7.2

Drush command callback. Set realm's variables.

File

variable_realm/variable_realm.drush.inc, line 64
Drush commands for Variable Realm.

Code

function drush_variable_realm_set($realm_name, $realm_key, $variable_name, $value) {
  variable_realm_set($realm_name, $realm_key, $variable_name, $value);
  drush_print('Variable set.');
}