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.
LLMS_Engagements::get_delayed_group_id( int $engagement_id )
Retrieve a group id used when scheduling delayed engagement action triggers.
Parameters Parameters
- $engagement_id
-
(int) (Required) WP_Post ID of the
llms_engagement
post type.
Return Return
(string)
Source Source
File: includes/class.llms.engagements.php
private function get_delayed_group_id( $engagement_id ) { return sprintf( 'llms_engagement_%d', $engagement_id ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
6.0.0 | Introduced. |