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 %number messages per hour. Please try again later.",array('%number'=>variable_get('contact_hourly_threshold',3)));
}
elseif(!db_query("SELECT COUNT(cid) FROM {contact}")->fetchField()){
$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/build/contact/add')));
}
else{
returndrupal_not_found();
}
}
else{
$output=drupal_get_form('contact_mail_page');
}
...
...
@@ -26,83 +32,69 @@ function contact_site_page() {
$form['contact_information']=array('#markup'=>filter_xss_admin(variable_get('contact_form_information',t('You can leave a message using the contact form below.'))));
$form['name']=array('#type'=>'textfield',
'#title'=>t('Your name'),
'#maxlength'=>255,
'#default_value'=>$user->uid?$user->name:'',
'#required'=>TRUE,
);
$form['mail']=array('#type'=>'textfield',
'#title'=>t('Your e-mail address'),
'#maxlength'=>255,
'#default_value'=>$user->uid?$user->mail:'',
'#required'=>TRUE,
);
$form['subject']=array('#type'=>'textfield',
'#title'=>t('Subject'),
'#maxlength'=>255,
'#required'=>TRUE,
);
// If there is more than one category available and no default category has been selected,
// prepend a default placeholder value.
if(!$default_category){
if(count($categories)>1){
// If there is more than one category available and no default category has been selected,
// prepend a default placeholder value.
if(!isset($default_category)){
$default_category=t('- Please choose -');
$categories=array($default_category)+$categories;
}
$form['cid']=array('#type'=>'select',
'#title'=>t('Category'),
'#default_value'=>$default_category,
'#options'=>$categories,
'#required'=>TRUE,
);
}
else{
// If there is only one category, store its cid.
$category_keys=array_keys($categories);
$form['cid']=array('#type'=>'value',
'#value'=>array_shift($category_keys),
);
}
$form['message']=array('#type'=>'textarea',
'#title'=>t('Message'),
'#required'=>TRUE,
);
// We do not allow anonymous users to send themselves a copy
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/build/contact/add'))),'error');