1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-02-23 11:28:33 +01:00
Marc Alexander caa3516d13 [feature/avatars] Differentiate tests for get drivers functions
Tests for get_all_drivers() and get_enabled_drivers() should be different.

PHPBB3-10018
2013-01-08 21:58:03 +01:00

20 lines
325 B
PHP

<?php
class phpbb_avatar_driver_barfoo extends phpbb_avatar_driver
{
public function get_data($row)
{
return array();
}
public function prepare_form($request, $template, $row, &$error)
{
return false;
}
public function process_form($request, $template, $row, &$error)
{
return false;
}
}