• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

FluidTYPO3 / vhs / 28022928645

23 Jun 2026 11:29AM UTC coverage: 71.402% (+0.7%) from 70.695%
28022928645

Pull #1976

github

web-flow
Merge f52a7e720 into 4208f11cc
Pull Request #1976: [REMOVAL] Remove asset feature

6 of 8 new or added lines in 2 files covered. (75.0%)

30 existing lines in 2 files now uncovered.

4926 of 6899 relevant lines covered (71.4%)

14.6 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

80.0
/Classes/ViewHelpers/Page/FooterViewHelper.php
1
<?php
2
namespace FluidTYPO3\Vhs\ViewHelpers\Page;
3

4
/*
5
 * This file is part of the FluidTYPO3/Vhs project under GPLv2 or later.
6
 *
7
 * For the full copyright and license information, please read the
8
 * LICENSE.md file that was distributed with this source code.
9
 */
10

11
use FluidTYPO3\Vhs\Core\ViewHelper\AbstractViewHelper;
12
use FluidTYPO3\Vhs\Traits\PageRendererTrait;
13
use FluidTYPO3\Vhs\Utility\ContextUtility;
14

15
/**
16
 * ViewHelper used to place header blocks in document footer
17
 */
18
class FooterViewHelper extends AbstractViewHelper
19
{
20
    use PageRendererTrait;
21

22
    public function render(): string
23
    {
24
        if (ContextUtility::isBackend()) {
7✔
NEW
25
            return '';
×
26
        }
27
        /** @var string|null $content */
28
        $content = $this->renderChildren();
7✔
29
        static::getPageRenderer()->addFooterData((string) $content);
7✔
30
        return '';
7✔
31
    }
32
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc