AlkantarClanX12

Your IP : 3.149.250.65


Current Path : /home/thanudqk/128shen.com/wp-content/plugins/tablepress/classes/
Upload File :
Current File : /home/thanudqk/128shen.com/wp-content/plugins/tablepress/classes/class-model.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