42 lines
569 B
PHP
42 lines
569 B
PHP
<?php
|
|
/**
|
|
* Handles trial limitations.
|
|
*
|
|
* @package WP_Ultimo
|
|
* @subpackage Limits
|
|
* @since 2.0.0
|
|
*/
|
|
|
|
namespace WP_Ultimo\Limits;
|
|
|
|
// Exit if accessed directly
|
|
defined('ABSPATH') || exit;
|
|
|
|
/**
|
|
* Handles trial limitations.
|
|
*
|
|
* @since 2.0.0
|
|
*/
|
|
class Trial_Limits {
|
|
|
|
use \WP_Ultimo\Traits\Singleton;
|
|
|
|
/**
|
|
* Runs on the first and only instantiation.
|
|
*
|
|
* @since 2.0.0
|
|
* @return void
|
|
*/
|
|
public function init() {
|
|
}
|
|
|
|
/**
|
|
* Apply limitations if they are available.
|
|
*
|
|
* @since 2.0.0
|
|
* @return void
|
|
*/
|
|
public function load_limitations() {
|
|
}
|
|
}
|