Description
The new()
method instantiates the Cpanel::LiveAPI
object.
- Only use this method once in any script or application.
- Use this method before you perform any actions that require a connection to cPanel & WHM.
Examples
LiveAPI PHP Class
1
2
|
// Connect to cPanel - only do this once. $cpanel = new CPANEL(); |
LiveAPI Perl Module
1
2
|
# Connect to cPanel - only do this once. $cpanel ->new(); |
Parameters
This method does not accept parameters.
Returns
This method returns a LiveAPI object.