mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-19 09:48:53 +00:00
The phpbb_user object might be used for language variables and other things. PHPBB3-10018
19 lines
339 B
PHP
19 lines
339 B
PHP
<?php
|
|
|
|
class phpbb_avatar_driver_barfoo 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;
|
|
}
|
|
}
|