phpMv  -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
HtmlUtils.php
Go to the documentation of this file.
1 <?php
2 
3 namespace Ajax\common\html\html5;
4 
5 class HtmlUtils {
6  public static function javascriptInclude($url){
7  return '<script src="'.$url.'"></script>';
8  }
9 
10  public static function stylesheetInclude($url){
11  return '<link rel="stylesheet" type="text/css" href="'.$url.'">';
12  }
13 }