phpnuxbill/system/devices
2024-06-12 17:28:55 +07:00
..
MikrotikHotspot.php check if demo or not 2024-06-12 15:39:43 +07:00
MikrotikPppoe.php check if demo or not 2024-06-12 15:39:43 +07:00
Radius.php radius to Radius 2024-06-12 17:28:55 +07:00
readme.md check if demo or not 2024-06-12 15:39:43 +07:00

How To add new Devices

just follow the template

<?php

class FileName {

    function add_customer($customer, $plan)
    {
    }

    function remove_customer($customer, $plan)
    {
    }

    function change_customer($customer, $plan)
    {
    }

    function add_plan($plan)
    {
    }

    function update_plan($old_name, $plan)
    {
    }

    function remove_plan($plan)
    {
    }

    function online_customer($customer, $router_name)
    {
    }

    function connect_customer($customer, $ip, $mac_address, $router_name)
    {
    }

    function disconnect_customer($customer, $router_name)
    {
    }

}