You are here

public function LdapAuthenticationConfAdmin::save in Lightweight Directory Access Protocol (LDAP) 7.2

Same name and namespace in other branches
  1. 8.2 ldap_authentication/LdapAuthenticationConfAdmin.class.php \LdapAuthenticationConfAdmin::save()
  2. 7 ldap_authentication/LdapAuthenticationConfAdmin.class.php \LdapAuthenticationConfAdmin::save()
1 call to LdapAuthenticationConfAdmin::save()
LdapAuthenticationConfAdmin::drupalFormSubmit in ldap_authentication/LdapAuthenticationConfAdmin.class.php

File

ldap_authentication/LdapAuthenticationConfAdmin.class.php, line 233

Class

LdapAuthenticationConfAdmin

Code

public function save() {
  foreach ($this->saveable as $property) {
    $save[$property] = $this->{$property};
  }
  variable_set('ldap_authentication_conf', $save);
  $this
    ->load();
}