| Server IP : 64.202.187.69 / Your IP : 216.73.217.74 Web Server : Apache System : Linux 69.187.202.64.host.secureserver.net 3.10.0-1160.144.1.el7.tuxcare.els6.x86_64 #1 SMP Fri May 29 16:22:24 UTC 2026 x86_64 User : transmarket ( 1001) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/transmarket/translator/controllers/ |
Upload File : |
<?php
/*
* This is cron to Process Winning Suggestion Voting Credits
*/
include 'connection.php';
//ini_set('display_errors',1);
//error_reporting(E_ALL);
require_once('functions.winning_suggestion_voting_credits.php');
$svwc_obj = new Winning_Suggestion_Voting_Credits();
//Get sentence ids to do winning suggestion, voting user credits
$sentence_ids_arr = $svwc_obj->getSentenceIdsToDoWinningProcess();
//mail("vishal.j@sukanyasoftwares.com","Cron Run Process Winning Suggestion Voting Credits","sentence count: " . count($sentence_ids_arr) . " sentence ids list: ". json_encode($sentence_ids_arr));
if( count( $sentence_ids_arr ) > 0 ) {
foreach( $sentence_ids_arr as $sentence_id ) {
//process winning suggestion voting credits by sentence id
$svwc_obj->processWinningSuggestionVotingCreditsBySentenceId( $sentence_id );
}
}