Email_Abstract::get_edit_url()
Get edit URL.
Return
(string)
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 );
}
Changelog
| Version | Description |
|---|---|
| 5.5.9 | Introduced. |