/**
  * This function is called for each data row to allow processing of the
  * gateway value.
  *
  * @param object $values Contains object with all the values of record.
  * @return $string Return gateway formatted as per MoodecTransaction class function
  */
 function col_gateway($values)
 {
     $t = new MoodecTransaction((int) $values->id);
     return $t->get_gateway(true);
 }