You are here

function Currency::__construct in Currency 7.2

Implements __construct().

File

currency/includes/Currency.inc, line 53
Contains class Currency.

Class

Currency
Describes a currency.

Code

function __construct(array $properties = array()) {
  foreach ($properties as $property => $value) {
    $this->{$property} = $value;
  }
}