You are here

protected function UcAddressesSchemaAddress::isDirty in Ubercart Addresses 7

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

Reports if the address is modified since it was loaded from the database.

@access protected

Return value

boolean TRUE if the address is modified. FALSE otherwise.

1 call to UcAddressesSchemaAddress::isDirty()
UcAddressesAddress::save in class/UcAddressesAddress.class.php
Saves address if address is marked as 'dirty'.

File

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

Class

UcAddressesSchemaAddress
The schema address class.

Code

protected function isDirty() {
  return $this->dirty;
}