phpmyadmin/libraries/classes/Navigation/Nodes/NodeFunctionContainer.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

65 lines
1.9 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 functions nodes in the navigation tree
*
* @package PhpMyAdmin-Navigation
*/
class NodeFunctionContainer extends NodeDatabaseChildContainer
{
/**
* Initialises the class
*/
public function __construct()
{
parent::__construct(__('Functions'), Node::CONTAINER);
$this->icon = Generator::getImage('b_routines', __('Functions'));
$this->links = [
'text' => Url::getFromRoute('/database/routines', [
'server' => $GLOBALS['server'],
'type' => 'FUNCTION',
]) . '&amp;db=%1$s',
'icon' => Url::getFromRoute('/database/routines', [
'server' => $GLOBALS['server'],
'type' => 'FUNCTION',
]) . '&amp;db=%1$s',
];
$this->realName = 'functions';
$newLabel = _pgettext('Create new function', 'New');
$new = NodeFactory::getInstance(
'Node',
$newLabel
);
$new->isNew = true;
$new->icon = Generator::getImage('b_routine_add', $newLabel);
$new->links = [
'text' => Url::getFromRoute('/database/routines', [
'server' => $GLOBALS['server'],
'item_type' => 'FUNCTION',
'add_item' => 1,
]) . '&amp;db=%2$s',
'icon' => Url::getFromRoute('/database/routines', [
'server' => $GLOBALS['server'],
'item_type' => 'FUNCTION',
'add_item' => 1,
]) . '&amp;db=%2$s',
];
$new->classes = 'new_function italics';
$this->addChild($new);
}
}