LLMS_Lab_Course_Author_Module::__construct()
Constructor.
Contents
Return Return
(void)
Source Source
File: includes/beaver-builder/modules/course-author/class.llms.lab.course.author.module.php
public function __construct() {
parent::__construct(
array(
'name' => esc_html__( 'Course Author', 'lifterlms' ),
'description' => esc_html__( 'Displays the name, author, and bio for the author of a course.', 'lifterlms' ),
'category' => esc_html__( 'LifterLMS Modules', 'lifterlms' ),
'dir' => LLMS_BB_MODULES_DIR . 'course-author/',
'url' => LLMS_BB_MODULES_URL . 'course-author/',
'editor_export' => false,
'enabled' => true,
)
);
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 1.7.0 | Escape strings. |
| 1.3.0 | Introduced. |