first commit

This commit is contained in:
Roman Pyrih
2026-04-03 10:22:35 +02:00
commit 5de35e358d
8424 changed files with 2907254 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
namespace Lordicon;
if (!defined('ABSPATH')) {
exit;
}
class Constants {
const PLUGIN_VERSION = '1.0.0';
const PLUGIN_NAME = 'lordicon';
const PLUGIN_BASENAME = 'lordicon/lordicon.php';
const APP_NAME = 'wp';
public static function plugin_version() {
return self::PLUGIN_VERSION;
}
public static function plugin_name() {
return self::PLUGIN_NAME;
}
public static function plugin_basename() {
return self::PLUGIN_BASENAME;
}
public static function app_name() {
return self::APP_NAME;
}
}