function pollim_handler_link_field::options_form in Poll Improved 7
Default options form provides the label widget that all fields should have.
Overrides views_handler_field::options_form
File
- views/
pollim_handler_link_field.inc, line 25 - Contains a Views field handler to take care of displaying links to entities as fields.
Class
- pollim_handler_link_field
- @file Contains a Views field handler to take care of displaying links to entities as fields.
Code
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['text'] = array(
'#type' => 'textfield',
'#title' => t('Text to display'),
'#default_value' => $this->options['text'],
);
}