Skip to content

Commit b1de0dc

Browse files
committed
fix: add event participants
1 parent b0ba1f3 commit b1de0dc

File tree

3 files changed

+68
-33
lines changed

3 files changed

+68
-33
lines changed

application/controllers/Admin.php

+15-7
Original file line numberDiff line numberDiff line change
@@ -288,41 +288,49 @@ function event_registration()
288288
{
289289
$data = $this->input->post();
290290
$data = $this->security->xss_clean($data);
291+
if ($this->user_model->is_available($data['team_lead_email_id']) == false) {
292+
$user_data = array(
293+
'email' => $data['team_lead_email_id'],
294+
);
295+
$this->db->insert('userRegister', $user_data);
296+
}
291297
$is_iedc_member = $this->user_model->is_iedc_member($data['team_lead_email_id']);
292298
$is_event_for_iedc_members = $this->user_model->is_event_for_iedc_members($data['event_id']);
293299
$duplicate = $this->user_model->check_duplicate_reg_events($data['team_lead_email_id'], $data['event_id']);
294300
$is_reg_open = $this->user_model->check_if_event_closed($data['event_id']);
295301
$is_reg_count_max = $this->user_model->check_is_reg_count_max($data['event_id']);
302+
$this->session->set_userdata('last_page', base_url("admin/add-event-participants/{$data['event_id']}"));
296303
if ($is_reg_count_max == false) {
297304
if ($is_reg_open == true) {
298305
if ($duplicate == false) {
299306
if ($is_event_for_iedc_members == true) {
300307
if ($is_iedc_member == true) {
301308

302-
$this->user_model->event_registration($data,$data['team_lead_email_id']);
309+
$this->user_model->event_registration($data, $data['team_lead_email_id']);
303310
} else {
304311
$this->session->set_flashdata('fail', 'Team lead is not an IEDC member!!');
305-
redirect('admin/dashboard/add-event-participants');
312+
redirect("admin/add-event-participants/{$data['event_id']}");
306313
}
307314
} else {
308-
$this->user_model->event_registration($data,$data['team_lead_email_id']);
315+
$this->user_model->event_registration($data, $data['team_lead_email_id']);
309316
}
310317
} else {
311318

312319
$this->session->set_flashdata('fail', 'Already registred for this event!! (Email/Phone already registred for this event)');
313-
redirect('admin/dashboard/add-event-participants');
320+
redirect("admin/add-event-participants/{$data['event_id']}");
314321
}
315322
} else {
316323
$this->session->set_flashdata('fail', 'Registration Closed!!');
317-
redirect('admin/dashboard/add-event-participants');
324+
redirect("admin/add-event-participants/{$data['event_id']}");
318325
}
319326
} else {
320327
$this->session->set_flashdata('fail', 'Registration count exceeded!!');
321-
redirect('admin/dashboard/add-event-participants');
328+
redirect("admin/add-event-participants/{$data['event_id']}");
322329
}
323330
}
324331

