$customer_id = $new_customer->create();
     $customer_default_address_id = $new_customer->get_default_address();
     smn_session_register('customer_id');
     smn_session_register('customer_first_name');
     smn_session_register('customer_default_address_id');
     smn_session_register('customer_country_id');
     smn_session_register('customer_zone_id');
 }
 //CREATE STORE IN THE DATABASE.....
 // systemsmanager begin - Dec 5, 2005
 $new_store = new store();
 $new_store->set_store_type($new_store_type);
 $new_store->set_customers_id($customer_id);
 $new_store->set_store_name($new_store_name);
 $new_store->set_store_description($store_description);
 $new_store->set_store_category($store_catagory);
 $new_store->set_store_logo('store_image');
 $customer_store_id = $new_store->create_store();
 smn_session_register('customer_store_id');
 $error_text = $new_store->put_logo_image();
 if ($error_text != '') {
     smn_session_register('error_text');
 }
 $new_store->put_store_description();
 $new_store->put_store_category();
 $new_store->put_store_admin();
 $new_store->put_store_data();
 $new_store->put_store_cost();
 $new_store->put_store_products();
 if (ALLOW_STORE_SITE_TEXT == 'true') {
     $new_store->put_store_language('english');
Exemplo n.º 2
0
        $customerInfo->set_country_id($customer_country_id);
        $customerInfo->set_company($company);
        $customerInfo->set_zone_id($customer_zone_id);
        $customerInfo->set_state($state);
        $customerInfo->set_telephone($telephone);
        $customerInfo->set_tollfree($tollfree);
        $customerInfo->set_fax($fax);
        $customerInfo->set_newsletter($newsletter);
        if (isset($_POST['affiliate_id'])) {
            $customerInfo->set_affiliate_id($_POST['affiliate_id']);
        }
        $customerInfo->create($customer_id);
        if (smn_session_is_registered('customer_store_id')) {
            $customerInfo->update_store_admin();
            $customersStore->set_store_name($new_store_name);
            $customersStore->set_store_category($_POST['store_catagory']);
            $customersStore->set_store_description($_POST['store_description']);
            $customersStore->update_store_info();
            $customersStore->put_store_category();
        }
        echo '{success:true}';
    } else {
        echo '{
              success: false,
              errors: {
                   message: "' . addslashes(str_replace("\n", '', nl2br($messageStack->outputPlain('account_edit')))) . '"
              }
             }';
    }
    exit;
}
Exemplo n.º 3
0
 } else {
     $customer_info->set_zone_id('0');
     $customer_info->set_state($state);
 }
 //ADD THE STORE OWNER DATA ....
 if ($_GET['action'] == 'update') {
     $customers_id = $customer_info->create($customers_id);
 } else {
     $customers_id = $customer_info->create();
 }
 $store_info->set_store_type($new_store_type);
 $store_info->set_customers_id($customers_id);
 $store_info->set_customers_data($customers_id);
 $store_info->set_store_name($new_store_name);
 $store_info->set_store_description($store_description);
 $store_info->set_store_category($store_catagory);
 $store_info->set_store_logo('store_image');
 if ($_GET['action'] == 'process') {
     $customer_store_id = $store_info->create_store();
     $store_info->put_store_description();
     $store_info->put_store_category();
     $store_info->put_store_admin();
     $store_info->put_store_data();
     $store_info->put_store_cost();
     $store_info->put_store_products();
     if (ALLOW_STORE_SITE_TEXT == 'true') {
         $store_info->put_store_language('english');
     }
     $store_info->send_store_email($gender);
     $error_text = $store_info->put_logo_image('update');
 } else {