コード例 #1
0
ファイル: _ide_helper.php プロジェクト: VictorAvelar/sfg
 /**
  * Makes a new menu.
  * 
  * As the first argument you can send an array of items or reference a
  * configuration key where you can store the items array.
  *
  * @param array|string $items array of items or a config file key
  * @param string|null $classes main CSS classes for the menu
  * @return \Styde\Html\Menu\Menu 
  * @static 
  */
 public static function make($items, $classes = null)
 {
     return \Styde\Html\Menu\MenuGenerator::make($items, $classes);
 }