Bu cevap, konu sahibi tarafından kabul edilebilir bir cevap olarak işaretlendi.
$base_url = '/web/admin'; // Ana URL
$menu_items = [
[
'icon' => 'fas fa-home',
'text' => 'Theme Settings',
'link' => $base_url . '/homesettings.php'
],
[
'icon' => 'fas fa-bars',
'text' => 'Blog',
'submenu' => [
[
'text' => 'Blog List',
'link' => $base_url . '/blog/blog_list.php'
],
[
'text' => 'Add Blog',
'link' => $base_url . '/blog/add_blog.php'
]
]
],
[
'icon' => 'fas fa-thumbtack',
'text' => 'Pinned Items',
'link' => $base_url . '/pinned_items.php'
],
[
'icon' => 'fas fa-heart',
'text' => 'Following',
'link' => $base_url . '/following.php'
],
[
'icon' => 'fas fa-chart-line',
'text' => 'Trending',
'link' => $base_url . '/trending.php'
],
[
'icon' => 'fas fa-fire',
'text' => 'Challenges',
'link' => $base_url . '/challenges.php'
],
[
'icon' => 'fas fa-magic',
'text' => 'Kategoriler',
'link' => $base_url . '/blog/add_category.php'
],
[
'icon' => 'fas fa-gem',
'text' => 'Blog',
'link' => $base_url . '/blog/edit.php'
],
[
'icon' => 'fas fa-cog',
'text' => 'Ayarlar',
'link' => $base_url . '/ayarlar.php'
]
];