Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
LifterLMS_Helper::crons()
Schedule and handle cron functions
Return Return
(void)
Source Source
File: libraries/lifterlms-helper/class-lifterlms-helper.php
118 119 120 121 122 123 124 125 126 | private function crons() { add_action( 'llms_helper_check_license_keys' , array ( 'LLMS_Helper_Keys' , 'check_keys' ) ); if ( ! wp_next_scheduled( 'llms_helper_check_license_keys' ) ) { wp_schedule_event( time(), 'daily' , 'llms_helper_check_license_keys' ); } } |
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |