first commit

This commit is contained in:
Roman Pyrih
2026-04-28 09:27:26 +02:00
commit 968c7e1248
4942 changed files with 1507729 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;
}
}