# mlsimport/5.8.2/enviroment/TresleResoClass.php

MLSImport: IDX Plugin &amp; MLS Plugin for Real Estate Listings, version 5.8.2. 29 lines.

- Page: https://pluginprobe.com/plugins/mlsimport/5.8.2/code/enviroment/TresleResoClass.php
- Raw: https://pluginprobe.com/plugins/mlsimport/5.8.2/raw/enviroment/TresleResoClass.php
- Modified: 2024-04-23T10:47:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mlsimport/5.8.2/code/enviroment/TresleResoClass.php#L10-L20`.

```php
<?php 
if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}


/*
/**
 * BridgeResoClass File Description
 *
 * This file contains the TresleResoClass which extends from ResoBase.
 * It is used for [briefly describe the purpose of the class].
 */

class TresleResoClass extends ResoBase {

	public $theme_importer;


	/**
	 * Constructor for TresleResoClass.
	 *
	 * @param [Type] $theme_importer Description of the theme_importer parameter.
	 */
	public function __construct( $theme_importer ) {
		$this->theme_importer = $theme_importer;
	}
}

```
