Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. HTML.php

function HTML::printFooter

Print the footer of the HTML page.

Return value

void

1 call to HTML::printFooter()
HTML::generate in vendor/squizlabs/php_codesniffer/src/Generators/HTML.php
Generates the documentation for a standard.

File

vendor/squizlabs/php_codesniffer/src/Generators/HTML.php, line 176

Class

HTML

Namespace

PHP_CodeSniffer\Generators

Code

protected function printFooter() {
    // Turn off errors so we don't get timezone warnings if people
    // don't have their timezone set.
    $errorLevel = error_reporting(0);
    echo '  <div class="tag-line">';
    echo 'Documentation generated on ' . date('r');
    echo ' by <a href="https://github.com/PHPCSStandards/PHP_CodeSniffer">PHP_CodeSniffer ' . Config::VERSION . '</a>';
    echo '</div>' . PHP_EOL;
    error_reporting($errorLevel);
    echo ' </body>' . PHP_EOL;
    echo '</html>' . PHP_EOL;
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal