You are here

protected function UcAddressesSchemaAddress::setDirty in Ubercart Addresses 6.2

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

Set the dirty flag.

When set, the dirty flag signals that the address needs to be saved in the database.

@access protected

Return value

void

5 calls to UcAddressesSchemaAddress::setDirty()
UcAddressesAddress::privSetUcAddressField in class/UcAddressesAddress.class.php
Sets a private variable.
UcAddressesAddress::setAsDefault in class/UcAddressesAddress.class.php
Sets this address as a default address of type $type
UcAddressesAddress::setName in class/UcAddressesAddress.class.php
Sets the nickname of the address.
UcAddressesSchemaAddress::setField in class/UcAddressesSchemaAddress.class.php
Set a field's value.
UcAddressesSchemaAddress::setSchemaAddress in class/UcAddressesSchemaAddress.class.php
Set the aggregated schema address.

File

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

Class

UcAddressesSchemaAddress
The schema address class.

Code

protected function setDirty() {
  $this->dirty = TRUE;
}