LLMS_Abstract_Notification_View::set_supported_fields()
Define field support for the view
Description Description
Extending classes can override this 3rd parties should filter $this->get_supported_fields().
Return Return
(array)
Source Source
File: includes/abstracts/llms.abstract.notification.view.php
protected function set_supported_fields() {
return array(
'basic' => array(
'body' => true,
'title' => true,
'icon' => true,
),
'email' => array(
'body' => true,
'subject' => true,
'title' => true,
),
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.8.0 | Introduced. |