GIF89a;
Priv8 Uploader By InMyMine7
Linux normalajans.net.tr 5.4.0-88-generic #99-Ubuntu SMP Thu Sep 23 17:29:00 UTC 2021 x86_64
<?php
/**
* Main theme class.
*
* @author Themeisle
* @package jaxon
* @since 1.0.0
*/
namespace Jaxon;
/**
* Class Core
*
* @package jaxon
*/
class Core {
/**
* Core instance.
*
* @var Core
*/
public static $instance = null;
/**
* Get the static instance of the class.
*
* @return Core
*/
public static function get_instance() {
if ( null === self::$instance ) {
self::$instance = new self();
}
return self::$instance;
}
/**
* Core constructor.
*/
public function __construct() {
$this->run_hooks();
new Admin();
new Block_Patterns();
new Block_Styles();
}
/**
* Initialize hooks.
*
* @return void
*/
private function run_hooks() {
add_action( 'after_setup_theme', array( $this, 'setup' ) );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ) );
add_action( 'enqueue_block_editor_assets', array( $this, 'add_editor_styles' ) );
}
/**
* Setup theme.
*
* @return void
*/
public function setup() {
load_theme_textdomain( 'jaxon', JAXON_DIR . '/languages' );
$starter_content = new Starter_Content();
add_theme_support( 'starter-content', $starter_content->get() );
add_theme_support( 'wp-block-styles' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'title-tag' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'editor-styles' );
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'jaxon' ) ) );
}
/**
* Enqueue scripts and styles.
*
* @return void
*/
public function enqueue() {
Assets_Manager::enqueue_style( Assets_Manager::ASSETS_SLUGS['frontend-css'], 'style' );
}
/**
* Add editor styles.
*
* @return void
*/
public function add_editor_styles() {
Assets_Manager::enqueue_style( Assets_Manager::ASSETS_SLUGS['editor-css'], 'editor' );
}
}