function view::__construct

Same name in other branches
  1. 6.x-3.x includes/view.inc \view::__construct()

Standard PHP constructor.

File

includes/view.inc, line 314

Class

view
An object to contain all of the data to generate a view.

Code

public function __construct() {
    parent::init();
    // Make sure all of the sub objects are arrays.
    foreach ($this->db_objects() as $object) {
        $this->{$object} = array();
    }
}