How would I turn something like this...
Into something like this... ?
Each item on the list would have the href value of:
Any thoughts?
Code:
public function __construct()
{
// LINK TYPE
// ASSOC KEY, FILE NAME, LINK TEXT
$this->KanbanLink_array = array
(
'KANBAN STATUS' => array
(
'CHKRFLST' => array('KanbanStatus.php?p=', 'Check Refill Status'),
'KBSTLE' => array('KanbanStatus.php?p=', 'Request Kanban Refill'),
'RKBSTF' => array('KanbanStatus.php?p=', 'Report Kanban Full')
),
'REPORTS' => array
(
'BYRRPT' => array('KanbanReport.php?p=', 'Buyer Report'),
'MMRRPT' => array('KanbanReport.php?p=', 'Mini Mart Report'),
'SPLYCRPT' => array('KanbanReport.php?p=', 'Supply Cell Report')
),
);
}
Into something like this... ?
Code:
Kanban Status
Check Refill Status
Request Kanban Refill
Report Kanban Full
Reports
Buyer Report
Mini Mart Report
Supply Cell Report
Each item on the list would have the href value of:
Code:
<a href="Kanban[Status|Report].php?p=[CHKRFLST|...]">Check Refill Status</a>
Any thoughts?