solitweb/directadmin

PHP class for communicating with DirectAdmin API

3.0.2 2020-12-26 16:07 UTC

This package is auto-updated.

Last update: 2024-04-26 23:14:50 UTC


README

Latest Version Software License Build Status Total Downloads

More info on the PHP class: http://forum.directadmin.com/showthread.php?t=258

Installation

You can install this package via Composer using:

composer require solitweb/directadmin

Usage

Basic usage. Get list of users owned by reseller:

$api = new DirectAdmin;
$api->connect("domain", 2222);
$api->set_login("username", "password");
$api->set_method('GET');
$api->query("/CMD_API_SHOW_USERS");
$api->fetch_parsed_body();
print_r($api);

More sample API scripts

Credits

License

The MIT License (MIT). Please see License File for more information.