Singular_Order_Page::restore_current_parent_file()

Restores the current parent file.


Return

(void)


Top ↑

Source

File: src/Tickets/Commerce/Admin/Singular_Order_Page.php

	public function restore_current_parent_file() {
		if ( ! isset( self::$stored_parent_file ) ) {
			return;
		}

		global $parent_file;

		$parent_file = self::$stored_parent_file; // phpcs:ignore WordPress.WP.GlobalVariablesOverride.Prohibited
	}

Top ↑

Changelog

Changelog
Version Description
5.13.3 Introduced.