Example #1
0
File: Head.php Project: broozer/psa
 function __construct()
 {
     try {
         if (!Page::getHtml_set()) {
             throw new PageException("<b>Head class exception</b><br>Html tag is not yet defined.</b><br> \n\t            Please define &lt;html&gt; tag first.");
         }
     } catch (PageException $e) {
         echo $e->getMessage();
     }
     Page::$head_set = TRUE;
 }