Template_Modifications::get_intro_text()

Get intro text for Webex API UI


Return

(string) HTML for the intro text.


Top ↑

Source

File: src/Tribe/Meetings/Webex/Template_Modifications.php

	public function get_intro_text() {
		$args = [
			'allowed_html' => [
				'a' => [
					'href'   => [],
					'target' => [],
				],
			],
		];

		return $this->admin_template->template( 'webex/api/intro-text', $args, false );
	}

Top ↑

Changelog

Changelog
Version Description
1.9.0 Introduced.