.
*/
/**
* Class Menu - System for generating menus.
*/
class Menu {
/** @var string The text to be displayed in the mneu */
private $label;
/** @var string The target URL or href*/
private $link;
/** @var string The CSS class used to style this menu item */
private $class;
/** @var string An onclick action, typically used with a link of "#" */
private $onclick;
/** @var Menu[] */
private $submenus;
/** @var string Used internally to create javascript menus */
private $parentmenu;
/** @var string Used to format javascript menus */
private $submenuclass;
/** @var string Used to format javascript menus */
private $iconclass;
/** @var string Used to format javascript menus */
private $menuclass;
/**
* Constructor for the menu class
*
* @param string $label The label for the menu item
* @param string $link The target URL
* @param string $class An CSS class
* @param string $onclick A javascript onclick handler
* @param Menu[] $submenus Any submenus
*/
public function __construct($label, $link = '#', $class = '', $onclick = '', $submenus = array()) {
$this
->setLabel($label)
->setLink($link)
->setClass($class)
->setOnclick($onclick)
->setSubmenus($submenus);
}
/**
* Convert this menu to an HTML list, for easy rendering of
* lists of menus/nulls.
*
* @return string
*/
public function __toString() {
return $this->getMenuAsList();
}
/**
* Render this menu using Bootstrap markup
*
* @return string
*/
public function bootstrap() {
if ($this->submenus) {
$submenus = '';
foreach ($this->submenus as $submenu) {
$submenus .= $submenu->bootstrap();
}
return
'
' .
'' .
$this->label .
' ' .
'' .
'';
} else {
if ($this->onclick) {
$onclick = ' onclick="' . $this->onclick . '"';
} else {
$onclick = '';
}
return '' . $this->label . '';
}
}
/**
* Set the CSS classes for the (legacy) javascript menus
*
* @param string $class
* @param string $submenuclass
* @param string $iconclass
*/
public function addClass($menuclass, $submenuclass = '', $iconclass = '') {
$this->menuclass = $menuclass;
$this->submenuclass = $submenuclass;
$this->iconclass = $iconclass;
}
/**
* @return string
*/
public function getClass() {
return $this->class;
}
/**
* @param string $class
*
* @return $this
*/
public function setClass($class) {
$this->class = $class;
return $this;
}
/**
* @return string
*/
public function getLabel() {
return $this->label;
}
/**
* @param string $label
*
* @return $this
*/
public function setLabel($label) {
$this->label = $label;
return $this;
}
/**
* @return string
*/
public function getLink() {
return $this->link;
}
/**
* @param string $link
*
* @return $this
*/
public function setLink($link) {
$this->link = $link;
return $this;
}
/**
* @return string
*/
public function getOnclick() {
return $this->onclick;
}
/**
* @param string $onclick
*
* @return $this
*/
public function setOnclick($onclick) {
$this->onclick = $onclick;
return $this;
}
/**
* Add a submenu to this menu
*
* @param Menu $menu
*
* @return $this
*/
public function addSubmenu($menu) {
$this->submenus[] = $menu;
return $this;
}
/**
* Render this menu using javascript popups..
*
* @return string
*/
public function getMenu() {
global $menucount;
if (!isset($menucount)) {
$menucount = 0;
} else {
$menucount++;
}
$id = $menucount . rand();
$c = count($this->submenus);
$output = "