function content_handler_field_multiple::options in Brightcove Video Connect 6
Same name and namespace in other branches
- 6.2 brightcove_cck/views/content_handler_field_multiple.inc \content_handler_field_multiple::options()
3 calls to content_handler_field_multiple::options()
- brightcove_cck_handler_field_video::options in brightcove_cck/
views/ brightcove_cck_handler_field_video.inc - brightcove_cck_handler_field_video_date::options in brightcove_cck/
views/ brightcove_cck_handler_field_video_date.inc - brightcove_cck_handler_field_video_tags::options in brightcove_cck/
views/ brightcove_cck_handler_field_video_tags.inc
3 methods override content_handler_field_multiple::options()
- brightcove_cck_handler_field_video::options in brightcove_cck/
views/ brightcove_cck_handler_field_video.inc - brightcove_cck_handler_field_video_date::options in brightcove_cck/
views/ brightcove_cck_handler_field_video_date.inc - brightcove_cck_handler_field_video_tags::options in brightcove_cck/
views/ brightcove_cck_handler_field_video_tags.inc
File
- brightcove_cck/
views/ content_handler_field_multiple.inc, line 38 - An extended subclass for field handling that adds multiple field grouping.
Class
- content_handler_field_multiple
- @file An extended subclass for field handling that adds multiple field grouping.
Code
function options(&$options) {
parent::options($options);
$options['multiple'] = array(
'group' => TRUE,
'multiple_number' => '',
'multiple_from' => '',
'multiple_reversed' => FALSE,
);
}