PluginProbe
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.7.3
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.7.3
4.7.3 4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 All 93 releases
cookiebot / src / cli / WP_CLI_Output_Adapter.php

WP_CLI_Output_Adapter.php in Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode 4.7.3, at src/cli/WP_CLI_Output_Adapter.php

24 lines 464 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace cybot\cookiebot\cli;
4
5 /**
6 * Default Output_Adapter implementation. Forwards all calls to WP_CLI.
7 *
8 * @since 4.8.0
9 */
10 class WP_CLI_Output_Adapter implements Output_Adapter {
11
12 public function success( $message ) {
13 \WP_CLI::success( $message );
14 }
15
16 public function error( $message ) {
17 \WP_CLI::error( $message );
18 }
19
20 public function format_items( $items, $fields, $format ) {
21 \WP_CLI\Utils\format_items( $format, $items, $fields );
22 }
23 }
24