# cookiebot/4.7.3/src/lib/buffer/Buffer_Output_Interface.php

Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA &amp; Google Consent Mode, version 4.7.3. 34 lines.

- Page: https://pluginprobe.com/plugins/cookiebot/4.7.3/code/src/lib/buffer/Buffer_Output_Interface.php
- Raw: https://pluginprobe.com/plugins/cookiebot/4.7.3/raw/src/lib/buffer/Buffer_Output_Interface.php
- Modified: 2025-01-28T12:24:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/cookiebot/4.7.3/code/src/lib/buffer/Buffer_Output_Interface.php#L10-L20`.

```php
<?php

namespace cybot\cookiebot\lib\buffer;

interface Buffer_Output_Interface {


	/**
	 * @param $tag_name         string      Hook name
	 * @param $priority         integer     Hook priority
	 * @param array                                      $keywords List of words to search for in the script
	 * @param boolean                                    $use_cache Use Cache
	 *
	 * @since 1.2.0
	 */
	public function add_tag( $tag_name, $priority, $keywords = array(), $use_cache = true );

	/**
	 * Process every tag
	 *
	 * @since 1.2.0
	 */
	public function run_actions();

	/**
	 * Returns true if tags has more than 0 item
	 *
	 * @return bool
	 *
	 * @since 1.2.0
	 */
	public function has_action();
}

```
