phpMv -UI toolkit 2.4.12
jQuery, jQuery UI, Twitter Bootstrap and Semantic-UI library for php & php MVC Frameworks
Loading...
Searching...
No Matches
HtmlUtils.php
Go to the documentation of this file.
1<?php
2
4
5class 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}