function options:

To add buttons on the side bar edit navbar.txt file: { 
    [Group name]: [button name] -> [page name.php]; [button name] -> [page name.php];| }

all files to start with : 
    include $_SERVER['DOCUMENT_ROOT'] . "/WebBuilder/WebApp.class.php";

$WebApp->search_basic([TABLE NAME],[where the system will point the user and send the record id of selected record],...styling...) 
    -> adds a search function to auto create searchable inputs based on the table

$WebApp->form_input_empty_single([TABLE NAME],[to where the system will point the user once operation is complete],...styling...) 
    -> adds a single empty form for a table in the data base en enter data into

$WebApp->form_input_edit_single([TABLE NAME],[$_GET['record_id']... record id of the data record to edit...],[to where the system will point the user once operation is complete],...styling...) 
    -> adds a single [populated] form for a table in the data base en enter data into

add pages to the WebApp Directory.