Warning: This method has been deprecated. There is not a replacement instead.

LLMS_AJAX_Handler::create_lesson( array $request )

Create course’s lesson.


Parameters Parameters

$request

(array) (Required) $_POST data.


Top ↑

Return Return

(string)


Top ↑

Source Source

File: includes/class.llms.ajax.handler.php

1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
        $request['section_id'],
        $request['title'],
        $request['excerpt']
    );
 
    $html = LLMS_Meta_Box_Course_Outline::lesson_tile( $lesson_id, $request['section_id'] );
 
    return $html;
 
}
 
/**
 * Get the list of options for the lesson's select
 *
 * @since Unknown


Top ↑

Changelog Changelog

Changelog
Version Description
5.7.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.