Tribe__PUE__Checker::add_notice_to_plugin_notices( array $notices )
Adds the PUE message to the plugin notices array.
Contents
Parameters
- $notices
-
(array) (Required) The current plugin notices.
Return
(array)
Source
File: src/Tribe/PUE/Checker.php
public function add_notice_to_plugin_notices( $notices ) {
if ( ! $this->plugin_notice || $this->is_network_licensed() ) {
return $notices;
}
$notices[ $this->plugin_notice['slug'] ] = $this->plugin_notice;
return $notices;
}