Tribe__Admin__Help_Page::get_plugin_forum_links( boolean $is_active = true )

Get the formatted links of the possible plugins


Parameters

$is_active

(boolean) (Optional) Filter only active plugins.

Default value: true


Top ↑

Return

(array)


Top ↑

Source

File: src/Tribe/Admin/Help_Page.php

	public function get_plugin_forum_links( $is_active = true ) {
		$plugins = $this->get_plugins( null, $is_active );

		$list = array();
		foreach ( $plugins as $plugin ) {
			$list[] = '<a href="' . esc_url( $plugin['forum'] ) . '" target="_blank">' . $plugin['title'] . '</a>';
		}

		return $list;
	}

Top ↑

Changelog

Changelog
Version Description
4.0 Introduced.