Initial commit: Atomaste website
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
namespace Hostinger;
|
||||
|
||||
use Hostinger\Bootstrap;
|
||||
|
||||
defined( 'ABSPATH' ) || exit;
|
||||
|
||||
class Hostinger {
|
||||
protected string $plugin_name = 'Hostinger';
|
||||
protected string $version;
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function bootstrap(): void {
|
||||
$this->version = $this->get_plugin_version();
|
||||
$bootstrap = new Bootstrap();
|
||||
$bootstrap->run();
|
||||
}
|
||||
|
||||
/**
|
||||
* @return void
|
||||
*/
|
||||
public function run(): void {
|
||||
$this->bootstrap();
|
||||
}
|
||||
/** PHPCS:disable WordPress.NamingConventions.PrefixAllGlobals.VariableConstantNameFound */
|
||||
/**
|
||||
* Define constant
|
||||
*
|
||||
* @param string $name Constant name.
|
||||
* @param string|bool $value Constant value.
|
||||
*/
|
||||
private function define( string $name, $value ): void {
|
||||
if ( ! defined( $name ) ) {
|
||||
define( $name, $value );
|
||||
}
|
||||
}
|
||||
/** PHPCS:enable */
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
private function get_plugin_version(): string {
|
||||
if ( defined( 'HOSTINGER_VERSION' ) ) {
|
||||
return HOSTINGER_VERSION;
|
||||
}
|
||||
|
||||
return '1.0.0';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user