34 lines
757 B
PHP
34 lines
757 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Forms;
|
|
|
|
use Icinga\Module\Director\Web\Form\DirectorObjectForm;
|
|
use Icinga\Authentication\Auth;
|
|
|
|
class DirectorDatalistForm extends DirectorObjectForm
|
|
{
|
|
public function setup()
|
|
{
|
|
$this->addElement('text', 'list_name', array(
|
|
'label' => $this->translate('List name'),
|
|
'required' => true,
|
|
));
|
|
}
|
|
|
|
public function onSuccess()
|
|
{
|
|
$this->object()->owner = self::username();
|
|
parent::onSuccess();
|
|
}
|
|
|
|
protected static function username()
|
|
{
|
|
$auth = Auth::getInstance();
|
|
if ($auth->isAuthenticated()) {
|
|
return $auth->getUser()->getUsername();
|
|
} else {
|
|
return '<unknown>';
|
|
}
|
|
}
|
|
}
|