public function LdapProfileConfAdmin::drupalFormSubmit in Lightweight Directory Access Protocol (LDAP) 7
File
- ldap_profile/
LdapProfileConfAdmin.class.php, line 234
Class
Code
public function drupalFormSubmit($values) {
$this
->populateFromDrupalForm($values);
try {
$save_result = $this
->save();
} catch (Exception $e) {
$this->errorName = 'Save Error';
$this->errorMsg = t('Failed to save object. Your form data was not saved.');
$this->hasError = TRUE;
}
}