Ejemplo n.º 1
0
 protected static function web_url($path)
 {
     return router::web_url($path);
 }
Ejemplo n.º 2
0
Archivo: php.php Proyecto: xpd1437/swap
 protected static function echo_favicon()
 {
     $favicon = router::web_url('favicon.ico');
     $version = router::get_version();
     $version_str = $version === 0 ? '' : '?' . router::get_version_key() . '=' . $version;
     echo '<link rel="shortcut icon" href="' . $favicon . $version_str . '" type="image/x-icon">' . "\n";
 }