Node_Procedure_Container.class.php 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 procedure nodes in the navigation tree
  13. *
  14. * @package PhpMyAdmin-Navigation
  15. */
  16. class Node_Procedure_Container extends Node
  17. {
  18. /**
  19. * Initialises the class
  20. *
  21. * @return Node_Procedure_Container
  22. */
  23. public function __construct()
  24. {
  25. parent::__construct(__('Procedures'), Node::CONTAINER);
  26. $this->icon = PMA_Util::getImage('b_routines.png', __('Procedures'));
  27. $this->links = array(
  28. 'text' => 'db_routines.php?server=' . $GLOBALS['server']
  29. . '&amp;db=%1$s&amp;token=' . $GLOBALS['token'],
  30. 'icon' => 'db_routines.php?server=' . $GLOBALS['server']
  31. . '&amp;db=%1$s&amp;token=' . $GLOBALS['token'],
  32. );
  33. $this->real_name = 'procedures';
  34. $new_label = _pgettext('Create new procedure', 'New');
  35. $new = PMA_NodeFactory::getInstance('Node', $new_label);
  36. $new->isNew = true;
  37. $new->icon = PMA_Util::getImage('b_routine_add.png', $new_label);
  38. $new->links = array(
  39. 'text' => 'db_routines.php?server=' . $GLOBALS['server']
  40. . '&amp;db=%2$s&amp;token=' . $GLOBALS['token']
  41. . '&add_item=1',
  42. 'icon' => 'db_routines.php?server=' . $GLOBALS['server']
  43. . '&amp;db=%2$s&amp;token=' . $GLOBALS['token']
  44. . '&add_item=1',
  45. );
  46. $new->classes = 'new_procedure italics';
  47. $this->addChild($new);
  48. }
  49. }
  50. ?>