mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-24 03:54:10 +01:00
27 lines
408 B
PHP
27 lines
408 B
PHP
<?php
|
|
|
|
namespace phpbb\avatar\driver;
|
|
|
|
class foobar extends \phpbb\avatar\driver\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;
|
|
}
|
|
|
|
public function get_template_name()
|
|
{
|
|
return 'foobar.html';
|
|
}
|
|
}
|