LLMS_Admin_Events_Promo::add_course_promo_tab( array $tabs )

Add an Events promo tab to Course Options.


Parameters Parameters

$tabs

(array) (Required) Existing tabs.


Top ↑

Return Return

(array)


Top ↑

Source Source

File: includes/admin/class-llms-admin-events-promo.php

	public function add_course_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;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
7.8.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

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