コード例 #1
0
ファイル: pvc_class.php プロジェクト: selectSIFISO/.comsite
 public static function custom_stats_update_echo($postid = 0, $have_echo = 1)
 {
     $output = '';
     global $pvc_settings;
     if (empty($pvc_settings)) {
         $pvc_settings = get_option('pvc_settings', array());
     }
     if (!isset($pvc_settings['enable_ajax_load']) || $pvc_settings['enable_ajax_load'] != 'yes') {
         A3_PVC::pvc_stats_update($postid);
     }
     $output .= A3_PVC::pvc_stats_counter($postid, true);
     if ($have_echo == 1) {
         echo $output;
     } else {
         return $output;
     }
 }