1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

[ticket/17414] Add get_template function to plugin interface

PHPBB-17414
This commit is contained in:
Marc Alexander
2024-10-11 21:16:07 +02:00
parent d85267707c
commit 6a34de543b
2 changed files with 21 additions and 1 deletions

View File

@@ -89,7 +89,14 @@ interface plugin_interface
public function get_attempt_count(): int;
/**
* Get template data for demo
* Get template filename for captcha
*
* @return string Template file name
*/
public function get_template(): string;
/**
* Get template filename for demo
*
* @return string Demo template file name
*/