Inventory_Presser_Plugin::loaded()

Fires on the plugins_loaded hook. Runs the invp_loaded action hook for all add-ons.

Contents


Return Return

(void)


Top ↑

Source Source

File: inventory-presser.php

	public function loaded() {
		// Allow translations.
		load_plugin_textdomain( 'inventory-presser', false, __DIR__ );

		// Fire an action hook after Inventory Presser is finished loading.
		do_action( 'invp_loaded' );
	}