aboutsummaryrefslogtreecommitdiffstats
path: root/tests/avatar/driver/foobar.php
blob: a68d0aa6c619d3d4a1f08a9cac8482c954a90c42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php

class phpbb_avatar_driver_foobar 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;
	}
}