Removing old documentation
[openemr.git] / phpmyadmin / libraries / navigation / Nodes / Node_View.class.php
blobcd509bf6fbd8dfcc539a6dbc5c6646fbbfb78a12
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Functionality for the navigation tree
6 * @package PhpMyAdmin-Navigation
7 */
8 if (! defined('PHPMYADMIN')) {
9 exit;
12 require_once 'libraries/navigation/Nodes/Node_DatabaseChild.class.php';
14 /**
15 * Represents a view node in the navigation tree
17 * @package PhpMyAdmin-Navigation
19 class Node_View extends Node_DatabaseChild
21 /**
22 * Initialises the class
24 * @param string $name An identifier for the new node
25 * @param int $type Type of node, may be one of CONTAINER or OBJECT
26 * @param bool $is_group Whether this object has been created
27 * while grouping nodes
29 public function __construct($name, $type = Node::OBJECT, $is_group = false)
31 parent::__construct($name, $type, $is_group);
32 $this->icon = PMA_Util::getImage('b_props.png', __('View'));
33 $this->links = array(
34 'text' => 'sql.php?server=' . $GLOBALS['server']
35 . '&amp;db=%2$s&amp;table=%1$s&amp;pos=0'
36 . '&amp;token=' . $_SESSION[' PMA_token '],
37 'icon' => 'tbl_structure.php?server=' . $GLOBALS['server']
38 . '&amp;db=%2$s&amp;table=%1$s'
39 . '&amp;token=' . $_SESSION[' PMA_token ']
41 $this->classes = 'view';
44 /**
45 * Returns the type of the item represented by the node.
47 * @return string type of the item
49 protected function getItemType()
51 return 'view';