function Notifications_Subscription_Table::set_header in Notifications 7
Set fields as header
File
- ./
notifications.list.inc, line 642 - Drupal Notifications Framework - Default class file
Class
- Notifications_Subscription_Table
- Loadable collection of subscriptions for tablesel ect
Code
function set_header($header = NULL) {
if (isset($header)) {
$this->header = $header;
}
else {
$this->header = $this
->get_header();
}
return $this;
}