option( 'wordads_approved' ) ? array( 'color' => 'green', 'approved' => 'Yes', ) : array( 'color' => 'red', 'approved' => 'No', ); $type = $wordads->option( 'wordads_approved' ) ? 'updated' : 'error'; $message = sprintf( wp_kses( /* Translators: %1$s is the status color, %2$s is the status, %3$s is the response */ __( '
Status: %2$s
%3$s', 'jetpack' ), array( 'p' => array(), 'span' => array( 'style' => array(), ), 'pre' => array(), ) ), esc_attr( $status['color'] ), esc_html( $status ), esc_html( $response ) ); wp_admin_notice( $message, array( 'type' => $type, 'dismissible' => true, 'paragraph_wrap' => false, ) ); } } global $wordads_admin; $wordads_admin = new WordAds_Admin();