Api_Server::get_license_type()
Method get_license_type
Return Return
(string)
Source Source
File: src/core/classes/class-api-server.php
public static function get_license_type() { if ( defined( 'AUTOMATOR_PRO_FILE' ) && 'valid' === get_option( 'uap_automator_pro_license_status' ) ) { return 'pro'; } elseif ( 'valid' === get_option( 'uap_automator_free_license_status' ) ) { return 'free'; } return false; }
Expand full source code Collapse full source code View on Github