Link Search Menu Expand Document

Method: account.createTheme

Back to methods index

Create a theme

Parameters:

NameTypeDescriptionRequired
slugstringUnique theme ID used to generate theme deep links, can be empty to autogenerate a random ID.Optional
titlestringTheme nameOptional
documentMessageMedia, Update, Message or InputDocumentTheme fileOptional
settingsArray of InputThemeSettingsTheme settings, multiple values can be provided for the different base themes (day/night mode, etc).Optional

Return type: Theme

Can bots use this method: NO

MadelineProto Example (now async for huge speed and parallelism!):

if (!file_exists('madeline.php')) {
    copy('https://phar.madelineproto.xyz/madeline.php', 'madeline.php');
}
include 'madeline.php';

$MadelineProto = new \danog\MadelineProto\API('session.madeline');
$MadelineProto->start();

$Theme = $MadelineProto->account->createTheme(slug: 'string', title: 'string', document: $InputDocument, settings: [$InputThemeSettings, $InputThemeSettings], );