aboutsummaryrefslogtreecommitdiffstats
path: root/tests/avatar/driver/foobar.php
blob: fd4e452818f63cbda0230d34eeddaada20d03bec (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($template, $row, &$error)
	{
		return false;
	}

	public function process_form($template, $row, &$error)
	{
		return false;
	}
}