コード例 #1
0
 public static function show($metrics, $fullDataNeeded = false)
 {
     // defaults
     self::$statID = 'cancellations';
     self::$statName = 'Cancellations';
     $cancellationData = array();
     if ($fullDataNeeded) {
         $cancellationData = self::showFullStat($metrics);
     } else {
         $cancellationData = self::showSimpleStat($metrics);
     }
     // positiveIsGood, for front end colors
     $cancellationData['positiveIsGood'] = false;
     return $cancellationData;
 }