You are here

public function UcAddressesSchemaAddress::getRawFieldData in Ubercart Addresses 7

Same name and namespace in other branches
  1. 6.2 class/UcAddressesSchemaAddress.class.php \UcAddressesSchemaAddress::getRawFieldData()

Returns "raw" field data (contents of the schema address object).

@access public

Return value

array The saved address values, NOT safe for output.

2 calls to UcAddressesSchemaAddress::getRawFieldData()
UcAddressesAddress::varExport in class/UcAddressesAddress.class.php
Export address instance to PHP code.
UcAddressesSchemaAddress::compareAddress in class/UcAddressesSchemaAddress.class.php
Checks if the schema address of the given address is equal to the schema address of this.

File

class/UcAddressesSchemaAddress.class.php, line 376
Contains the UcAddressesSchemaAddress class.

Class

UcAddressesSchemaAddress
The schema address class.

Code

public function getRawFieldData() {
  return (array) $this->schemaAddress;
}