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