mainContent = $main_content; return $this; } /** * {@inheritdoc} */ public function setTitle($title) { $this->title = $title; return $this; } /** * {@inheritdoc} */ public function build() { $build = [ 'content' => [ 'messages' => [ '#type' => 'status_messages', '#weight' => -1000, ], 'page_title' => [ '#type' => 'page_title', '#title' => $this->title, '#weight' => -900, ], 'main_content' => ['#weight' => -800] + $this->mainContent, ], ]; return $build; } }