Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Привязка функции к кнопке "Оформление заказа"


Mishan
 Share

Recommended Posts

Добрый вечер. Подскажите пожалуйста, у меня есть PHP код, мне нужно привязать выполнение функции данного кода на оформление заказа. Чтобы когда пользователь нажимает "Подтвердить заказ" выполнялась данная функция и я мог получить имя пользователя. Если я правильно понимаю, то мне нужно копать в следующем файле catalog/model/checkout/order.php но что и куда конкретно не могу разобраться. Заранее спасибо за ответы!

Link to comment
Share on other sites


On 2/8/2018 at 8:19 PM, spectre said:

вам лучше это получать в success когда заказ уже оформлен

Это все в этом же файле? catalog/model/checkout/order.php 

Спасибо за ответ!

Link to comment
Share on other sites


21 минуту назад, Mishan сказал:

Это все в этом же файле? catalog/model/checkout/order.php 

Спасибо за ответ!

 

catalog/controller/checkout/success.php

 

if (isset($this->session->data['order_id'])) {

 

после этого можете получить заказ через getOrder как-то так


 

$this->load->model('checkout/order');

$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);

$имя_пользователя_которое_вам_нужно = $order_info['firstname'];

$фамилия_пользователя = $order_info['lastname'];

 

Link to comment
Share on other sites

18 minutes ago, spectre said:

 

catalog/controller/checkout/success.php

 

if (isset($this->session->data['order_id'])) {

 

после этого можете получить заказ через getOrder как-то так


 

$this->load->model('checkout/order');

$order_info = $this->model_checkout_order->getOrder($this->session->data['order_id']);

$имя_пользователя_которое_вам_нужно = $order_info['firstname'];

$фамилия_пользователя = $order_info['lastname'];

 

Спасибо, буду пробовать 

Link to comment
Share on other sites


Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...

Important Information

On our site, cookies are used and personal data is processed to improve the user interface. To find out what and what personal data we are processing, please go to the link. If you click "I agree," it means that you understand and accept all the conditions specified in this Privacy Notice.