AlkantarClanX12

Your IP : 3.137.164.229


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