backend_settings_pos

Allows adding custom content to the POS settings section in the new interface (2.0).

Shop-Script

Input (passed by reference)

No specific parameters.
… your plugin code …

Output

{$backend_settings_pos.top}
Custom HTML code at the top.
{$backend_settings_pos.middle}
Custom HTML code below the main header.
{$backend_settings_pos.bottom}
Custom HTML code at the bottom.
Shop-Script

Plugin code example

PHP

public function backendSettingsPos()
{
    return [
        'top' => '<!-- custom HTML at the top -->',
        'middle' => '<!-- custom HTML under the main heading -->',
        'bottom' => '<!-- custom HTML at the bottom -->',
    ];
}