Compare commits

..

No commits in common. "5b2d677d173c125a7712aad131e47a03cadb4403" and "f9d2d659313d50e25ed587df7f5305345456fe92" have entirely different histories.

1 changed files with 37 additions and 61 deletions

View File

@ -10,16 +10,11 @@ $items = new ArrayObject;
$items[0] = new ArrayObject(); // top level menu items go here
if ($wordpress_endpoint) {
try {
$client = new Client($wordpress_endpoint);
$client->setOptions(array("timeout"=>1));
$response = $client->send();
}
catch (exception $e) {
$response = null;
}
if ($response) {
$response_data = json_decode($response->getBody());
if (!$response->isClientError() && $response_data) {
foreach ($response_data as $menu_item) {
$lowered_title = strtolower($menu_item->title);
@ -44,29 +39,9 @@ if ($wordpress_endpoint) {
}
}
}
}
if (count($items[0]) == 0) {
// we did not retrieve a menu from the wordpress site
// let's create a default menu
if ($wordpress_site) {
$project_item = [
"id" => 2,
"title" => "Project",
"url" => $wordpress_site
];
$items[0][2] = $project_item;
}
$login_item = [
"id" => 1,
"title" => "Login",
"url" => "/login"
];
$items[0][1] = $login_item;
}
//print_r($items);
if (!function_exists('render_menu')) {
function render_menu($items, $level_id) {
echo '<ul>' . PHP_EOL;
foreach ($items[$level_id] as $menu_item) {
@ -79,8 +54,9 @@ if (!function_exists('render_menu')) {
}
echo '</ul>' . PHP_EOL;
}
if (count($items[0]) > 0) {
render_menu($items, 0);
}
render_menu($items, 0);
?>