aboutsummaryrefslogtreecommitdiffstats
path: root/tests/avatar/driver/foobar.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/avatar/driver/foobar.php')
-rw-r--r--tests/avatar/driver/foobar.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/avatar/driver/foobar.php b/tests/avatar/driver/foobar.php
new file mode 100644
index 0000000000..995f35818b
--- /dev/null
+++ b/tests/avatar/driver/foobar.php
@@ -0,0 +1,19 @@
+<?php
+
+class phpbb_avatar_driver_foobar extends phpbb_avatar_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;
+ }
+}