. namespace editor_tiny; /** * An interface representing a plugin with menu items. * * @package editor_tiny * @copyright 2021 Andrew Lyons * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ interface plugin_with_menuitems { /** * Get a list of the menu items provided by this plugin. * * @return string[] */ public static function get_available_menuitems(): array; }