diff options
Diffstat (limited to 'tests/avatar/driver/foobar.php')
-rw-r--r-- | tests/avatar/driver/foobar.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/avatar/driver/foobar.php b/tests/avatar/driver/foobar.php new file mode 100644 index 0000000000..aabdaf5ac4 --- /dev/null +++ b/tests/avatar/driver/foobar.php @@ -0,0 +1,26 @@ +<?php
+
+namespace phpbb\avatar\driver;
+
+class foobar extends \phpbb\avatar\driver\driver
+{
+ public function get_data($row)
+ {
+ return array();
+ }
+
+ public function prepare_form($request, $template, $user, $row, &$error)
+ {
+ return false;
+ }
+
+ public function process_form($request, $template, $user, $row, &$error)
+ {
+ return false;
+ }
+
+ public function get_template_name()
+ {
+ return 'foobar.html';
+ }
+}
|