parent
42991b0756
commit
e6ec6e05b2
|
@ -0,0 +1,56 @@
|
||||||
|
<?php
|
||||||
|
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
|
||||||
|
|
||||||
|
namespace Icinga\Controllers;
|
||||||
|
|
||||||
|
use Icinga\Application\Config;
|
||||||
|
use Icinga\Data\ConfigObject;
|
||||||
|
use Icinga\Forms\PreferenceForm;
|
||||||
|
use Icinga\User\Preferences\PreferencesStore;
|
||||||
|
use Icinga\Web\Controller;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* My Account
|
||||||
|
*/
|
||||||
|
class AccountController extends Controller
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* {@inheritdoc}
|
||||||
|
*/
|
||||||
|
public function init()
|
||||||
|
{
|
||||||
|
$this->getTabs()
|
||||||
|
->add('account', array(
|
||||||
|
'title' => $this->translate('Update your account'),
|
||||||
|
'label' => $this->translate('My Account'),
|
||||||
|
'url' => 'account'
|
||||||
|
))
|
||||||
|
->add('navigation', array(
|
||||||
|
'title' => $this->translate('List and configure your own navigation items'),
|
||||||
|
'label' => $this->translate('Navigation'),
|
||||||
|
'url' => 'navigation'
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* My account
|
||||||
|
*/
|
||||||
|
public function indexAction()
|
||||||
|
{
|
||||||
|
$config = Config::app()->getSection('global');
|
||||||
|
$user = $this->Auth()->getUser();
|
||||||
|
|
||||||
|
$form = new PreferenceForm();
|
||||||
|
$form->setPreferences($user->getPreferences());
|
||||||
|
if ($config->get('config_backend', 'ini') !== 'none') {
|
||||||
|
$form->setStore(PreferencesStore::create(new ConfigObject(array(
|
||||||
|
'store' => $config->get('config_backend', 'ini'),
|
||||||
|
'resource' => $config->config_resource
|
||||||
|
)), $user));
|
||||||
|
}
|
||||||
|
$form->handleRequest();
|
||||||
|
|
||||||
|
$this->view->form = $form;
|
||||||
|
$this->getTabs()->activate('account');
|
||||||
|
}
|
||||||
|
}
|
|
@ -128,11 +128,11 @@ class NavigationController extends Controller
|
||||||
|
|
||||||
$this->getTabs()
|
$this->getTabs()
|
||||||
->add(
|
->add(
|
||||||
'preferences',
|
'account',
|
||||||
array(
|
array(
|
||||||
'title' => $this->translate('Adjust the preferences of Icinga Web 2 according to your needs'),
|
'title' => $this->translate('Update your account'),
|
||||||
'label' => $this->translate('Preferences'),
|
'label' => $this->translate('My Account'),
|
||||||
'url' => 'preference'
|
'url' => 'account'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
->add(
|
->add(
|
||||||
|
|
|
@ -1,65 +0,0 @@
|
||||||
<?php
|
|
||||||
/* Icinga Web 2 | (c) 2013 Icinga Development Team | GPLv2+ */
|
|
||||||
|
|
||||||
namespace Icinga\Controllers;
|
|
||||||
|
|
||||||
use Icinga\Application\Config;
|
|
||||||
use Icinga\Data\ConfigObject;
|
|
||||||
use Icinga\Forms\PreferenceForm;
|
|
||||||
use Icinga\User\Preferences\PreferencesStore;
|
|
||||||
use Icinga\Web\Controller\BasePreferenceController;
|
|
||||||
use Icinga\Web\Url;
|
|
||||||
use Icinga\Web\Widget\Tab;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Application wide preference controller for user preferences
|
|
||||||
*
|
|
||||||
* @TODO(el): Rename to PreferencesController: https://dev.icinga.org/issues/10014
|
|
||||||
*/
|
|
||||||
class PreferenceController extends BasePreferenceController
|
|
||||||
{
|
|
||||||
/**
|
|
||||||
* Create tabs for this preference controller
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*
|
|
||||||
* @see BasePreferenceController::createProvidedTabs()
|
|
||||||
*/
|
|
||||||
public static function createProvidedTabs()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
'preferences' => new Tab(array(
|
|
||||||
'title' => t('Adjust the preferences of Icinga Web 2 according to your needs'),
|
|
||||||
'label' => t('Preferences'),
|
|
||||||
'url' => 'preference'
|
|
||||||
)),
|
|
||||||
'navigation' => new Tab(array(
|
|
||||||
'title' => t('List and configure your own navigation items'),
|
|
||||||
'label' => t('Navigation'),
|
|
||||||
'url' => 'navigation'
|
|
||||||
))
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Show form to adjust user preferences
|
|
||||||
*/
|
|
||||||
public function indexAction()
|
|
||||||
{
|
|
||||||
$config = Config::app()->getSection('global');
|
|
||||||
$user = $this->getRequest()->getUser();
|
|
||||||
|
|
||||||
$form = new PreferenceForm();
|
|
||||||
$form->setPreferences($user->getPreferences());
|
|
||||||
if ($config->get('config_backend', 'ini') !== 'none') {
|
|
||||||
$form->setStore(PreferencesStore::create(new ConfigObject(array(
|
|
||||||
'store' => $config->get('config_backend', 'ini'),
|
|
||||||
'resource' => $config->config_resource
|
|
||||||
)), $user));
|
|
||||||
}
|
|
||||||
$form->handleRequest();
|
|
||||||
|
|
||||||
$this->view->form = $form;
|
|
||||||
$this->getTabs()->activate('preferences');
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -346,10 +346,10 @@ class Web extends EmbeddedWeb
|
||||||
'icon' => 'user',
|
'icon' => 'user',
|
||||||
'priority' => 900,
|
'priority' => 900,
|
||||||
'children' => array(
|
'children' => array(
|
||||||
'preferences' => array(
|
'account' => array(
|
||||||
'label' => t('Preferences'),
|
'label' => t('My Account'),
|
||||||
'priority' => 100,
|
'priority' => 100,
|
||||||
'url' => 'preference'
|
'url' => 'account'
|
||||||
),
|
),
|
||||||
'logout' => array(
|
'logout' => array(
|
||||||
'label' => t('Logout'),
|
'label' => t('Logout'),
|
||||||
|
|
Loading…
Reference in New Issue