Gdn_Cache::trace PHP Method

trace() public static method

public static trace ( $trace = null )
    public static function trace($trace = null)
    {
        if (!is_null($trace)) {
            Gdn_Cache::$trace = (bool) $trace;
        }
        return Gdn_Cache::$trace;
    }

Usage Example

Esempio n. 1
0
 /**
  *
  */
 public static function Trace($trace = null)
 {
     if (!is_null($trace)) {
         Gdn_Cache::$trace = (bool) $trace;
     }
     return Gdn_Cache::$trace;
 }
All Usage Examples Of Gdn_Cache::trace