Link Search Menu Expand Document

Method: account.installTheme

Back to methods index

Install a theme

Parameters:

NameTypeDescriptionRequired
darkBoolWhether to install the dark versionOptional
themeInputThemeTheme to installOptional
formatstringTheme format, a string that identifies the theming engines supported by the clientOptional
base_themeBaseThemeIndicates a basic theme provided by all clientsOptional

Return type: Bool

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();

$Bool = $MadelineProto->account->installTheme(dark: $Bool, theme: $InputTheme, format: 'string', base_theme: $BaseTheme, );