summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php')
-rw-r--r--plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php27
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php b/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php
new file mode 100644
index 00000000..0cfa3446
--- /dev/null
+++ b/plugins/jetpack/jetpack_vendor/automattic/jetpack-waf/src/class-waf-constants.php
@@ -0,0 +1,27 @@
+<?php
+/**
+ * Class use to define the constants used by the WAF
+ *
+ * @package automattic/jetpack-waf
+ */
+
+namespace Automattic\Jetpack\Waf;
+
+/**
+ * Defines our constants.
+ */
+class Waf_Constants {
+ /**
+ * Initializes the constants required for generating the bootstrap, if they have not been initialized yet.
+ *
+ * @return void
+ */
+ public static function initialize_constants() {
+ if ( ! defined( 'JETPACK_WAF_DIR' ) ) {
+ define( 'JETPACK_WAF_DIR', trailingslashit( WP_CONTENT_DIR ) . 'jetpack-waf' );
+ }
+ if ( ! defined( 'JETPACK_WAF_WPCONFIG' ) ) {
+ define( 'JETPACK_WAF_WPCONFIG', trailingslashit( WP_CONTENT_DIR ) . '../wp-config.php' );
+ }
+ }
+}