name = $this->assignFromArray('name', $data, true); $this->alt_name = $this->assignFromArray('alt_name', $data); $this->enabled = $this->assignFromArray('enabled', $data); } /* Get the engine name. */ public function getName() { return $this->name; } /* Get the alternative name */ public function getAltName() { return $this->alt_name; } /* Get the engine enabled status. */ public function getEnabled() { return $this->enabled; } }