Execute($address_format_query); if ($address_format->RecordCount() > 0) { return $address_format->fields['format_id']; } else { return '1'; } } //// // Return a formatted address // TABLES: address_format function zen_address_format($address_format_id, $address, $html, $boln, $eoln) { global $db; $address_format_query = "select address_format as format from " . TABLE_ADDRESS_FORMAT . " where address_format_id = '" . (int)$address_format_id . "'"; $address_format = $db->Execute($address_format_query); $company = zen_output_string_protected($address['company']); if (isset($address['firstname']) && zen_not_null($address['firstname'])) { $firstname = zen_output_string_protected($address['firstname']); $lastname = zen_output_string_protected($address['lastname']); } elseif (isset($address['name']) && zen_not_null($address['name'])) { $firstname = zen_output_string_protected($address['name']); $lastname = ''; } else { $firstname = ''; $lastname = ''; } $street = zen_output_string_protected($address['street_address']); $suburb = zen_output_string_protected($address['suburb']); $city = zen_output_string_protected($address['city']); $state = zen_output_string_protected($address['state']); if (isset($address['country_id']) && zen_not_null($address['country_id'])) { $country = zen_get_country_name($address['country_id']); if (isset($address['zone_id']) && zen_not_null($address['zone_id'])) { $state = zen_get_zone_code($address['country_id'], $address['zone_id'], $state); } } elseif (isset($address['country']) && zen_not_null($address['country'])) { if (is_array($address['country'])) { $country = zen_output_string_protected($address['country']['countries_name']); } else { $country = zen_output_string_protected($address['country']); } } else { $country = ''; } $postcode = zen_output_string_protected($address['postcode']); $zip = $postcode; if ($html) { // HTML Mode $HR = '
'; $hr = '
'; if ( ($boln == '') && ($eoln == "\n") ) { // Values not specified, use rational defaults $CR = '
'; $cr = '
'; $eoln = $cr; } else { // Use values supplied $CR = $eoln . $boln; $cr = $CR; } } else { // Text Mode $CR = $eoln; $cr = $CR; $HR = '----------------------------------------'; $hr = '----------------------------------------'; } $statecomma = ''; $streets = $street; if ($suburb != '') $streets = $street . $cr . $suburb; if ($country == '') { if (is_array($address['country'])) { $country = zen_output_string_protected($address['country']['countries_name']); } else { $country = zen_output_string_protected($address['country']); } } if ($state != '') $statecomma = $state . ', '; $fmt = $address_format->fields['format']; eval("\$address_out = \"$fmt\";"); if ( (ACCOUNT_COMPANY == 'true') && (zen_not_null($company)) ) { $address_out = $company . $cr . $address_out; } return $address_out; } //// // Return a formatted address // TABLES: customers, address_book function zen_address_label($customers_id, $address_id = 1, $html = false, $boln = '', $eoln = "\n") { global $db; $address_query = "select entry_firstname as firstname, entry_lastname as lastname, entry_company as company, entry_street_address as street_address, entry_suburb as suburb, entry_city as city, entry_postcode as postcode, entry_state as state, entry_zone_id as zone_id, entry_country_id as country_id from " . TABLE_ADDRESS_BOOK . " where customers_id = '" . (int)$customers_id . "' and address_book_id = '" . (int)$address_id . "'"; $address = $db->Execute($address_query); $format_id = zen_get_address_format_id($address->fields['country_id']); return zen_address_format($format_id, $address->fields, $html, $boln, $eoln); } // look up customers default or primary address function zen_get_customers_address_primary($customer_id) { global $db; $lookup_customers_primary_address_query = "SELECT customers_default_address_id from " . TABLE_CUSTOMERS . " WHERE customers_id = '" . (int)$customer_id . "'"; $lookup_customers_primary_address = $db->Execute($lookup_customers_primary_address_query); return $lookup_customers_primary_address->fields['customers_default_address_id']; } ?>