325-
function add_event_participants($event_id){
332+
function add_event_participants($event_id)
333+
{
326334
$data['eventDetails'] = $this->admin_model->get_event_details($event_id);
327335
$data['user_type'] = $this->admin_model->getusertype($this->session->email);
328336
$data['userinfo'] = $this->user_model->get_user_single($this->session->email);

application/models/User_model.php

+7
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,13 @@ function is_team($event_id)
435435
function event_registration($data,$team_lead_email)
436436
{
437437
$status = $this->is_team($data['event_id']);
438+
if (!array_key_exists('file_link',$data)){
439+
$data['file_link'] = NULL;
440+
}
441+
if (!array_key_exists('payment_id',$data)){
442+
$data['payment_id'] = NULL;
443+
}
444+
438445
$temp = array(
439446
'event_id' => $data['event_id'],
440447
'reg_email' => $team_lead_email,

application/views/dashboard/dynamic_admin/add-event-participants.php

+46-26
Original file line numberDiff line numberDiff line change
@@ -16,41 +16,61 @@
1616
<?php if ($this->session->flashdata('success')) : ?>
1717
<span style="line-height:3" class="badge badge-success"><?php echo $this->session->flashdata('success'); ?></span>
1818
<?php endif; ?>
19-
<div class="card-body">
20-
<h6 class="card-title">ADD EVENT PARTICIPANT</h6>
21-
<h6 class="my-1">Event Name : <?php echo($eventDetails->event_title) ?></h6>
22-
<?php echo form_open_multipart('admin/add_stories'); ?>
23-
<div class="forms-sample">
24-
<div class="form-group">
25-
<label for="payment_id">Enter payment id (If you are a 'ELGIBLE' user for 'FREE' registration please type 'NA' )</label>
26-
<input type="text" class="form-control" name="payment_id" id="payment_id" placeholder="Payment ID" required>
27-
</div>
28-
<p style="color: blue;"><b>Please fill your teammates email id (if any)</b></p>
29-
<input type="email" class="form-control mb-1" value="<?= $_SESSION['email'] ?>" readonly>
30-
<span id="addMember">
31-
</span>
32-
33-
<button type='button' onclick="addMember()" class='btn btn-primary'>Add Member</button>
34-
<button type="submit" class="btn btn-primary mr-2">Submit</button>
35-
<button type="reset" class="btn btn-light">Reset</button>
19+
<?php if ($eventDetails->is_reg_open == 1) { ?>
20+
<div class="card-body">
21+
<h6 class="card-title">ADD EVENT PARTICIPANT</h6>
22+
<h6 class="my-1">Event Name : <?php echo ($eventDetails->event_title) ?></h6>
23+
<form method="post" action="<?= base_url() ?>admin/event_registration">
24+
<div class="forms-sample">
25+
<?php if ($eventDetails->is_payment_id == 1) { ?>
26+
<div class="form-group">
27+
<label for="payment_id">Enter payment id (If you are a 'ELGIBLE' user for 'FREE' registration please type 'NA' )</label>
28+
<input type="text" class="form-control" name="payment_id" id="payment_id" placeholder="Payment ID" required>
29+
</div>
30+
<?php } ?>
31+
<?php if ($eventDetails->is_file_submission == 1) { ?>
32+
<div class="form-group">
33+
<label for="file_link">Please type your abstract/file link here</label>
34+
<input type="text" class="form-control" name="file_link" id="file_link" placeholder="Please type your abstract/file link here" required>
35+
</div>
36+
<?php } ?>
37+
38+
<?php if ($eventDetails->is_team == 1) { ?>
39+
<p style="color: blue;"><b>Team Lead email ID</b></p>
40+
<input type="email" placeholder="Enter Team Lead Email ID" class="form-control mb-1" name="team_lead_email_id">
41+
<p style="color: blue;"><b>Add team members (if any)</b></p>
42+
<span id="addMember">
43+
</span>
44+
<button type='button' onclick="addMember()" class='btn btn-primary'>Add Member</button>
45+
<?php } else { ?>
46+
<p style="color: blue;"><b>Participant Email ID</b></p>
47+
<input type="email" class="form-control mb-1" name="team_lead_email_id">
48+
<?php } ?>
49+
<input name="event_id" type="hidden" value="<?= $eventDetails->event_id ?>">
50+
<br><br>
51+
<button type="submit" class="btn btn-primary mr-2">Submit</button>
52+
<button type="reset" class="btn btn-light">Reset</button>
53+
</div>
54+
</form>
3655
</div>
37-
</form>
38-
</div>
56+
<?php } else { ?>
57+
<h5 style="color: red;"><b>Registration Closed</b></h5>
58+
<?php } ?>
3959
</div>
4060
</div>
4161
</div>
4262

43-
<?php } else { ?>
63+
<?php } else { ?>
4464
<h5 style="color:red">You are not authorized to access this page</h5>
4565
<?php } ?>
4666
</div>
4767

4868
<script>
49-
function addMember() {
50-
$("#addMember").append('<span class="removeClass" style="display:inline-flex;width:100%;"><input type="email" name="team_email[]" placeholder="Enter email id" class="form-control mb-1"> <button type="button" onclick="removeInputField(this);" class="btn btn-danger"><i class="fa fa-times"></i></button></span>');
51-
}
69+
function addMember() {
70+
$("#addMember").append('<span class="removeClass" style="display:inline-flex;width:100%;"><input type="email" name="team_email[]" placeholder="Enter email id" class="form-control mb-1"> <button type="button" onclick="removeInputField(this);" class="btn btn-danger"><i class="fa fa-times"></i></button></span>');
71+
}
5272

53-
function removeInputField(selectedField) {
54-
selectedField.closest('.removeClass').remove();
55-
}
73+
function removeInputField(selectedField) {
74+
selectedField.closest('.removeClass').remove();
75+
}
5676
</script>

0 commit comments

Comments
 (0)