// SPDX-FileCopyrightText: 2021 Harald Eilertsen // // SPDX-License-Identifier: AGPL-3.0-or-later require_once __DIR__ . '/../../view-helpers/select_field.php'; if (!class_exists("GiglogAdmin_EditConcertForm")) { class GiglogAdmin_EditConcertForm { private function get_venue_selector( ?GiglogAdmin_Venue $invenue ): string { return \EternalTerror\ViewHelpers\select_field( "selectvenueadmin", array_map(fn($venue) => [$venue->id(), $venue->name()], GiglogAdmin_Venue::all_venues()), $invenue ? $invenue->id() : null); } private function user_dropdown_for_role( GiglogAdmin_Concert $concert, string $role): string { $users = array_map( fn($usr): string => $usr->user_login, get_users( array( 'fields' => array( 'user_login' ) ) ) ); $roles = $concert->roles(); $current_user = array_key_exists($role, $roles) ? $roles[$role] : NULL; return \EternalTerror\ViewHelpers\select_field( $role, array_map( fn($user) => [ $user, $user ], $users ), $current_user); } public function render() : string { $cid = filter_input(INPUT_POST, "cid"); $editing = filter_input(INPUT_POST, "edit") == "EDIT"; if ($editing && !empty($cid)) //A bit overdoing with the checks if concert ID is empty both here and in find_cid. But based on that, things are NULL or not. Better ideas? $c = GiglogAdmin_Concert::get($cid); else $c = new GiglogAdmin_Concert((object)[]); $content='
'; $content.='
' .'
CONCERT DETAILS

' . wp_nonce_field( plugin_basename( __FILE__ ), 'giglog_edit_concert_nonce' ) .'' .'
' .'' . $this->get_venue_selector($c->venue()) . '
' //date has to be formatted else it is not red in the date field of html form .'
' .'
' .'
' .'
'; // actions differ if we update or create a concert, hence two buttons needed if ($editing) $content.='

'; else $content.='

'; $content.='
'; $content.='
ASSIGNMENT DETAILS

' .''.$this->user_dropdown_for_role($c,'photo1').'
' .''.$this->user_dropdown_for_role($c,'photo2').'
' .''.$this->user_dropdown_for_role($c,'rev1').'
' .''.$this->user_dropdown_for_role($c,'rev2').'
'; $content.='
'; return $content; } } }