Node_Table_Container.class.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <?php
  2. /* vim: set expandtab sw=4 ts=4 sts=4: */
  3. /**
  4. * Functionality for the navigation tree
  5. *
  6. * @package PhpMyAdmin-Navigation
  7. */
  8. if (! defined('PHPMYADMIN')) {
  9. exit;
  10. }
  11. /**
  12. * Represents a container for table nodes in the navigation tree
  13. *
  14. * @package PhpMyAdmin-Navigation
  15. */
  16. class Node_Table_Container extends Node
  17. {
  18. /**
  19. * Initialises the class
  20. *
  21. * @return Node_Table_Container
  22. */
  23. public function __construct()
  24. {
  25. parent::__construct(__('Tables'), Node::CONTAINER);
  26. $this->icon = PMA_Util::getImage('b_browse.png', __('Tables'));
  27. $this->links = array(
  28. 'text' => 'db_structure.php?server=' . $GLOBALS['server']
  29. . '&amp;db=%1$s&amp;token=' . $GLOBALS['token'],
  30. 'icon' => 'db_structure.php?server=' . $GLOBALS['server']
  31. . '&amp;db=%1$s&amp;token=' . $GLOBALS['token'],
  32. );
  33. if ($GLOBALS['cfg']['NavigationTreeEnableGrouping']) {
  34. $this->separator = $GLOBALS['cfg']['NavigationTreeTableSeparator'];
  35. $this->separator_depth = (int)($GLOBALS['cfg']['NavigationTreeTableLevel']);
  36. }
  37. $this->real_name = 'tables';
  38. $this->classes = 'tableContainer';
  39. $new_label = _pgettext('Create new table', 'New');
  40. $new = PMA_NodeFactory::getInstance('Node', $new_label);
  41. $new->isNew = true;
  42. $new->icon = PMA_Util::getImage('b_table_add.png', $new_label);
  43. $new->links = array(
  44. 'text' => 'tbl_create.php?server=' . $GLOBALS['server']
  45. . '&amp;db=%2$s&amp;token=' . $GLOBALS['token'],
  46. 'icon' => 'tbl_create.php?server=' . $GLOBALS['server']
  47. . '&amp;db=%2$s&amp;token=' . $GLOBALS['token'],
  48. );
  49. $new->classes = 'new_table italics';
  50. $this->addChild($new);
  51. }
  52. }
  53. ?>