summaryrefslogtreecommitdiff
path: root/inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php')
-rw-r--r--inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php44
1 files changed, 44 insertions, 0 deletions
diff --git a/inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php b/inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php
new file mode 100644
index 0000000..f7a3a6e
--- /dev/null
+++ b/inc/builder/type/header/site-identity/class-astra-header-site-identity-component.php
@@ -0,0 +1,44 @@
+<?php
+/**
+ * Site_Identity for Astra theme.
+ *
+ * @package astra-builder
+ * @author Astra
+ * @copyright Copyright (c) 2020, Astra
+ * @link https://wpastra.com/
+ * @since 3.0.0
+ */
+
+if ( ! defined( 'ABSPATH' ) ) {
+ exit; // Exit if accessed directly.
+}
+
+define( 'ASTRA_HEADER_SITE_IDENTITY_DIR', ASTRA_THEME_DIR . 'inc/builder/type/header/site-identity' );
+define( 'ASTRA_HEADER_SITE_IDENTITY_URI', ASTRA_THEME_URI . 'inc/builder/type/header/site-identity' );
+
+/**
+ * Heading Initial Setup
+ *
+ * @since 3.0.0
+ */
+class Astra_Header_Site_Identity_Component {
+
+ /**
+ * Constructor function that initializes required actions and hooks
+ */
+ public function __construct() {
+ // @codingStandardsIgnoreStart WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
+ require_once ASTRA_HEADER_SITE_IDENTITY_DIR . '/class-astra-header-site-identity-component-loader.php';
+
+ // Include front end files.
+ if ( ! is_admin() ) {
+ require_once ASTRA_HEADER_SITE_IDENTITY_DIR . '/dynamic-css/dynamic.css.php';
+ }
+ // @codingStandardsIgnoreEnd WPThemeReview.CoreFunctionality.FileInclude.FileIncludeFound
+ }
+}
+
+/**
+ * Kicking this off by creating an object.
+ */
+new Astra_Header_Site_Identity_Component();