backend_themes_list

Allows adding custom content to the “Storefront → Design themes” section in the Webasyst 2 mode.

Shop-Script

Input (passed by reference)

No specific parameters.
… your plugin code …

Output

{$backend_themes_list.top}
Custom HTML code at the top of the “Design themes” section with the list of plugins from the Installer.
{$backend_themes_list.middle}
Custom HTML code in the middle of the “Design themes” section with the list of plugins from the Installer.
{$backend_themes_list.bottom}
Custom HTML code at the bottom of the “Design themes” section with the list of plugins from the Installer.
Shop-Script

Plugin code example

PHP

public function backendThemesList()
{
    return [
        'top' => 'Additional HTML code at the top',
        'middle' => 'Additional HTML code in the middle',
        'bottom' => 'Additional HTML code at the bottom',
    ];
}