include = $design->include; $this->header = $design->header; $this->body = $design->body; $this->product_table = $design->product_table; $this->task_table = $design->task_table; $this->footer = $design->footer; $this->table_styles = $design->table_styles; } public function include() { return $this->include; } public function header() { return $this->header; } public function body() { return $this->body; } public function table_styles() { return $this->table_styles; } public function product_table() { return $this->product_table; } public function task_table() { return $this->task_table; } public function footer() { return $this->footer; } }