Drupal: Make single checkbox a required field

This CodeLet will make a single checkbox a require field. This is usefule when you are creating a checkbox in your custom module.

CodeLet: 

<?php
$form['terms_condition'] = array(
'#type' => 'checkboxes',
'#title' => t('Terms & condition'),
'#options' => array(
1 => t('I agree to Terms & condition'),
),
'#required' => TRUE,
);
?>

Make single checkbox a required field in Drupal | Drupal Developer

By DrupalD on Fri, 12/07/2013 - 7:49pm

Add comment

Log in or register to post comments
Feedback