LLMS_Template_Loader::restricted_by_enrollment_lesson( array $info )
Handle redirects and messages when a user attempts to access a lesson for a course they’re not enrolled in.
Description Description
Redirect to parent course and display message.
Parameters Parameters
- $info
-
(array) (Required) Array of restriction info from
llms_page_restricted().
Return Return
(void)
Source Source
File: includes/class.llms.template.loader.php
* @return void
*/
public function restricted_by_enrollment_lesson( $info ) {
$msg = llms_get_restriction_message( $info );
$redirect = get_permalink( $info['restriction_id'] );
$this->handle_restriction(
apply_filters( 'llms_restricted_by_enrollment_lesson_message', $msg, $info ),
apply_filters( 'llms_restricted_by_enrollment_lesson_redirect', $redirect, $info ),
'error'
);
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 3.2.4 | Moved message generation to llms_get_restriction_message() |
| 3.0.0 | Introduced. |