LLMS_Abstract_Notification_Controller::is_testable( string $type )

Determine if the notification type support tests


Parameters Parameters

$type

(string) (Required) Notification type [email|basic].


Top ↑

Return Return

(bool)


Top ↑

Source Source

File: includes/abstracts/llms.abstract.notification.controller.php

	public function is_testable( $type ) {

		if ( empty( $this->testable[ $type ] ) ) {
			return false;
		}

		return true;

	}

Top ↑

Changelog Changelog

Changelog
Version Description
3.24.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.