function opening_hours_week_content_type_edit_form in Opening hours 7
Same name and namespace in other branches
- 6 plugins/content_types/week.inc \opening_hours_week_content_type_edit_form()
Settings form for the content type.
File
- plugins/
content_types/ week.inc, line 39 - CTools plugin providing a Panels content type for displaying opening hours.
Code
function opening_hours_week_content_type_edit_form($form, &$form_state) {
$form['hide_if_empty'] = array(
'#type' => 'checkbox',
'#title' => t('Hide if there is no opening hours data for this node'),
'#default_value' => !empty($form_state['conf']['hide_if_empty']) ? $form_state['conf']['hide_if_empty'] : NULL,
);
return $form;
}