22 lines
491 B
PHP
22 lines
491 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'app_id' => 'desktop-debug',
|
|
'title' => 'Desktop Debug',
|
|
'label' => 'Debug',
|
|
'content_mode' => 'desktop-debug',
|
|
'admin_only' => true,
|
|
'window' => [
|
|
'x' => 120,
|
|
'y' => 88,
|
|
'width' => 720,
|
|
'height' => 520,
|
|
],
|
|
'ui' => [
|
|
'copy' => 'Live-Debug fuer Desktop und Native-Module. Tracking laeuft nur, solange dieses Fenster offen ist.',
|
|
'clear_label' => 'Log leeren',
|
|
],
|
|
];
|