LLMS_Abstract_Notification_Controller::is_testable( string $type )
Determine if the notification type support tests
Parameters Parameters
- $type
-
(string) (Required) Notification type [email|basic].
Return Return
(bool)
Source Source
File: includes/abstracts/llms.abstract.notification.controller.php
* @param string $type Notification type [email|basic]. * @return bool */ public function is_testable( $type ) { if ( empty( $this->testable[ $type ] ) ) { return false; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.24.0 | Introduced. |