Tribe__PUE__Checker::return_install_key( array $keys = array() )
Add this plugin key to the list of keys
Contents
Parameters
- $keys
-
(array) (Optional) The list of keys.
Default value: array()
Return
(array) $keys
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;
}