mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-25 20:44:01 +01:00
The phpbb_user object might be used for language variables and other things. PHPBB3-10018
20 lines
339 B
PHP
20 lines
339 B
PHP
<?php
|
|
|
|
class phpbb_avatar_driver_foobar extends phpbb_avatar_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;
|
|
}
|
|
}
|