Tribe__PUE__Checker::return_install_key( array $keys = array() )

Add this plugin key to the list of keys


Parameters

$keys

(array) (Optional) The list of keys.

Default value: array()


Top ↑

Return

(array) $keys


Top ↑

Source

File: src/Tribe/PUE/Checker.php

		public function return_install_key( $keys = array() ) {
			$key = $this->get_key();

			if ( ! empty( $key ) ) {
				$keys[ $this->get_slug() ] = $key;
			}

			return $keys;
		}