2012-12-02 01:19:10 +01:00
|
|
|
<?php
|
|
|
|
|
2013-09-10 14:40:30 +02:00
|
|
|
namespace phpbb\avatar\driver;
|
|
|
|
|
|
|
|
class foobar extends \phpbb\avatar\driver\driver
|
2012-12-02 01:19:10 +01:00
|
|
|
{
|
|
|
|
public function get_data($row)
|
|
|
|
{
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
2013-02-19 12:24:21 +01:00
|
|
|
public function prepare_form($request, $template, $user, $row, &$error)
|
2012-12-02 01:19:10 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-02-19 12:24:21 +01:00
|
|
|
public function process_form($request, $template, $user, $row, &$error)
|
2012-12-02 01:19:10 +01:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2013-11-27 15:28:14 +01:00
|
|
|
|
|
|
|
public function get_template_name()
|
|
|
|
{
|
|
|
|
return 'foobar.html';
|
|
|
|
}
|
2013-01-07 22:49:48 +01:00
|
|
|
}
|