2024-04-15 16:00:49 +02:00
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use WoWPress\Database\CreateCacheTable;
|
|
|
|
|
use WoWPress\Database\CreateCharacterTable;
|
2024-06-20 21:42:05 +02:00
|
|
|
|
use WoWPress\Database\CreateComplaintTable;
|
2024-05-02 23:31:44 +02:00
|
|
|
|
use WoWPress\Database\CreateLogTable;
|
2024-04-15 23:07:29 +02:00
|
|
|
|
use WoWPress\Database\CreateRaidTable;
|
2024-04-22 15:38:22 +02:00
|
|
|
|
use WoWPress\Database\CreateSignupTable;
|
|
|
|
|
use WoWPress\Database\CreateSKSTable;
|
2024-06-11 11:06:25 +02:00
|
|
|
|
use WoWPress\Frontend\Widgets\Birthdays;
|
2024-04-23 22:43:54 +02:00
|
|
|
|
use WoWPress\Frontend\Widgets\BossKills;
|
|
|
|
|
use WoWPress\Frontend\Widgets\CharacterSearch;
|
2024-04-23 00:44:42 +02:00
|
|
|
|
use WoWPress\Frontend\Widgets\RaidSignup;
|
2024-06-11 11:06:25 +02:00
|
|
|
|
use WoWPress\Frontend\Widgets\Teamspeak;
|
2024-04-15 16:00:49 +02:00
|
|
|
|
use WoWPress\Models\Character;
|
|
|
|
|
|
|
|
|
|
ini_set('display_errors', 1);
|
|
|
|
|
ini_set('display_startup_errors', 1);
|
|
|
|
|
error_reporting(E_ALL);
|
2024-04-22 15:38:22 +02:00
|
|
|
|
|
|
|
|
|
global $user;
|
|
|
|
|
|
2024-04-15 23:07:29 +02:00
|
|
|
|
setlocale(LC_TIME, 'de_DE.UTF8');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
require_once('vendor/autoload.php');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* WowPress functions and definitions
|
|
|
|
|
*
|
|
|
|
|
* @link https://developer.wordpress.org/themes/basics/theme-functions/
|
|
|
|
|
*
|
|
|
|
|
* @package WowPress
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
if (!defined('WOWPRESS_VERSION')) {
|
2024-04-15 16:00:49 +02:00
|
|
|
|
/*
|
|
|
|
|
* Set the theme’s version number.
|
|
|
|
|
*
|
|
|
|
|
* This is used primarily for cache busting. If you use `npm run bundle`
|
|
|
|
|
* to create your production build, the value below will be replaced in the
|
|
|
|
|
* generated zip file with a timestamp, converted to base 36.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
define('WOWPRESS_VERSION', '0.1.0');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
if (!defined('WOWPRESS_TYPOGRAPHY_CLASSES')) {
|
2024-04-15 16:00:49 +02:00
|
|
|
|
/*
|
|
|
|
|
* Set Tailwind Typography classes for the front end, block editor and
|
|
|
|
|
* classic editor using the constant below.
|
|
|
|
|
*
|
|
|
|
|
* For the front end, these classes are added by the `wowpress_content_class`
|
|
|
|
|
* function. You will see that function used everywhere an `entry-content`
|
|
|
|
|
* or `page-content` class has been added to a wrapper element.
|
|
|
|
|
*
|
|
|
|
|
* For the block editor, these classes are converted to a JavaScript array
|
|
|
|
|
* and then used by the `./javascript/block-editor.js` file, which adds
|
|
|
|
|
* them to the appropriate elements in the block editor (and adds them
|
|
|
|
|
* again when they’re removed.)
|
|
|
|
|
*
|
|
|
|
|
* For the classic editor (and anything using TinyMCE, like Advanced Custom
|
|
|
|
|
* Fields), these classes are added to TinyMCE’s body class when it
|
|
|
|
|
* initializes.
|
|
|
|
|
*/
|
|
|
|
|
define(
|
|
|
|
|
'WOWPRESS_TYPOGRAPHY_CLASSES',
|
|
|
|
|
'prose prose-wowpress max-w-none prose-a:text-primary'
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
if (!function_exists('wowpress_setup')) :
|
2024-04-15 16:00:49 +02:00
|
|
|
|
/**
|
|
|
|
|
* Sets up theme defaults and registers support for various WordPress features.
|
|
|
|
|
*
|
|
|
|
|
* Note that this function is hooked into the after_setup_theme hook, which
|
|
|
|
|
* runs before the init hook. The init hook is too late for some features, such
|
|
|
|
|
* as indicating support for post thumbnails.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_setup()
|
|
|
|
|
{
|
|
|
|
|
|
2024-04-15 16:00:49 +02:00
|
|
|
|
/*
|
|
|
|
|
* Make theme available for translation.
|
|
|
|
|
* Translations can be filed in the /languages/ directory.
|
|
|
|
|
* If you're building a theme based on WowPress, use a find and replace
|
|
|
|
|
* to change 'wowpress' to the name of your theme in all the template files.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
load_theme_textdomain('wowpress', get_template_directory() . '/languages');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// Add default posts and comments RSS feed links to head.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('automatic-feed-links');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Let WordPress manage the document title.
|
|
|
|
|
* By adding theme support, we declare that this theme does not use a
|
|
|
|
|
* hard-coded <title> tag in the document head, and expect WordPress to
|
|
|
|
|
* provide it for us.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('title-tag');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Enable support for Post Thumbnails on posts and pages.
|
|
|
|
|
*
|
|
|
|
|
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('post-thumbnails');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// This theme uses wp_nav_menu() in two locations.
|
|
|
|
|
register_nav_menus(
|
|
|
|
|
array(
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'menu-1' => __('Primary', 'wowpress'),
|
|
|
|
|
'menu-2' => __('Footer Menu', 'wowpress'),
|
2024-04-15 16:00:49 +02:00
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Switch default core markup for search form, comment form, and comments
|
|
|
|
|
* to output valid HTML5.
|
|
|
|
|
*/
|
|
|
|
|
add_theme_support(
|
|
|
|
|
'html5',
|
|
|
|
|
array(
|
|
|
|
|
'search-form',
|
|
|
|
|
'comment-form',
|
|
|
|
|
'comment-list',
|
|
|
|
|
'gallery',
|
|
|
|
|
'caption',
|
|
|
|
|
'style',
|
|
|
|
|
'script',
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Add theme support for selective refresh for widgets.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('customize-selective-refresh-widgets');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// Add support for editor styles.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('editor-styles');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// Enqueue editor styles.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_editor_style('style-editor.css');
|
|
|
|
|
add_editor_style('style-editor-extra.css');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// Add support for responsive embedded content.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_theme_support('responsive-embeds');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
// Remove support for block templates.
|
2024-04-16 15:25:22 +02:00
|
|
|
|
remove_theme_support('block-templates');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
|
|
|
|
endif;
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
if (!function_exists('wowpress_database')) :
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_database()
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
global $wpdb;
|
2024-04-16 15:25:22 +02:00
|
|
|
|
require_once(ABSPATH . 'wp-admin/includes/upgrade.php');
|
|
|
|
|
dbDelta([
|
2024-04-15 16:00:49 +02:00
|
|
|
|
CreateCharacterTable::sql(),
|
|
|
|
|
CreateCacheTable::sql(),
|
2024-04-15 23:07:29 +02:00
|
|
|
|
CreateRaidTable::sql(),
|
2024-04-22 15:38:22 +02:00
|
|
|
|
CreateSignupTable::sql(),
|
|
|
|
|
CreateSKSTable::sql(),
|
2024-05-02 23:31:44 +02:00
|
|
|
|
CreateLogTable::sql(),
|
2024-06-20 21:42:05 +02:00
|
|
|
|
CreateComplaintTable::sql(),
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
]);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('after_setup_theme', 'wowpress_setup');
|
|
|
|
|
add_action('after_switch_theme', 'wowpress_database');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
/**
|
|
|
|
|
* Register widget area.
|
|
|
|
|
*
|
|
|
|
|
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_widgets_init()
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
register_sidebar(
|
|
|
|
|
array(
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'name' => __('Header', 'wowpress'),
|
|
|
|
|
'id' => 'top-widgets',
|
|
|
|
|
'description' => __('Add widgets here to appear on the header.', 'wowpress'),
|
2024-04-22 15:38:22 +02:00
|
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s order-last">',
|
2024-04-15 16:00:49 +02:00
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
register_sidebar(
|
|
|
|
|
array(
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'name' => __('Linke Seite', 'wowpress'),
|
2024-04-15 16:00:49 +02:00
|
|
|
|
'id' => 'left-widgets',
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'description' => __('Add widgets here to appear on the left side.', 'wowpress'),
|
2024-04-22 15:38:22 +02:00
|
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s order-last">',
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
register_sidebar(
|
|
|
|
|
array(
|
|
|
|
|
'name' => __('Rechte Seite', 'wowpress'),
|
|
|
|
|
'id' => 'right-widgets',
|
|
|
|
|
'description' => __('Add widgets here to appear on the right side.', 'wowpress'),
|
2024-04-22 15:38:22 +02:00
|
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s order-last">',
|
2024-04-16 15:25:22 +02:00
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
register_sidebar(
|
|
|
|
|
array(
|
|
|
|
|
'name' => __('Footer', 'wowpress'),
|
|
|
|
|
'id' => 'bottom-widgets',
|
|
|
|
|
'description' => __('Add widgets here to appear in your footer.', 'wowpress'),
|
2024-04-22 15:38:22 +02:00
|
|
|
|
'before_widget' => '<section id="%1$s" class="widget %2$s order-last">',
|
2024-04-15 16:00:49 +02:00
|
|
|
|
'after_widget' => '</section>',
|
|
|
|
|
'before_title' => '<h2 class="widget-title">',
|
|
|
|
|
'after_title' => '</h2>',
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('widgets_init', 'wowpress_widgets_init');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enqueue scripts and styles.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_scripts()
|
|
|
|
|
{
|
|
|
|
|
wp_enqueue_style('wowpress-style', get_stylesheet_uri(), array(), WOWPRESS_VERSION);
|
|
|
|
|
wp_enqueue_script('wowpress-script', get_template_directory_uri() . '/js/script.min.js', array(), WOWPRESS_VERSION, true);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
if (is_singular() && comments_open() && get_option('thread_comments')) {
|
|
|
|
|
wp_enqueue_script('comment-reply');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('wp_enqueue_scripts', 'wowpress_scripts');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enqueue the block editor script.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_enqueue_block_editor_script()
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
wp_enqueue_script(
|
|
|
|
|
'wowpress-editor',
|
|
|
|
|
get_template_directory_uri() . '/js/block-editor.min.js',
|
|
|
|
|
array(
|
|
|
|
|
'wp-blocks',
|
|
|
|
|
'wp-edit-post',
|
|
|
|
|
),
|
2024-04-26 17:47:19 +02:00
|
|
|
|
|
2024-04-15 16:00:49 +02:00
|
|
|
|
WOWPRESS_VERSION,
|
|
|
|
|
true
|
|
|
|
|
);
|
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('enqueue_block_editor_assets', 'wowpress_enqueue_block_editor_script');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Enqueue the script necessary to support Tailwind Typography in the block
|
|
|
|
|
* editor, using an inline script to create a JavaScript array containing the
|
|
|
|
|
* Tailwind Typography classes from WOWPRESS_TYPOGRAPHY_CLASSES.
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_enqueue_typography_script()
|
|
|
|
|
{
|
|
|
|
|
if (is_admin()) {
|
2024-04-15 16:00:49 +02:00
|
|
|
|
wp_enqueue_script(
|
|
|
|
|
'wowpress-typography',
|
|
|
|
|
get_template_directory_uri() . '/js/tailwind-typography-classes.min.js',
|
|
|
|
|
array(
|
|
|
|
|
'wp-blocks',
|
|
|
|
|
'wp-edit-post',
|
|
|
|
|
),
|
|
|
|
|
WOWPRESS_VERSION,
|
|
|
|
|
true
|
|
|
|
|
);
|
2024-04-16 15:25:22 +02:00
|
|
|
|
wp_add_inline_script('wowpress-typography', "tailwindTypographyClasses = '" . esc_attr(WOWPRESS_TYPOGRAPHY_CLASSES) . "'.split(' ');", 'before');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('enqueue_block_assets', 'wowpress_enqueue_typography_script');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add the Tailwind Typography classes to TinyMCE.
|
|
|
|
|
*
|
|
|
|
|
* @param array $settings TinyMCE settings.
|
|
|
|
|
* @return array
|
|
|
|
|
*/
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_tinymce_add_class($settings)
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
$settings['body_class'] = WOWPRESS_TYPOGRAPHY_CLASSES;
|
|
|
|
|
return $settings;
|
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_filter('tiny_mce_before_init', 'wowpress_tinymce_add_class');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Custom template tags for this theme.
|
|
|
|
|
*/
|
|
|
|
|
require get_template_directory() . '/inc/template-tags.php';
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Functions which enhance the theme by hooking into WordPress.
|
|
|
|
|
*/
|
|
|
|
|
require get_template_directory() . '/inc/template-functions.php';
|
2024-04-15 23:07:29 +02:00
|
|
|
|
require get_template_directory() . '/inc/config-functions.php';
|
2024-05-01 20:29:07 +02:00
|
|
|
|
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Hide Admin Bar
|
|
|
|
|
*/
|
|
|
|
|
add_filter('show_admin_bar', '__return_false');
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Variable initialization
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
// Show Widgets
|
|
|
|
|
$GLOBALS['wowpress']['sidebar'] = [
|
2024-04-15 16:00:49 +02:00
|
|
|
|
'left' => true,
|
|
|
|
|
'right' => true,
|
|
|
|
|
'top' => true,
|
|
|
|
|
'bottom' => true,
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
// Colors
|
2024-04-16 15:25:22 +02:00
|
|
|
|
$GLOBALS['wowpress']['theme'] = json_decode(file_get_contents(get_template_directory() . "/theme.json"), true);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Custom rewrite rules
|
|
|
|
|
*/
|
2024-04-15 23:07:29 +02:00
|
|
|
|
require get_template_directory() . '/inc/config-routing.php';
|
|
|
|
|
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Neue Werte für Kategorien
|
|
|
|
|
*/
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_color_picker_scripts()
|
|
|
|
|
{
|
|
|
|
|
wp_enqueue_style('wp-color-picker');
|
|
|
|
|
wp_enqueue_script('cp-active', get_template_directory_uri() . "/plugins/cp-active.js", array('wp-color-picker'), false, true);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
}
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('admin_enqueue_scripts', 'wowpress_color_picker_scripts');
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('category_add_form_fields', 'wowpress_add_category_meta', 10, 2);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_add_category_meta($taxonomy)
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
$colors = $GLOBALS['wowpress']['theme']['settings']['color']['palette'];
|
2024-04-16 15:25:22 +02:00
|
|
|
|
?><div class="form-field term-group">
|
|
|
|
|
<label for="color"><?php _e('Farbe', 'wowpress'); ?></label>
|
|
|
|
|
<input type="text" name="color" id="color" class="color-picker">
|
|
|
|
|
</div><?php
|
|
|
|
|
}
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('created_category', 'wowpress_save_category_meta', 10, 2);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_save_category_meta($term_id, $tt_id)
|
|
|
|
|
{
|
|
|
|
|
if (isset($_POST['color']) && '' !== $_POST['color']) {
|
|
|
|
|
$color = sanitize_title($_POST['color']);
|
|
|
|
|
add_term_meta($term_id, 'color', $color, true);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
add_action('category_edit_form_fields', 'wowpress_edit_category_meta', 10, 2);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
function wowpress_edit_category_meta($term, $taxonomy)
|
|
|
|
|
{
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
$colors = $GLOBALS['wowpress']['theme']['settings']['color']['palette'];
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
// get current group
|
|
|
|
|
$selected_color = get_term_meta($term->term_id, 'color', true);
|
2024-04-15 16:00:49 +02:00
|
|
|
|
|
2024-04-16 15:25:22 +02:00
|
|
|
|
?><tr class="form-field term-group-wrap">
|
|
|
|
|
<th scope="row"><label for="color"><?php _e('Farbe', 'wowpress'); ?></label></th>
|
|
|
|
|
<td>
|
|
|
|
|
<input type="text" name="color" id="color" class="color-picker" value="#<?= $selected_color ?>">
|
|
|
|
|
</td>
|
|
|
|
|
</tr><?php
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
add_action('edited_category', 'wowpress_update_category_meta', 10, 2);
|
|
|
|
|
|
|
|
|
|
function wowpress_update_category_meta($term_id, $tt_id)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
if (isset($_POST['color']) && '' !== $_POST['color']) {
|
|
|
|
|
$color = sanitize_title($_POST['color']);
|
|
|
|
|
update_term_meta($term_id, 'color', $color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//* Theme Options Page **/
|
|
|
|
|
require_once(get_stylesheet_directory() . '/options/api.php');
|
|
|
|
|
|
|
|
|
|
/** Global Helper functions */
|
|
|
|
|
function translate_string($string, $lang = "deu")
|
|
|
|
|
{
|
|
|
|
|
$dict_path = get_template_directory() . "/lang/$lang.json";
|
|
|
|
|
if (!file_exists($dict_path)) return $string;
|
|
|
|
|
$dict = json_decode(file_get_contents($dict_path), true);
|
|
|
|
|
if (key_exists($string, $dict)) {
|
|
|
|
|
return $dict[$string];
|
|
|
|
|
}
|
|
|
|
|
return $string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function format_date($timestamp = "NOW", $format = "dd.MM.yyyy")
|
|
|
|
|
{
|
|
|
|
|
return datefmt_format(\IntlDateFormatter::create(
|
|
|
|
|
'de_DE.UTF-8',
|
|
|
|
|
\IntlDateFormatter::NONE,
|
|
|
|
|
\IntlDateFormatter::NONE,
|
|
|
|
|
\date_default_timezone_get(),
|
|
|
|
|
\IntlDateFormatter::GREGORIAN,
|
|
|
|
|
$format,
|
|
|
|
|
), is_numeric($timestamp) ? $timestamp : strtotime($timestamp));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function dd(...$vars)
|
|
|
|
|
{
|
|
|
|
|
echo "<pre>";
|
|
|
|
|
var_dump($vars);
|
|
|
|
|
echo "</pre>";
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function set_sidebar_status($location, bool $active = true)
|
|
|
|
|
{
|
|
|
|
|
switch ($location) {
|
|
|
|
|
case 'top':
|
|
|
|
|
$GLOBALS['wowpress']['sidebar']['top'] = $active;
|
|
|
|
|
break;
|
|
|
|
|
case 'left':
|
|
|
|
|
$GLOBALS['wowpress']['sidebar']['left'] = $active;
|
|
|
|
|
break;
|
|
|
|
|
case 'right':
|
|
|
|
|
$GLOBALS['wowpress']['sidebar']['right'] = $active;
|
|
|
|
|
break;
|
|
|
|
|
case 'bottom':
|
|
|
|
|
$GLOBALS['wowpress']['sidebar']['bottom'] = $active;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function get_sidebar_status($location)
|
|
|
|
|
{
|
|
|
|
|
switch ($location) {
|
|
|
|
|
case 'top':
|
|
|
|
|
return $GLOBALS['wowpress']['sidebar']['top'];
|
|
|
|
|
break;
|
|
|
|
|
case 'left':
|
|
|
|
|
return $GLOBALS['wowpress']['sidebar']['left'];
|
|
|
|
|
break;
|
|
|
|
|
case 'right':
|
|
|
|
|
return $GLOBALS['wowpress']['sidebar']['right'];
|
|
|
|
|
break;
|
|
|
|
|
case 'bottom':
|
|
|
|
|
return $GLOBALS['wowpress']['sidebar']['bottom'];
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
/** Roles */
|
|
|
|
|
set_roles();
|
2024-04-22 15:38:22 +02:00
|
|
|
|
setGlobalUser();
|
2024-04-23 00:44:42 +02:00
|
|
|
|
|
|
|
|
|
/** Widgets */
|
|
|
|
|
$widget_raid_signup = new RaidSignup();
|
2024-04-23 22:43:54 +02:00
|
|
|
|
$widget_boss_kills = new BossKills();
|
|
|
|
|
$widget_char_search = new CharacterSearch();
|
2024-06-11 11:06:25 +02:00
|
|
|
|
$widget_teamspeak = new Teamspeak();
|
|
|
|
|
$widget_bday = new Birthdays();
|
2024-04-23 00:44:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** Avatar Filters */
|
|
|
|
|
add_filter('get_avatar_url', '\WoWPress\Models\User::getAvatar', 10, 3);
|
2024-04-26 17:47:19 +02:00
|
|
|
|
add_filter('asgarosforum_filter_username', '\WoWPress\Models\User::getUsername', 10, 2);
|
|
|
|
|
|
|
|
|
|
/** Login redirect */
|
|
|
|
|
add_filter('login_redirect', fn() => "/");
|
|
|
|
|
|
|
|
|
|
function sanitize($word){
|
|
|
|
|
$char = new Character();
|
|
|
|
|
return $char->sanitize($word);
|
|
|
|
|
}
|