LLMS_Meta_Box_Lesson::configure()
This function allows extending classes to configure required class properties $this->id, $this->title, and $this->screens should be configured in this function
Contents
Return Return
(void)
Source Source
File: includes/admin/post-types/meta-boxes/class.llms.meta.box.lesson.php
public function configure() { $this->id = 'lifterlms-lesson'; $this->title = __( 'Lesson Settings', 'lifterlms' ); $this->screens = array( 'lesson', ); $this->priority = 'high'; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.0.0 | Introduced. |