/** * Prepend to an existing or new block. * * Prepending to a new block will create the block. * * @param string $name Name of the block * @param mixed $value The content for the block. * @return void * @see ViewBlock::concat() */ public function prepend($name, $value) { $this->Blocks->concat($name, $value, ViewBlock::PREPEND); }