WiFi Pineapple NANO/TETRA Module API - module.php API
Every module must extend the Module
class that resides in Module.php
. Extending this class gives the module access to the following API functions. For more information, see Creating Modules.
Function | Arguments | Description | Usage |
---|---|---|---|
execBackground() |
| Will execute | `$this->execBackground("ifconfig wlan1 down"); |
installDependency() |
| Will use opkg to install |
|
checkDependency() |
| Will use opkg to check is |
|
checkRunning() |
| Will check to see if |
|
uciGet() |
| Will use UCI to get value of supplied |
|
uciSet() |
| Will use UCI to set the supplied |
|
uciAddList() |
| Will use UCI to create a new list with supplied |
|
Last updated