%PDF- %PDF-
Direktori : /var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/ |
Current File : //var/www/cwg/wp-content/plugins/codepress-admin-columns/classes/NoticeChecks.php |
<?php namespace AC; class NoticeChecks implements Registrable { public function register() { foreach ( $this->get_checks() as $check ) { $check->register(); } } /** * @return Registrable[] */ private function get_checks() { $checks = []; if ( ! ac_is_pro_active() ) { $checks[] = new Check\Review(); foreach ( new PromoCollection() as $promo ) { $checks[] = new Check\Promotion( $promo ); } } foreach ( new Integrations() as $integration ) { $checks[] = new Check\AddonAvailable( $integration ); } return $checks; } }