• File: FMPaypalInfo.php
  • Full Path: /home/dealkatnwc/www/wp-content/plugins/contact-form-maker/admin/models/FMPaypalInfo.php
  • Date Modified: 02/16/2021 12:32 AM
  • File size: 392 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 * Class FMModelPaypal_info
 */
class FMModelPaypal_info extends FMAdminModel {
  /**
   * Get form session.
   *
   * @param  int $id
   * @return object $row
   */
  public function get_form_session( $id = 0 ) {
    global $wpdb;
    $row = $wpdb->get_row($wpdb->prepare('SELECT * FROM ' . $wpdb->prefix . 'formmaker_sessions WHERE group_id="%d"', $id));

    return $row;
  }
}