* 'icon' - (string) Filename of the image icon.
* 'icon_path' - (string) Non-default directory path for icon.
* 'onclick' - (string) Onclick javascript.
- * 'text' - (string) Label.
* 'target' - (string) HREF target parameter.
+ * 'text' - (string) Label.
* 'url' - (string) Hyperlink.
* </pre>
*
$pos = count($this->_menu);
}
- $this->_menu[$pos] = $item;
+ $this->_menu[$pos] = array_merge(array(
+ 'class' => '',
+ 'icon' => '',
+ 'icon_path' => null,
+ 'onclick' => null,
+ 'target' => '',
+ 'text' => '',
+ 'url' => ''
+ ), $item);
return $pos;
}