You are here

private function UCXF_Value::__construct in Extra Fields Checkout Pane 6.2

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

UCXF_Value object constructor

Constructor is private, if you want to create a new value, call static method load() instead.

@access private

Return value

void

File

class/UCXF_Value.class.php, line 127
Contains the UCXF_Value class.

Class

UCXF_Value
This class is used to keep track of all field values currently loaded.

Code

private function __construct() {
  $this->is_new = TRUE;
  $this->value = '';
}