automatewoo/includes/AdminNotices/AdminNoticeInterface.php
fei-source 47d3c9a8b6 Update to v6.2.2
Source: GrootMade/Festinger Vault
2026-03-15 08:31:15 +08:00

21 lines
281 B
PHP

<?php
namespace AutomateWoo\AdminNotices;
/**
* Interface AdminNoticeInterface
*
* @since 5.1.3
*/
interface AdminNoticeInterface {
/**
* Init the notice, add hooks.
*/
public function init();
/**
* Output/render the notice HTML.
*/
public function output();
}