// SPDX-FileCopyrightText: 2021 Harald Eilertsen // // SPDX-License-Identifier: AGPL-3.0-or-later if ( !class_exists( "GiglogAdmin_NewVenueForm" ) ) { class GiglogAdmin_NewVenueForm { public function render() : string { return '
' . '

VENUE DETAILS

' . '
' . '
' . wp_nonce_field( plugin_basename( __FILE__ ), 'giglog_new_venue_nonce' ) . '
' . ' ' . ' ' . '
' . '
' . ' ' . ' ' . '
' . '
' . ' ' . '
' . '
' . '' . '
'; } } }