mirror of
https://github.com/phpbb/phpbb.git
synced 2025-02-23 11:28:33 +01:00
20 lines
325 B
PHP
20 lines
325 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, $row, &$error)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public function process_form($request, $template, $row, &$error)
|
|
{
|
|
return false;
|
|
}
|
|
}
|