2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
$output=t("You cannot send more than %limit messages in @interval. Please try again later.",array('%limit'=>$limit,'@interval'=>format_interval($window)));
drupal_set_message(t("You cannot send more than %limit messages in @interval. Please try again later.",array('%limit'=>$limit,'@interval'=>format_interval($window))),'error');
returndrupal_access_denied();
}
elseif(!db_query("SELECT 1 FROM {contact}")->fetchField()){
// Get an array of the categories and the current default category.
$categories=db_query("SELECT cid, category FROM {contact} ORDER BY weight, category")->fetchAllKeyed();
$default_category=db_query("SELECT cid FROM {contact} WHERE selected = 1")->fetchField();
// If there are no categories, do not display the form.
if(!$categories){
if(user_access('administer contact forms')){
$output=t('The contact form has not been configured. <a href="@add">Add one or more categories</a> to the form.',array('@add'=>url('admin/structure/contact/add')));
drupal_set_message(t('The contact form has not been configured. <a href="@add">Add one or more categories</a> to the form.',array('@add'=>url('admin/structure/contact/add'))),'error');
}
else{
returndrupal_not_found();
}
}
else{
$output=drupal_get_form('contact_site_form');
}
return$output;
}
/**
* Form builder; the site-wide contact form.
*/
functioncontact_site_form($form,&$form_state){
global$user;
$categories=db_query("SELECT cid, category FROM {contact} ORDER BY weight, category")->fetchAllKeyed();
$default_category=db_query("SELECT cid FROM {contact} WHERE selected = 1")->fetchField();
// If there is more than one category available and no default category has
// been selected, prepend a default placeholder value.
...
...
@@ -162,57 +155,54 @@ function contact_site_form_submit($form, &$form_state) {
$output=t('You need to provide a valid e-mail address to contact other users. Please update your <a href="@url">user information</a> and try again.',array('@url'=>url("user/$user->uid/edit",array('query'=>drupal_get_destination()))));
$output=t("You cannot send more than %limit messages in @interval. Please try again later.",array('%limit'=>$limit,'@interval'=>format_interval($window)));
drupal_set_message(t("You cannot send more than %limit messages in @interval. Please try again later.",array('%limit'=>$limit,'@interval'=>format_interval($window))),'error');