gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

smartyexception.php (295B)


      1 <?php
      2 /**
      3  * Smarty exception class
      4  *
      5  * @package Smarty
      6  */
      7 class SmartyException extends Exception
      8 {
      9     public static $escape = false;
     10 
     11     public function __toString()
     12     {
     13         return ' --> Smarty: ' . (self::$escape ? htmlentities($this->message) : $this->message) . ' <-- ';
     14     }
     15 }