Files
sysPass/app/modules/web/Controllers/Helpers/Grid/UserProfileGrid.php
Rubén D 6197c52af1 * [MOD] Update copyright date
* [MOD] Code cleanup

Signed-off-by: Rubén D <nuxsmin@syspass.org>
2019-04-27 02:48:18 +02:00

211 lines
6.5 KiB
PHP

<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2019, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
namespace SP\Modules\Web\Controllers\Helpers\Grid;
use SP\Core\Acl\Acl;
use SP\Core\Acl\ActionsInterface;
use SP\Html\DataGrid\Action\DataGridAction;
use SP\Html\DataGrid\Action\DataGridActionSearch;
use SP\Html\DataGrid\Action\DataGridActionType;
use SP\Html\DataGrid\DataGridData;
use SP\Html\DataGrid\DataGridInterface;
use SP\Html\DataGrid\DataGridTab;
use SP\Html\DataGrid\Layout\DataGridHeader;
use SP\Storage\Database\QueryResult;
/**
* Class UserProfileGrid
*
* @package SP\Modules\Web\Controllers\Helpers\Grid
*/
final class UserProfileGrid extends GridBase
{
/**
* @var QueryResult
*/
private $queryResult;
/**
* @param QueryResult $queryResult
*
* @return DataGridInterface
*/
public function getGrid(QueryResult $queryResult): DataGridInterface
{
$this->queryResult = $queryResult;
$grid = $this->getGridLayout();
$searchAction = $this->getSearchAction();
$grid->addDataAction($searchAction);
$grid->setPager($this->getPager($searchAction));
$grid->addDataAction($this->getCreateAction());
$grid->addDataAction($this->getViewAction());
$grid->addDataAction($this->getEditAction());
$grid->addDataAction($this->getDeleteAction());
$grid->addDataAction(
$this->getDeleteAction()
->setName(__('Delete Selected'))
->setTitle(__('Delete Selected'))
->setIsSelection(true),
true);
$grid->setTime(round(getElapsedTime($this->queryTimeStart), 5));
return $grid;
}
/**
* @return DataGridInterface
*/
protected function getGridLayout(): DataGridInterface
{
// Grid
$gridTab = new DataGridTab($this->view->getTheme());
$gridTab->setId('tblProfiles');
$gridTab->setDataRowTemplate('datagrid-rows', 'grid');
$gridTab->setDataPagerTemplate('datagrid-nav-full', 'grid');
$gridTab->setHeader($this->getHeader());
$gridTab->setData($this->getData());
$gridTab->setTitle(__('Profiles'));
return $gridTab;
}
/**
* @return DataGridHeader
*/
protected function getHeader(): DataGridHeader
{
// Grid Header
$gridHeader = new DataGridHeader();
$gridHeader->addHeader(__('Name'));
return $gridHeader;
}
/**
* @return DataGridData
*/
protected function getData(): DataGridData
{
// Grid Data
$gridData = new DataGridData();
$gridData->setDataRowSourceId('id');
$gridData->addDataRowSource('name');
$gridData->setData($this->queryResult);
return $gridData;
}
/**
* @return DataGridActionSearch
*/
private function getSearchAction()
{
// Grid Actions
$gridActionSearch = new DataGridActionSearch();
$gridActionSearch->setId(ActionsInterface::PROFILE_SEARCH);
$gridActionSearch->setType(DataGridActionType::SEARCH_ITEM);
$gridActionSearch->setName('frmSearchProfile');
$gridActionSearch->setTitle(__('Search for Profile'));
$gridActionSearch->setOnSubmitFunction('appMgmt/search');
$gridActionSearch->addData('action-route', Acl::getActionRoute(ActionsInterface::PROFILE_SEARCH));
return $gridActionSearch;
}
/**
* @return DataGridAction
*/
private function getCreateAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::PROFILE_CREATE);
$gridAction->setType(DataGridActionType::MENUBAR_ITEM);
$gridAction->setName(__('New Profile'));
$gridAction->setTitle(__('New Profile'));
$gridAction->setIcon($this->icons->getIconAdd());
$gridAction->setSkip(true);
$gridAction->setOnClickFunction('appMgmt/show');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::PROFILE_CREATE));
return $gridAction;
}
/**
* @return DataGridAction
*/
private function getViewAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::PROFILE_VIEW);
$gridAction->setType(DataGridActionType::VIEW_ITEM);
$gridAction->setName(__('View Profile Details'));
$gridAction->setTitle(__('View Profile Details'));
$gridAction->setIcon($this->icons->getIconView());
$gridAction->setOnClickFunction('appMgmt/show');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::PROFILE_VIEW));
return $gridAction;
}
/**
* @return DataGridAction
*/
private function getEditAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::PROFILE_EDIT);
$gridAction->setType(DataGridActionType::EDIT_ITEM);
$gridAction->setName(__('Edit Profile'));
$gridAction->setTitle(__('Edit Profile'));
$gridAction->setIcon($this->icons->getIconEdit());
$gridAction->setOnClickFunction('appMgmt/show');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::PROFILE_EDIT));
return $gridAction;
}
/**
* @return DataGridAction
*/
private function getDeleteAction()
{
$gridAction = new DataGridAction();
$gridAction->setId(ActionsInterface::PROFILE_DELETE);
$gridAction->setType(DataGridActionType::DELETE_ITEM);
$gridAction->setName(__('Delete Profile'));
$gridAction->setTitle(__('Delete Profile'));
$gridAction->setIcon($this->icons->getIconDelete());
$gridAction->setOnClickFunction('appMgmt/delete');
$gridAction->addData('action-route', Acl::getActionRoute(ActionsInterface::PROFILE_DELETE));
return $gridAction;
}
}