Template_Modifications::get_intro_text()

Get intro text for an API Settings.


Return

(string) HTML for the intro text.


Top ↑

Source

File: src/Event_Automator/Zapier/Template_Modifications.php

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

		return $this->admin_template->template( static::$api_id . '/api/intro-text', $args, false );
	}

Top ↑

Changelog

Changelog
Version Description
1.0.0 Introduced.