mecha-cms / mecha

Minimalist content management system.

Home Page:https://mecha-cms.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rewrite `Menu` Class

taufik-nurrohman opened this issue · comments

Before

echo Menu::get(array(
    'Home' => '/',
    'About' => '/about',
    'Contact' => '/contact'
));

After

Menu::add('navigation', array(
    'Home' => '/',
    'About' => '/about',
    'Contact' => '/contact'
));

echo Menu::navigation();