PMA\libraries\navigation\nodes\NodeEventContainer::__construct PHP Метод

__construct() публичный Метод

Initialises the class
public __construct ( )
    public function __construct()
    {
        parent::__construct(__('Events'), Node::CONTAINER);
        $this->icon = PMA\libraries\Util::getImage('b_events.png', '');
        $this->links = array('text' => 'db_events.php?server=' . $GLOBALS['server'] . '&db=%1$s', 'icon' => 'db_events.php?server=' . $GLOBALS['server'] . '&db=%1$s');
        $this->real_name = 'events';
        $new = NodeFactory::getInstance('Node', _pgettext('Create new event', 'New'));
        $new->isNew = true;
        $new->icon = PMA\libraries\Util::getImage('b_event_add.png', '');
        $new->links = array('text' => 'db_events.php?server=' . $GLOBALS['server'] . '&db=%2$s&add_item=1', 'icon' => 'db_events.php?server=' . $GLOBALS['server'] . '&db=%2$s&add_item=1');
        $new->classes = 'new_event italics';
        $this->addChild($new);
    }
NodeEventContainer