You are here

function flag_flag::construct in Flag 5

Same name and namespace in other branches
  1. 6.2 flag.inc \flag_flag::construct()
  2. 6 flag.inc \flag_flag::construct()
  3. 7.3 includes/flag/flag_flag.inc \flag_flag::construct()
  4. 7.2 flag.inc \flag_flag::construct()

Default constructor. Loads the default options.

File

./flag.inc, line 211
Implements various flags. Uses object oriented style inspired by that of Views 2.

Class

flag_flag
This abstract class represents a flag, or, in Views 2 terminology, "a handler".

Code

function construct() {
  $options = $this
    ->default_options();
  foreach ($options as $option => $value) {
    $this->{$option} = $value;
  }
}