Email_Abstract::get_edit_url()

Get edit URL.


Return

(string)


Top ↑

Source

File: src/Tickets/Emails/Email_Abstract.php

	public function get_edit_url() {
		// Force the `emails` tab.
		$args = [
			'tab'     => Emails_Tab::$slug,
			'section' => $this->id,
		];

		// Use the settings page get_url to build the URL.
		return tribe( Plugin_Settings::class )->get_url( $args );
	}

Top ↑

Changelog

Changelog
Version Description
5.5.9 Introduced.