Warning: Array to string conversion in /home/customer/www/docs.automatorplugin.com/public_html/wp-content/themes/wporg-developer/inc/template-tags.php on line 825
is_automator_pro_license_valid()

Check if pro license is valid

Contents


Return Return

(bool)


Source Source

File: src/global-functions.php

function is_automator_pro_license_valid() {
	if ( 'pro' === \Uncanny_Automator\Api_Server::get_license_type() ) {
		return true;
	}
	return false;
}