You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
591 B

<?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