I have a PHP function named gameMenu which generates a menu with buttons in a game application. I want to modify it so that if the second_button property is set to true, a corresponding second button appears next to that button, then parse that data to the row.php where it should place the 1st in the list on the first 2nd on the 2nd ect... I've kind of got it working except all buttons have a second button and they all have 1 of each in the list, also some of it may be a mess its been bugging me for a whole day! i attached 3 screens 1st is just normal i guess 2nd and 3rd is when i hover, to show that they have stacked up!, any help is appreciated!
//page.php
/**
* gameMenu
*
* @return string
*/
private function gameMenu()
{
$lang = $this->langs->loadLang('game/menu', true);
$menu_block1 = '';
$menu_block2 = '';
$menu_block3 = '';
$modules_array = explode(';', Functions::readConfig('modules'));
$tota_rank = $this->current_user['user_statistic_total_rank'] == '' ?
$this->current_planet['stats_users'] : $this->current_user['user_statistic_total_rank'];
$pages = [/*main buttons column*/
['overview', $lang->line('lm_overview'), '', 'FFF', '', '1', '1', 'second_button' => true, 'button_enabled' => true],
['empire', $lang->line('lm_empire'), '', 'FFF', '', '1', '2', 'second_button' => false, 'button_enabled' => false],
['resources', $lang->line('lm_resources'), '', 'FFF', '', '1', '3', 'second_button' => true, 'button_enabled' => true],
['resourceSettings', $lang->line('lm_resources_settings'), '', 'FFF', '', '1', '4', 'second_button' => false, 'button_enabled' => false],
['station', $lang->line('lm_station'), '', 'FFF', '', '1', '5', 'second_button' => false, 'button_enabled' => true],
['traderOverview', $lang->line('lm_trader'), '', 'FF8900', '', '1', '6', 'second_button' => false, 'button_enabled' => true],
['research', $lang->line('lm_research'), '', 'FFF', '', '1', '7', 'second_button' => true, 'button_enabled' => true],
['techtree', $lang->line('lm_technology'), '', 'FFF', '', '1', '8', 'second_button' => false, 'button_enabled' => false],
['shipyard', $lang->line('lm_shipyard'), '', 'FFF', '', '1', '9', 'second_button' => false, 'button_enabled' => true],
['defense', $lang->line('lm_defenses'), '', 'FFF', '', '1', '10', 'second_button' => false, 'button_enabled' => true],
['fleet1', $lang->line('lm_fleet'), '', 'FFF', '', '1', '11', 'second_button' => false, 'button_enabled' => true],
['movement', $lang->line('lm_movement'), '', 'FFF', '', '1', '12', 'second_button' => false, 'button_enabled' => false],
['galaxy', $lang->line('lm_galaxy'), 'mode=0', 'FFF', '', '1', '13', 'second_button' => false, 'button_enabled' => true],
['alliance', $lang->line('lm_alliance'), '', 'FFF', '', '1', '14', 'second_button' => false, 'button_enabled' => true],
['officier', $lang->line('lm_officiers'), '', 'FF8900', '', '1', '15', 'second_button' => false, 'button_enabled' => true],
['messages', $lang->line('lm_messages'), '', 'FFF', '', '1', '16', 'second_button' => false, 'button_enabled' => true],
['statistics', $lang->line('lm_statistics'), 'range=' . $tota_rank, 'FFF', '', '2', '17', 'second_button' => false, 'button_enabled' => true],
['notes', $lang->line('lm_notes'), '', 'FFF', 'true', '2', '18', 'second_button' => false, 'button_enabled' => true],
['buddies', $lang->line('lm_buddylist'), '', 'FFF', '', '2', '19', 'second_button' => false, 'button_enabled' => true],
['search', $lang->line('lm_search'), '', 'FFF', '', '2', '20', 'second_button' => false, 'button_enabled' => true],
['preferences', $lang->line('lm_options'), '', 'FFF', '', '2', '21', 'second_button' => false, 'button_enabled' => true],
['logout', $lang->line('lm_logout'), '', 'FFF', '', '2', '22', 'second_button' => false, 'button_enabled' => true],
['forums', $lang->line('lm_forums'), '', 'FFF', '', '2', '23', 'second_button' => false, 'button_enabled' => false],
];
$second_button_pages = [/*if second_button is true this appears to the right of that button*/
['empire', $lang->line('lm_empire'), '', 'FFF', '', '1', '1'],/*overview settings*/
['resourceSettings', $lang->line('lm_resources_settings'), '', 'FFF', '', '1', '3'],/*resource settings*/
['techtree', $lang->line('lm_technology'), '', 'FFF', '', '1', '7'],/*research settings*/
['movement', $lang->line('lm_movement'), '', 'FFF', '', '1', '11'],/*fleet1 movement*/
];
$snd = [
0 => ['game.php?page=empire'],
1 => ['game.php?page=resourceSettings'],
2 => ['game.php?page=techtree'],
3 => ['game.php?page=movement'],
];
$parse['snd'] = $snd;
//$parse['second_button_pages'] = $second_button_pages;
$count = ('0');
// BUILD THE MENU
foreach ($pages as $key => $data) {
// IF THE MODULE IT'S NOT ENABLED, CONTINUE!
if (isset($modules_array[$data[6]]) && $modules_array[$data[6]] == 0 && $modules_array[$data[6]] != '') {
continue;
}
if ($data[6] == $second_button_pages[$count][0] && $count <= 4){
if ($count == $count){
$parse['snd[$count]'] = $snd[$count];
}
$count += 1;
}
// BUILD URL
if ($data[2] != '') {
$link = 'game.php?page=' . $data[0] . '&' . $data[2];
} else {
$link = 'game.php?page=' . $data[0];
}
// POP UP OR NOT
if ($data[4] == 'true') {
$link_type = '<a href="#" onClick="f(\'' . $link . '\', \'' . $data[1] . '\')">
<font color="' . (($data[3] != 'FFF') ? $data[3] : '') . '">' . $data[1] . '</font></a>';
} else {
$link_type = '<a href="' . $link . '">
<font color="' . (($data[3] != 'FFF') ? $data[3] : '') . '">' . $data[1] . '</font></a>';
}
// MENU BUTTON & SECOND BUTTON IF SECOND BUTTON IS ENABLED
//var_dump($data['button_enabled']); // Add this line to check the value
//$parse['second_button'] = isset($data['second_button']) && $data['second_button'];/*this is the second_button thats a square and to the right of the main button*/
$parse['main_button'] = isset($data['button_enabled']) && $data['button_enabled'];
// COLOR AND URL
$parse['color'] = $data[3];
$parse['menu_link'] = $link_type;
// ONLY FOR THE CHANGELOG
if ($data[5] == 0) {
$parse['changelog'] = '(' . $link_type . ')';
}
// MENU BLOCK [1 - 2 - 3]
switch ($data[5]) {
case '1':
$menu_block1 .= $this->template->set(
'general/left_menu_row_view',
$parse
);
break;
case '2':
$menu_block2 .= $this->template->set(
'general/left_menu_row_view',
$parse
);
break;
case '3':
$menu_block3 .= $this->template->set(
'general/left_menu_row_view',
$parse
);
break;
}
}
// PARSE THE MENU AND OTHER DATA
$parse['dpath'] = DPATH;
$parse['lm_players'] = $lang->line('lm_players');
$parse['user_name'] = UrlHelper::setUrl('game.php?page=preferences', $this->current_user['user_name']);
$parse['menu_block1'] = $menu_block1;
$parse['menu_block2'] = $menu_block2;
$parse['menu_block3'] = $menu_block3;
$parse['admin_link'] = (($this->current_user['user_authlevel'] > 0) ?
'<tr><td><div align="center"><a href="admin.php" target="_blank">
<font color="lime">' . $lang->line('lm_administration') . '</font></a></div></td></tr>' : '');
$parse['servername'] = Functions::readConfig('game_name');
$parse['changelog'] = UrlHelper::setUrl('game.php?page=changelog', SYSTEM_VERSION);
$parse['version'] = SYSTEM_VERSION;
$parse['year'] = $this->current_year;
return $this->template->set(
'general/left_menu_view',
$parse
);
}
//left_row.php
<body>
<table>
@if ($main_button)
<tr>
<td style="display: flex;flex-direction: row;flex-wrap: nowrap; justify-content: center;">
<div class="holo-container" style="background-image: url('public/upload/skins/xgproyect/menu/holomen.png'); background-size: contain;">
<span>
{!! $menu_link !!}
</span>
</div>
<div>@if ($main_button)
@if ($snd)
@foreach ($snd as $button)
@if ($button)
<a href="{{ $button[0] }}" style="color: #fff">
<button class="holo-button" style="right: 25px; position: absolute; background-image: url('public/upload/skins/xgproyect/menu/sbutton.png'); background-size: contain; width: 32px; height: 32px; background-color: #fff0; border: none;">
<img src="public/upload/skins/xgproyect/menu/cog.svg" alt="Cog Icon" style="width: 100%; height: 100%; filter: invert(100%);">
</button>
</a>
@endif
@endforeach
@endif
@endif
</div>
</td>
</tr>
@endif
</table>
</body>