Пример #1
0
 /**
  * ALIAS OF dieObject() - Display an error with detailed object but don't stop the execution
  * (display in firefox console if Firephp is enabled)
  *
  * @param object $object Object to display
  */
 public static function p($object)
 {
     if (PS_USE_FIREPHP) {
         FB::info($object);
     } else {
         return parent::p($object);
     }
     return $object;
 }