# tablepress/2.4.4/classes/class-model.php

TablePress – Tables in WordPress made easy, version 2.4.4. 34 lines.

- Page: https://pluginprobe.com/plugins/tablepress/2.4.4/code/classes/class-model.php
- Raw: https://pluginprobe.com/plugins/tablepress/2.4.4/raw/classes/class-model.php
- Modified: 2022-12-19T11:32:06+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/tablepress/2.4.4/code/classes/class-model.php#L10-L20`.

```php
<?php
/**
 * TablePress Base Model with members and methods for all models
 *
 * @package TablePress
 * @subpackage Models
 * @author Tobias Bäthge
 * @since 1.0.0
 */

// Prohibit direct script loading.
defined( 'ABSPATH' ) || die( 'No direct script access allowed!' );

/**
 * TablePress Base Model class
 *
 * @package TablePress
 * @subpackage Models
 * @author Tobias Bäthge
 * @since 1.0.0
 */
abstract class TablePress_Model {

	/**
	 * Initialize all models.
	 *
	 * @since 1.0.0
	 */
	public function __construct() {
		// Intentionally left blank.
	}

} // class TablePress_Model

```
