Available Methods

These are the available configuration methods for the footer.


setFooterStatus

Enabled by default, enable/disable the footer for the component.

1public function configure(): void
2{
3 $this->setFooterStatus(true);
4 $this->setFooterStatus(false);
5}

setFooterEnabled

Enable the footer on the component.

1public function configure(): void
2{
3 // Shorthand for $this->setFooterStatus(true);
4 $this->setFooterEnabled();
5}

setFooterDisabled

Disable the footer on the component.

1public function configure(): void
2{
3 // Shorthand for $this->setFooterStatus(false);
4 $this->setFooterDisabled();
5}

setUseHeaderAsFooterStatus

Disabled by default, whether or not to use the secondary header as the footer.

1public function configure(): void
2{
3 $this->setUseHeaderAsFooterStatus(true);
4 $this->setUseHeaderAsFooterStatus(false);
5}

setUseHeaderAsFooterEnabled

Use the secondary header as the footer.

1public function configure(): void
2{
3 // Shorthand for $this->setUseHeaderAsFooterStatus(true);
4 $this->setUseHeaderAsFooterEnabled();
5}

setUseHeaderAsFooterDisabled

Use the footer as a stand-alone footer.

1public function configure(): void
2{
3 // Shorthand for $this->setUseHeaderAsFooterStatus(false);
4 $this->setUseHeaderAsFooterDisabled();
5}

See also footer styling. footer column configuration.