LLMS_Admin_Events_Promo::add_lesson_promo_tab( array $tabs )
Add an Events promo tab to Lesson Settings.
Parameters Parameters
- $tabs
-
(array) (Required) Existing tabs.
Return Return
(array)
Source Source
File: includes/admin/class-llms-admin-events-promo.php
public function add_lesson_promo_tab( $tabs ) {
$tabs[] = array(
'title' => __( 'Events', 'lifterlms' ),
'fields' => array(
array(
'id' => '_llms_events_promo',
'type' => 'custom-html',
'label' => '',
'value' => $this->get_promo_html(),
),
),
);
return $tabs;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 7.8.0 | Introduced. |