src/app/controllers/artuino_workshop.php 1 location
|
@@ 198-205 (lines=8) @@
|
195 |
|
$this->http->redirect(base_url() . "pulsation/artuino/register/"); |
196 |
|
} |
197 |
|
|
198 |
|
public function webhook() { |
199 |
|
global $payment_cfg; |
200 |
|
|
201 |
|
if (isset($_POST['custom_fields'][$nick_field])) { |
202 |
|
$nick = $_POST['custom_fields'][$nick_field]['value']; |
203 |
|
$this->model->artuino_dump_data($nick, 'webhook', json_encode($_POST)); |
204 |
|
} |
205 |
|
} |
206 |
|
} |
207 |
|
|
src/app/controllers/arvr_workshop.php 1 location
|
@@ 150-157 (lines=8) @@
|
147 |
|
$this->http->redirect(base_url() . "talks-and-workshops/arvr/register/"); |
148 |
|
} |
149 |
|
|
150 |
|
public function webhook() { |
151 |
|
global $payment_cfg; |
152 |
|
|
153 |
|
if (isset($_POST['custom_fields'][$nick_field])) { |
154 |
|
$nick = $_POST['custom_fields'][$nick_field]['value']; |
155 |
|
$this->model->arvr_dump_data($nick, 'webhook', json_encode($_POST)); |
156 |
|
} |
157 |
|
} |
158 |
|
} |
159 |
|
|
src/app/controllers/riderofstorms.php 1 location
|
@@ 158-165 (lines=8) @@
|
155 |
|
$this->http->redirect(base_url() . "cultural-Colosseum/bob/register/"); |
156 |
|
} |
157 |
|
|
158 |
|
public function webhook() { |
159 |
|
global $payment_cfg; |
160 |
|
|
161 |
|
if (isset($_POST['custom_fields'][$nick_field])) { |
162 |
|
$nick = $_POST['custom_fields'][$nick_field]['value']; |
163 |
|
$this->model->riderofstorms_dump_data($nick, 'webhook', json_encode($_POST)); |
164 |
|
} |
165 |
|
} |
166 |
|
} |
167 |
|
|
src/app/controllers/webdev_workshop.php 1 location
|
@@ 154-161 (lines=8) @@
|
151 |
|
$this->http->redirect(base_url() . "talks-and-workshops/web-development/register/"); |
152 |
|
} |
153 |
|
|
154 |
|
public function webhook() { |
155 |
|
global $payment_cfg; |
156 |
|
|
157 |
|
if (isset($_POST['custom_fields'][$nick_field])) { |
158 |
|
$nick = $_POST['custom_fields'][$nick_field]['value']; |
159 |
|
$this->model->webdev_dump_data($nick, 'webhook', json_encode($_POST)); |
160 |
|
} |
161 |
|
} |
162 |
|
} |
163 |
|
|
src/app/controllers/mun.php 1 location
|
@@ 163-170 (lines=8) @@
|
160 |
|
$this->http->redirect(base_url() . "talks-and-workshops/mun/register/"); |
161 |
|
} |
162 |
|
|
163 |
|
public function webhook() { |
164 |
|
global $payment_cfg; |
165 |
|
|
166 |
|
if (isset($_POST['custom_fields'][$nick_field])) { |
167 |
|
$nick = $_POST['custom_fields'][$nick_field]['value']; |
168 |
|
$this->model->mun_dump_data($nick, 'webhook', json_encode($_POST)); |
169 |
|
} |
170 |
|
} |
171 |
|
} |
172 |
|
|