public function getCorrectWorkReportStatus()
 {
     echo '<h1 align="center">getCorrectWorkReportStatus</h1>';
     $cwr = WPRC_Loader::getRequester('correct-work-reporter');
     $cwr->getStatus();
 }
 private static function send_usage_report()
 {
     $reporter = WPRC_Loader::getRequester('usage-reporter');
     try {
         $report = $reporter->prepareRequest(array());
         if ($report) {
             $res = $reporter->sendRequest($report);
         }
     } catch (Exception $e) {
         WPRC_AdminNotifier::addInstantMessage('<strong>WPRC_UsageReporter ' . __('Error', 'installer') . '</strong>: ' . $e->getMessage(), 'error');
     }
 }