File: page-footer.php

package info (click to toggle)
davical 0.9.9.3-0
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 8,412 kB
  • ctags: 4,595
  • sloc: php: 12,555; sql: 4,242; perl: 768; sh: 355; makefile: 62
file content (13 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
</body><?php
  if ( isset($c->scripts) && is_array($c->scripts) ) {
    foreach ( $c->scripts AS $script ) {
      echo "<script language=\"JavaScript\" src=\"$script\"></script>\n";
    }
  }
  if ( isset($c->dbg['statistics']) && $c->dbg['statistics'] ) {
    $script_time = microtime(true) - $c->script_start_time;
    @dbg_error_log("statistics", "Method: %s, Status: %d, Script: %5.3lfs, Queries: %5.3lfs, URL: %s",
                        $_SERVER['REQUEST_METHOD'], 200, $script_time, $c->total_query_time, $_SERVER['REQUEST_URI']);
  }
?>
</html>