2020-05-19 18:45:56 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
|
|
|
* For detailed copyright and license information, please view the
|
|
|
|
* LICENSE file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Flarum\Extend;
|
|
|
|
|
|
|
|
use Flarum\Extension\Extension;
|
|
|
|
use Illuminate\Contracts\Container\Container;
|
|
|
|
|
|
|
|
class User implements ExtenderInterface
|
|
|
|
{
|
|
|
|
private $displayNameDrivers = [];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a mail driver.
|
|
|
|
*
|
|
|
|
* @param string $identifier Identifier for display name driver. E.g. 'username' for UserNameDriver
|
|
|
|
* @param string $driver ::class attribute of driver class, which must implement Flarum\User\DisplayName\DriverInterface
|
|
|
|
*/
|
|
|
|
public function displayNameDriver(string $identifier, $driver)
|
|
|
|
{
|
2020-06-29 19:32:08 -04:00
|
|
|
$this->displayNameDrivers[$identifier] = $driver;
|
2020-05-19 18:45:56 -04:00
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function extend(Container $container, Extension $extension = null)
|
|
|
|
{
|
|
|
|
$container->extend('flarum.user.display_name.supported_drivers', function ($existingDrivers) {
|
2020-06-29 19:32:08 -04:00
|
|
|
return array_merge($existingDrivers, $this->displayNameDrivers);
|
2020-05-19 18:45:56 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|