Addon Module Development
Admin Area Content / Output
To create the content, you should create a function with adminArea name in the class, its return must strictly be array. Links/Actions Using $this->area_link variable, you can define returned URLs to your module. $this->area_link variable will be in "h...
Client Area Content / Output
To create the content, you should create a function with clientArea name in the class, its return must strictly be array. Links / Actions Using $this->area_link variable, you can define returned URLs to your module. $this->area_link variable will be in...
Sub-Page Content / Output
To create the content, you should create a function with main name in the class, its return must strictly be array. Links / Actions Using $this->area_link variable, you can define returned URLs to your module. $this->area_link variable will be in "http...
Multi-Language Support
The modules can support multiple languages if desired. This requires a folder named "lang" inside the add-on module. Inside this, language files, that match with the names of the main WISECP language folders, must be created. WISECP language folders are loca...
Hooks
In the file named "SampleAddon.php" which you use as the core file to define a hook to your WISECP Add-on module, you can define your hook codes on the line after the class. This will then be detected and the existing hooks will be loaded onto each page of t...