如何从类中构建菜单

时间:2019-01-21 00:26:31

标签: php

我希望基于类中的功能动态构建菜单。

每个类都应具有某种标记菜单中包含内容的方法。 每种方法都应在菜单中使用某种方式包含标志。 如何最好地实现这一目标?

<?php
class foo{
  const MENUITEM = 1;

  public function index(){
    // something here to flag inclusion in the menu
  }

  public function show(){
     // this function is not included in the menu
  }
}

0 个答案:

没有答案