add_action('wp_dashboard_setup', function () {
wp_add_dashboard_widget(
'dvm_gbb_agenda_bootverhuur-de-kruumte',
'Verhuuragenda - Bootverhuur de Kruumte',
function () {
echo '<iframe src="https://oldgiethoorn.nl/boot-huren-giethoorn?gbb_agenda=1&gbb_location=bootverhuur-de-kruumte" style="width:100%;min-height:900px;border:0;border-radius:12px;background:#ffffff;" loading="lazy"></iframe>';
}
);
});
add_action('admin_head-index.php', function () {
echo '<style>#dvm_gbb_agenda_bootverhuur-de-kruumte .postbox-header{background:linear-gradient(135deg,#3f7f42 0%,#356a38 100%);border-bottom:1px solid #2f6e34;}#dvm_gbb_agenda_bootverhuur-de-kruumte .hndle,#dvm_gbb_agenda_bootverhuur-de-kruumte .handlediv .toggle-indicator:before{color:#ffffff !important;}#dvm_gbb_agenda_bootverhuur-de-kruumte .inside{background:#f7fbf4;}</style>';
});
add_action('admin_menu', function () {
add_menu_page(
'Verhuurderbeheer - Bootverhuur de Kruumte',
'Verhuurderbeheer',
'read',
'dvm-gbb-verhuurderbeheer-bootverhuur-de-kruumte',
function () {
echo '<div class="wrap"><h1 style="margin:14px 0 16px;padding:14px 16px;border-radius:12px;border:1px solid #2f6e34;background:linear-gradient(135deg,#3f7f42 0%,#356a38 100%);color:#ffffff;">Verhuurderbeheer - Bootverhuur de Kruumte</h1><iframe src="https://oldgiethoorn.nl/boot-huren-giethoorn?gbb_partner_admin=1&gbb_location=bootverhuur-de-kruumte&gbb_token=e47d51023d8103cb9d89" style="width:100%;min-height:1200px;border:0;border-radius:12px;background:#ffffff;" loading="lazy"></iframe></div>';
},
'dashicons-calendar-alt',
58
);
});