Tribe__Events__Main::addLinksToPluginActions( $actions )

Add links to the plugins row


Parameters

$actions

(Required)


Top ↑

Return

(mixed)


Top ↑

Source

File: src/Tribe/Main.php

		public function addLinksToPluginActions( $actions ) {
			$actions['settings']       = '<a href="' . Tribe__Settings::instance()->get_url() . '">' . esc_html__( 'Settings', 'the-events-calendar' ) . '</a>';
			$actions['tribe-calendar'] = '<a href="' . $this->getLink() . '">' . esc_html__( 'Calendar', 'the-events-calendar' ) . '</a>';

			return $actions;
		}