Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndr-w committed Jul 16, 2024
2 parents 543f28e + 039206e commit 603c98f
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions boot.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
use rex_csrf_token;
use rex_extension;
use rex_extension_point;
use rex_package;
use rex_plugin;
use rex_url;
use rex_yform_manager_dataset;
Expand Down Expand Up @@ -107,3 +108,22 @@ static function ($a) {
);
}
});

if (rex::isBackend() && \rex_addon::get('neues') && \rex_addon::get('neues')->isAvailable() && !rex::isSafeMode()) {
$addon = rex_addon::get('neues');
$pages = $addon->getProperty('pages');

$_csrf_key = rex_yform_manager_table::get('rex_neues_entry')->getCSRFKey();
$token = rex_csrf_token::factory($_csrf_key)->getUrlParams();

$params = [];
$params['table_name'] = 'rex_neues_entry'; // Tabellenname anpassen
$params['rex_yform_manager_popup'] = '0';
$params['_csrf_token'] = $token['_csrf_token'];
$params['func'] = 'add';

$href = rex_url::backendPage('neues/entry', $params);

$pages['neues']['title'] .= ' <a class="label label-primary tex-primary" style="position: absolute; right: 18px; top: 10px; padding: 0.2em 0.6em 0.3em; border-radius: 3px; color: white; display: inline; width: auto;" href="' . $href . '">+</a>';
$addon->setProperty('pages', $pages);
}

0 comments on commit 603c98f

Please sign in to comment.