if ( $this->is_internal() ) { return true; } if ( ! $this->is_active() || $this->is_skip() ) { return false; } return true; } /** * Check module only for. * * @param string $check Check against. * * @return bool */ private function only( $check ) { return isset( $this->args['only'] ) && $check === $this->args['only']; } }