• File: FMShortocde.php
  • Full Path: /home/dealkatnwc/www/admin/models/FMShortocde.php
  • Date Modified: 02/16/2021 12:32 AM
  • File size: 559 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php

/**
 * Class FMModelFMShortocde_fmc
 */
class FMModelFMShortocde_fmc extends CFMAdminModel {

  /**
   * Get forms.
   *
   * @return array $rows
   */
  public function get_form_data() {
    global $wpdb;
    $rows = $wpdb->get_results("SELECT * FROM `" . $wpdb->prefix . "formmaker`" . (!WDFMInstance(self::PLUGIN)->is_free ? '' : ' WHERE id' . (WDFMInstance(self::PLUGIN)->is_free == 1 ? ' NOT ' : ' ') . 'IN (' . (get_option('contact_form_forms', '') != '' ? get_option('contact_form_forms') : 0) . ') ORDER BY `title`'));

    return $rows;
  }
}