123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?php
- /* vim: set expandtab sw=4 ts=4 sts=4: */
- /**
- * Functionality for the navigation tree
- *
- * @package PhpMyAdmin-Navigation
- */
- if (! defined('PHPMYADMIN')) {
- exit;
- }
- require_once 'libraries/navigation/Nodes/Node_DatabaseChild.class.php';
- /**
- * Represents a columns node in the navigation tree
- *
- * @package PhpMyAdmin-Navigation
- */
- class Node_Table extends Node_DatabaseChild
- {
- /**
- * Initialises the class
- *
- * @param string $name An identifier for the new node
- * @param int $type Type of node, may be one of CONTAINER or OBJECT
- * @param bool $is_group Whether this object has been created
- * while grouping nodes
- *
- * @return Node_Table
- */
- public function __construct($name, $type = Node::OBJECT, $is_group = false)
- {
- parent::__construct($name, $type, $is_group);
- switch($GLOBALS['cfg']['NavigationTreeDefaultTabTable']) {
- case 'tbl_structure.php':
- $this->icon = PMA_Util::getImage('b_props.png', __('Structure'));
- break;
- case 'tbl_select.php':
- $this->icon = PMA_Util::getImage('b_search.png', __('Search'));
- break;
- case 'tbl_change.php':
- $this->icon = PMA_Util::getImage('b_insrow.png', __('Insert'));
- break;
- case 'tbl_sql.php':
- $this->icon = PMA_Util::getImage('b_sql.png', __('SQL'));
- break;
- case 'sql.php':
- $this->icon = PMA_Util::getImage('b_browse.png', __('Browse'));
- break;
- }
- $this->links = array(
- 'text' => $GLOBALS['cfg']['DefaultTabTable']
- . '?server=' . $GLOBALS['server']
- . '&db=%2$s&table=%1$s'
- . '&pos=0&token=' . $GLOBALS['token'],
- 'icon' => $GLOBALS['cfg']['NavigationTreeDefaultTabTable']
- . '?server=' . $GLOBALS['server']
- . '&db=%2$s&table=%1$s&token=' . $GLOBALS['token']
- );
- $this->classes = 'table';
- }
- /**
- * Returns the number of children of type $type present inside this container
- * This method is overridden by the Node_Database and Node_Table classes
- *
- * @param string $type The type of item we are looking for
- * ('columns' or 'indexes')
- * @param string $searchClause A string used to filter the results of the query
- *
- * @return int
- */
- public function getPresence($type = '', $searchClause = '')
- {
- $retval = 0;
- $db = $this->realParent()->real_name;
- $table = $this->real_name;
- switch ($type) {
- case 'columns':
- $db = PMA_Util::sqlAddSlashes($db);
- $table = PMA_Util::sqlAddSlashes($table);
- $query = "SELECT COUNT(*) ";
- $query .= "FROM `INFORMATION_SCHEMA`.`COLUMNS` ";
- $query .= "WHERE `TABLE_NAME`='$table' ";
- $query .= "AND `TABLE_SCHEMA`='$db'";
- $retval = (int)$GLOBALS['dbi']->fetchValue($query);
- break;
- case 'indexes':
- $db = PMA_Util::backquote($db);
- $table = PMA_Util::backquote($table);
- $query = "SHOW INDEXES FROM $table FROM $db";
- $retval = (int)$GLOBALS['dbi']->numRows(
- $GLOBALS['dbi']->tryQuery($query)
- );
- break;
- case 'triggers':
- $db = PMA_Util::sqlAddSlashes($db);
- $table = PMA_Util::sqlAddSlashes($table);
- $query = "SELECT COUNT(*) ";
- $query .= "FROM `INFORMATION_SCHEMA`.`TRIGGERS` ";
- $query .= "WHERE `EVENT_OBJECT_SCHEMA`='$db' ";
- $query .= "AND `EVENT_OBJECT_TABLE`='$table'";
- $retval = (int)$GLOBALS['dbi']->fetchValue($query);
- break;
- default:
- break;
- }
- return $retval;
- }
- /**
- * Returns the names of children of type $type present inside this container
- * This method is overridden by the Node_Database and Node_Table classes
- *
- * @param string $type The type of item we are looking for
- * ('tables', 'views', etc)
- * @param int $pos The offset of the list within the results
- * @param string $searchClause A string used to filter the results of the query
- *
- * @return array
- */
- public function getData($type, $pos, $searchClause = '')
- {
- $maxItems = $GLOBALS['cfg']['MaxNavigationItems'];
- $retval = array();
- $db = $this->realParent()->real_name;
- $table = $this->real_name;
- switch ($type) {
- case 'columns':
- $db = PMA_Util::sqlAddSlashes($db);
- $table = PMA_Util::sqlAddSlashes($table);
- $query = "SELECT `COLUMN_NAME` AS `name` ";
- $query .= "FROM `INFORMATION_SCHEMA`.`COLUMNS` ";
- $query .= "WHERE `TABLE_NAME`='$table' ";
- $query .= "AND `TABLE_SCHEMA`='$db' ";
- $query .= "ORDER BY `COLUMN_NAME` ASC ";
- $query .= "LIMIT " . intval($pos) . ", $maxItems";
- $retval = $GLOBALS['dbi']->fetchResult($query);
- break;
- case 'indexes':
- $db = PMA_Util::backquote($db);
- $table = PMA_Util::backquote($table);
- $query = "SHOW INDEXES FROM $table FROM $db";
- $handle = $GLOBALS['dbi']->tryQuery($query);
- if ($handle === false) {
- break;
- }
- $count = 0;
- while ($arr = $GLOBALS['dbi']->fetchArray($handle)) {
- if (! in_array($arr['Key_name'], $retval)) {
- if ($pos <= 0 && $count < $maxItems) {
- $retval[] = $arr['Key_name'];
- $count++;
- }
- $pos--;
- }
- }
- break;
- case 'triggers':
- $db = PMA_Util::sqlAddSlashes($db);
- $table = PMA_Util::sqlAddSlashes($table);
- $query = "SELECT `TRIGGER_NAME` AS `name` ";
- $query .= "FROM `INFORMATION_SCHEMA`.`TRIGGERS` ";
- $query .= "WHERE `EVENT_OBJECT_SCHEMA`='$db' ";
- $query .= "AND `EVENT_OBJECT_TABLE`='$table' ";
- $query .= "ORDER BY `TRIGGER_NAME` ASC ";
- $query .= "LIMIT " . intval($pos) . ", $maxItems";
- $retval = $GLOBALS['dbi']->fetchResult($query);
- break;
- default:
- break;
- }
- return $retval;
- }
- /**
- * Returns the type of the item represented by the node.
- *
- * @return string type of the item
- */
- protected function getItemType()
- {
- return 'table';
- }
- }
- ?>
|