Tribe__Tickets__Integrations__Freemius::get_settings_path()

Get the Settings page path.


Return

(string) The Settings page path.


Top ↑

Source

File: src/Tribe/Integrations/Freemius.php

	public function get_settings_path() {
		if ( class_exists( 'Tribe__Events__Main' ) ) {
			$url = sprintf( 'edit.php?post_type=%s&page=%s', Tribe__Events__Main::POSTTYPE, $this->page );
		} else {
			$url = sprintf( 'admin.php?page=%s', $this->page );
		}

		return $url;
	}

Top ↑

Changelog

Changelog
Version Description
4.11.5 Introduced.