function Notifications_Custom_Subscription::form_value in Notifications 6.4
Format as a form value
1 call to Notifications_Custom_Subscription::form_value()
- Notifications_Custom_Subscription::form_element in notifications_custom/
notifications_custom.class.inc - Format as a form element, which may be a visible checkbox or a hidden field
File
- notifications_custom/
notifications_custom.class.inc, line 81 - Drupal Notifications Framework - Default class file
Class
- Notifications_Custom_Subscription
- Message destination class
Code
function form_value() {
return array(
'#type' => 'value',
'#value' => $this->type,
);
}