Skip to content

Themes

This endpoint is useful for working with Adaptix themes.

1
2
3
4
5
6
7
8
9
<?php
use Adaptix\AdaptixApi;
use Adaptix\Auth\ApiAuth;

$initAuth = new ApiAuth();
$auth     = $initAuth->newAuth($settings);
$apiUrl   = "https://your-adaptix.ai";
$api      = new AdaptixApi();
$themesApi = $api->newApi("themes", $auth, $apiUrl);

Get theme

Returns directly the zip file in the response with the application/zip header on success or a JSON response body with error messages on fail. The PHP API library will save the zip file to the system temporary directory and provides you with the path.

<?php
$response = $themesApi->get($themeName);
1
2
3
{
    "file": "/absolute/path/to/the/system/temp/dir/with/the/theme/zip/file"
}

HTTP Request

GET /themes/THEME_NAME

Response

Expected Response Code: 200

Set Temporary File Path

Changes the default temporary directory where the zip file is created. The directory is created if it does not exist.

1
2
3
<?php
$themesApi->setTemporaryFilePath("/absolute/path/to/a/different/temp/dir");
$response = $themesApi->get($themeName);
1
2
3
{
    "file": "/absolute/path/to/a/different/temp/dir/zipfile"
}

Get List of themes

Lists all installed themes with the detailes stored in their config.json files.

<?php
$response = $themesApi->getList();
{
    "themes": {
        "blank": {
            "name": "Blank",
            "key": "blank",
            "config": {
                "name": "Blank",
                "author": "Adaptix team",
                "authorUrl": "https:\/\/adaptix.org",
                "features": [
                    "page",
                    "email",
                    "form"
                ]
            }
        },
        ...
    }
}

HTTP Request

GET /themes

Response

Expected Response Code: 200

See JSON code example.

Response Properties

Name Type Description
themes array List of installed themes and their configs

Create Theme

Creates a new theme or updates an existing one (based on the file name) from provided zip file.

1
2
3
4
5
6
<?php
$data = array(
    'file' => dirname(__DIR__).'/'.'mytheme.zip' // Must be a path to an existing file
);

$response = $themeApi->create($data);
The file is sent via regular POST files array like a browser sends it during file upload.

HTTP Request

POST /themes/new

Response

Expected Response Code: 200

1
2
3
{  
  "success": true
}

Delete File

<?php
$response = $themeApi->delete($themeName);
Delete a theme. The stock themes cannot be deleted

HTTP Request

DELETE /themes/THEME_NAME/delete

Response

Expected Response Code: 200

1
2
3
{
    "success": true
}