function flag_handler_relationship_counts::options_form in Flag 6
Same name and namespace in other branches
- 6.2 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::options_form()
- 7.3 includes/views/flag_handler_relationships.inc \flag_handler_relationship_counts::options_form()
- 7.2 includes/flag_handler_relationships.inc \flag_handler_relationship_counts::options_form()
File
- includes/
flag_handler_relationships.inc, line 105 - Contains various relationship handlers.
Class
- flag_handler_relationship_counts
- Specialized relationship handler associating flag counts and content.
Code
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$content_type = $this->definition['flag type'];
$form['flag'] = flag_views_flag_config_form('radios', $content_type, $this->options['flag']);
$form['required']['#title'] = t('Include only flagged content');
$form['required']['#description'] = t('If checked, only content that is flagged will be included.');
}