File "Feedback_Interface.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Events/Custom_Tables/V1/Feedback/Feedback_Interface.php
File size: 1.12 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* The API provided by the plugin feedback channels.
*
* @since 6.0.0
*
* @package TEC\Events\Custom_Tables\V1\Feedback
*/
namespace TEC\Events\Custom_Tables\V1\Feedback;
/**
* Interface Feedback_Interface
*
* @since 6.0.0
*
* @package TEC\Events\Custom_Tables\V1\Feedback
*/
interface Feedback_Interface {
/**
* Filters whole editor configuration, to localize information
* the Blocks Editor will be able to use.
*
* @since 6.0.0
*
* @param array<string,mixed> $config A map of the current editor configuration, for all plugins.
*
* @return array<string,mixed> The modified plugin configuration.
*/
public function filter_editor_config( array $config = [] );
/**
* Renders the feedback prompt in any context, but the Blocks Editor one.
*
* @since 6.0.0
*/
public function render_classic_editor_version();
/**
* Returns the HTML contents of the notice.
*
* Note: the content MUST be wrapped in an HTML to correctly render in the Blocks Editor context.
*
* @since 6.0.0
*
* @return string The notice HTML contents.
*/
public function get_notice_contents();
}