backend_plugins_list
Allows adding custom content to the “Plugins” section in the Webasyst 2 mode.
Shop-Script
Input (passed by reference)
No specific parameters.
… your plugin code …
Output
{$backend_plugins_list.top}
Custom HTML code at the top of the “Plugins” section with the list of plugins from the Installer.
{$backend_plugins_list.middle}
Custom HTML code in the middle of the “Plugins” section with the list of plugins from the Installer.
{$backend_plugins_list.bottom}
Custom HTML code at the bottom of the “Plugins” section with the list of plugins from the Installer.
Shop-Script
Plugin code example
PHP
public function backendPluginsList() { return [ 'top' => 'Custom HTML code at the top', 'middle' => 'Custom HTML code in the middle', 'bottom' => 'Custom HTML code at the bottom', ]; }