phpmyadmin/libraries/classes/Navigation/Nodes/NodeViewContainer.php
Hugues Peccatte 3255e4ad7b Split Util class regarding the responsabilities (#15567)
PhpMyAdmin\Util is a very huge class with a lot of responsabilities.

There is a lot of work to split it, but this may be just a small start, waiting for a more normalized code.

* Split Util class regarding the responsabilities
* Split the buttonOrImage function

Signed-off-by: Hugues Peccatte <hugues.peccatte@gmail.com>
2019-11-21 20:20:05 -03:00

64 lines
1.8 KiB
PHP

<?php
/**
* Functionality for the navigation tree
*
* @package PhpMyAdmin-Navigation
*/
declare(strict_types=1);
namespace PhpMyAdmin\Navigation\Nodes;
use PhpMyAdmin\Html\Generator;
use PhpMyAdmin\Navigation\NodeFactory;
use PhpMyAdmin\Url;
use PhpMyAdmin\Util;
/**
* Represents a container for view nodes in the navigation tree
*
* @package PhpMyAdmin-Navigation
*/
class NodeViewContainer extends NodeDatabaseChildContainer
{
/**
* Initialises the class
*/
public function __construct()
{
parent::__construct(__('Views'), Node::CONTAINER);
$this->icon = Generator::getImage('b_views', __('Views'));
$this->links = [
'text' => Url::getFromRoute('/database/structure', [
'server' => $GLOBALS['server'],
'db' => '%1\$s',
'tbl_type' => 'view',
]),
'icon' => Url::getFromRoute('/database/structure', [
'server' => $GLOBALS['server'],
'db' => '%1\$s',
'tbl_type' => 'view',
]),
];
$this->classes = 'viewContainer subContainer';
$this->realName = 'views';
$newLabel = _pgettext('Create new view', 'New');
$new = NodeFactory::getInstance(
'Node',
$newLabel
);
$new->isNew = true;
$new->icon = Generator::getImage('b_view_add', $newLabel);
$new->links = [
'text' => Url::getFromRoute('/view/create', [
'server' => $GLOBALS['server'],
]) . '&amp;db=%2$s',
'icon' => Url::getFromRoute('/view/create', [
'server' => $GLOBALS['server'],
]) . '&amp;db=%2$s',
];
$new->classes = 'new_view italics';
$this->addChild($new);
}
}