コード例 #1
0
         $rv = $sp->choose_path($data);
         if ($rv) {
         } else {
             $error = true;
             $messageStack->add('account_edit', $sp->error_message());
         }
     }
     // file uploading class
     $doUpload = false;
     if (!empty($_FILES['store_image']['name']) || !empty($GLOBALS['HTTP_POST_FILES']['store_image']) || !empty($GLOBALS['store_image_name'])) {
         require DIR_WS_CLASSES . 'upload.php';
         if (function_exists('ini_get') && (bool) ini_get('file_uploads') == false) {
             $error = true;
             $messageStack->add('account_edit', WARNING_FILE_UPLOADS_DISABLED, '');
         }
         $customersStore->set_store_logo('store_image');
         $doUpload = true;
     }
     if ($doUpload === true) {
         $error_text = $customersStore->put_logo_image();
         if ($error_text != '') {
             $error = true;
             $messageStack->add('account_edit', $error_text, '');
         }
     }
 }
 if ($error === false) {
     $customerInfo->set_firstname($customer_first_name);
     $customerInfo->set_lastname($lastname);
     $customerInfo->set_email_address($email_address);
     $customerInfo->set_dob($dob);
コード例 #2
0
        $customer_id = $profile_edit->create($customer_id);
        if ($store->is_store_owner($customer_id)) {
            // file uploading class
            require DIR_WS_CLASSES . 'upload.php';
            if (function_exists('ini_get') && (bool) ini_get('file_uploads') == false) {
                $messageStack->add(WARNING_FILE_UPLOADS_DISABLED, 'warning');
            }
            $store_query = smn_db_query("select store_name from " . TABLE_STORE_DESCRIPTION . " WHERE store_name like '" . $_POST['store_edit_name'] . "'");
            if (smn_db_num_rows($store_query)) {
                $error = true;
                $messageStack->add('account_edit', ENTRY_STORE_NAME_ERROR);
            } else {
                $store_edit->set_store_name($_POST['store_edit_name']);
            }
            $store_edit->set_store_description($_POST['store_description']);
            $store_edit->update_store_info();
            $store_edit->set_store_logo('store_image');
            $error_text = $store_edit->put_logo_image('update');
            if ($error_text != '') {
                smn_session_register('error_text');
            }
        }
        $customer_first_name = $firstname;
        $messageStack->add_session('account_edit', SUCCESS_ACCOUNT_UPDATED, 'success');
        smn_redirect(smn_href_link(FILENAME_ACCOUNT_EDIT, 'ID=' . $store_id, 'NONSSL'));
    }
}
$account_query = smn_db_query("select c.*, ab.* from " . TABLE_CUSTOMERS . " c,  " . TABLE_ADDRESS_BOOK . " ab  where ab.customers_id = '" . (int) $customer_id . "' and c.customers_id = '" . (int) $customer_id . "' and ab.address_book_id = c.customers_default_address_id");
$account = smn_db_fetch_array($account_query);
$breadcrumb->add(NAVBAR_TITLE_1, smn_href_link(FILENAME_ACCOUNT, 'ID=' . $store_id, 'NONSSL'));
$breadcrumb->add(NAVBAR_TITLE_2, smn_href_link(FILENAME_ACCOUNT_EDIT, 'ID=' . $store_id, 'NONSSL'));
コード例 #3
0
     $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');
 }
コード例 #4
0
     $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 {
     $customer_store_id = (int) $_GET['sID'];