46 lines
772 B
PHP
46 lines
772 B
PHP
<?php
|
|
/**
|
|
* Plugin controller.
|
|
*
|
|
* @package PopupMaker
|
|
* @copyright Copyright (c) 2024, Code Atlantic LLC
|
|
*/
|
|
|
|
namespace PopupMaker\Base;
|
|
|
|
defined( 'ABSPATH' ) || exit;
|
|
|
|
/**
|
|
* Localized container class.
|
|
*
|
|
* @template TContainer of \PopupMaker\Plugin\Container
|
|
*/
|
|
abstract class Controller implements \PopupMaker\Interfaces\Controller {
|
|
|
|
/**
|
|
* Plugin Container.
|
|
*
|
|
* @var TContainer
|
|
*/
|
|
public $container;
|
|
|
|
/**
|
|
* Initialize based on dependency injection principles.
|
|
*
|
|
* @param TContainer $container Plugin container.
|
|
* @return void
|
|
*/
|
|
public function __construct( $container ) {
|
|
$this->container = $container;
|
|
}
|
|
|
|
/**
|
|
* Check if controller is enabled.
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function controller_enabled() {
|
|
return true;
|
|
}
|
|
}
|