mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-23 21:56:07 +03:00
19 lines
694 B
PHP
19 lines
694 B
PHP
<?php
|
|
class ModelIntarocrmOrder extends Model {
|
|
|
|
public function send($order, $order_id)
|
|
{
|
|
$this->load->model('setting/setting');
|
|
$settings = $this->model_setting_setting->getSetting('intarocrm');
|
|
$settings['domain'] = parse_url(HTTP_SERVER, PHP_URL_HOST);
|
|
|
|
if(isset($settings['intarocrm_url']) && $settings['intarocrm_url'] != '' && isset($settings['intarocrm_apikey']) && $settings['intarocrm_apikey'] != '') {
|
|
include_once DIR_SYSTEM . 'library/intarocrm/apihelper.php';
|
|
$order['order_id'] = $order_id;
|
|
$crm = new ApiHelper($settings);
|
|
$crm->processOrder($order);
|
|
}
|
|
|
|
}
|
|
}
|
|
?>
|