Tribe__PUE__Checker::should_show_overrideable_license()

Whether the user should be shown the override control to override the network license key or not.

Contents

This check will happen in the context of the plugin administration area; checks on the user capability to edit the plugin settings have been made before.


Return

(bool)


Top ↑

Source

File: src/Tribe/PUE/Checker.php

		public function should_show_overrideable_license() {
			if ( is_network_admin() ) {
				return false;
			}

			if ( is_super_admin() ) {
				return false;
			}

			if ( ! $this->is_plugin_active_for_network() ) {
				return false;
			}

			return true;
		}