$menu
=
new
\Kendo\UI\Menu(
'menu'
);
$menu
->addItem(
new
\Kendo\UI\MenuItem(
'Home'
)
,
new
\Kendo\UI\MenuItem(
'Blog'
)
,
new
\Kendo\UI\MenuItem(
'Documentation'
)
,
new
\Kendo\UI\MenuItem(
'Code Changes'
)
,
new
\Kendo\UI\MenuItem(
'Community'
)
,
new
\Kendo\UI\MenuItem(
'Pricing'
)
,
new
\Kendo\UI\MenuItem(
'Downloads'
)
,
new
\Kendo\UI\MenuItem(
'About Us'
)
);
It seems it should be easier than having to add a content("<a href="link.php">Home</a>") to each item shouldn't it?