Dateien nach „bavarian-rank-engine/includes/Admin/views“ hochladen

This commit is contained in:
Michael Fuchs 2026-02-22 14:39:23 +00:00
parent 30c2bbba61
commit 2447964635
2 changed files with 297 additions and 0 deletions

View file

@ -53,6 +53,61 @@
</div> </div>
</div> </div>
<?php
$bre_compat = array(); // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound
if ( defined( 'RANK_MATH_VERSION' ) ) {
$bre_compat[] = array(
'name' => 'Rank Math',
'notes' => array(
__( 'llms.txt: BRE serves the file with priority — Rank Math is bypassed.', 'bavarian-rank-engine' ),
__( 'Schema.org: BRE suppresses its own JSON-LD to avoid duplicates.', 'bavarian-rank-engine' ),
__( 'Meta descriptions: BRE writes to the Rank Math meta field.', 'bavarian-rank-engine' ),
),
);
}
if ( defined( 'WPSEO_VERSION' ) ) {
$bre_compat[] = array(
'name' => 'Yoast SEO',
'notes' => array(
__( 'Schema.org: BRE suppresses its own JSON-LD to avoid duplicates.', 'bavarian-rank-engine' ),
__( 'Meta descriptions: BRE writes to the Yoast meta field.', 'bavarian-rank-engine' ),
),
);
}
if ( defined( 'AIOSEO_VERSION' ) ) {
$bre_compat[] = array(
'name' => 'All in One SEO',
'notes' => array(
__( 'Meta descriptions: BRE writes to the AIOSEO meta field.', 'bavarian-rank-engine' ),
),
);
}
if ( class_exists( 'SeoPress_Titles_Admin' ) ) {
$bre_compat[] = array(
'name' => 'SEOPress',
'notes' => array(
__( 'Meta descriptions: BRE writes to the SEOPress meta field.', 'bavarian-rank-engine' ),
),
);
}
if ( ! empty( $bre_compat ) ) :
?>
<div class="postbox">
<div class="postbox-header"><h2><?php esc_html_e( 'Plugin Compatibility', 'bavarian-rank-engine' ); ?></h2></div>
<div class="inside">
<p style="color:#666;margin-top:0;"><?php esc_html_e( 'The following SEO plugins were detected. BRE adapts automatically.', 'bavarian-rank-engine' ); ?></p>
<?php foreach ( $bre_compat as $plugin ) : // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound ?>
<p style="margin-bottom:4px;"><strong><?php echo esc_html( $plugin['name'] ); ?></strong></p>
<ul style="margin:0 0 12px 20px;">
<?php foreach ( $plugin['notes'] as $note ) : // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound ?>
<li><?php echo esc_html( $note ); ?></li>
<?php endforeach; ?>
</ul>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>
<div class="postbox"> <div class="postbox">
<div class="postbox-header"><h2><?php esc_html_e( 'Interne Link-Analyse', 'bavarian-rank-engine' ); ?></h2></div> <div class="postbox-header"><h2><?php esc_html_e( 'Interne Link-Analyse', 'bavarian-rank-engine' ); ?></h2></div>
<div class="inside" id="bre-link-analysis-content"> <div class="inside" id="bre-link-analysis-content">

View file

@ -0,0 +1,242 @@
<?php if ( ! defined( 'ABSPATH' ) ) {
exit;}
?>
<div class="wrap bre-settings">
<h1><?php esc_html_e( 'GEO Quick Overview', 'bavarian-rank-engine' ); ?></h1>
<?php settings_errors( 'bre_geo' ); ?>
<form method="post" action="options.php">
<?php settings_fields( 'bre_geo' ); ?>
<h2><?php esc_html_e( 'Activation', 'bavarian-rank-engine' ); ?></h2>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Enable GEO Block', 'bavarian-rank-engine' ); ?></th>
<td>
<label>
<input type="checkbox" name="bre_geo_settings[enabled]" value="1"
<?php checked( $settings['enabled'], true ); ?>>
<?php esc_html_e( 'Output the Quick Overview block on the frontend', 'bavarian-rank-engine' ); ?>
</label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Mode', 'bavarian-rank-engine' ); ?></th>
<td>
<select name="bre_geo_settings[mode]">
<option value="auto_on_publish" <?php selected( $settings['mode'], 'auto_on_publish' ); ?>>
<?php esc_html_e( 'Auto on publish / update (recommended)', 'bavarian-rank-engine' ); ?>
</option>
<option value="hybrid" <?php selected( $settings['mode'], 'hybrid' ); ?>>
<?php esc_html_e( 'Hybrid: auto only when fields are empty', 'bavarian-rank-engine' ); ?>
</option>
<option value="manual_only" <?php selected( $settings['mode'], 'manual_only' ); ?>>
<?php esc_html_e( 'Manual only (editor button)', 'bavarian-rank-engine' ); ?>
</option>
</select>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Post Types', 'bavarian-rank-engine' ); ?></th>
<td>
<?php foreach ( $post_types as $pt_slug => $pt_obj ) : // phpcs:ignore WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound ?>
<label style="margin-right:15px;">
<input type="checkbox" name="bre_geo_settings[post_types][]"
value="<?php echo esc_attr( $pt_slug ); ?>"
<?php checked( in_array( $pt_slug, $settings['post_types'], true ), true ); ?>>
<?php echo esc_html( $pt_obj->labels->singular_name ); ?>
</label>
<?php endforeach; ?>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Regenerate on update', 'bavarian-rank-engine' ); ?></th>
<td>
<label>
<input type="checkbox" name="bre_geo_settings[regen_on_update]" value="1"
<?php checked( $settings['regen_on_update'], true ); ?>>
<?php esc_html_e( 'Regenerate on every save of a published post', 'bavarian-rank-engine' ); ?>
</label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Word threshold for FAQ', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="number" name="bre_geo_settings[word_threshold]"
value="<?php echo esc_attr( $settings['word_threshold'] ); ?>"
min="50" max="2000" style="width:80px;">
<p class="description">
<?php esc_html_e( 'Below this word count, no FAQ is generated. Default: 350', 'bavarian-rank-engine' ); ?>
</p>
</td>
</tr>
</table>
<h2><?php esc_html_e( 'Output', 'bavarian-rank-engine' ); ?></h2>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Position', 'bavarian-rank-engine' ); ?></th>
<td>
<select name="bre_geo_settings[position]">
<option value="after_first_p" <?php selected( $settings['position'], 'after_first_p' ); ?>>
<?php esc_html_e( 'After first paragraph (default)', 'bavarian-rank-engine' ); ?>
</option>
<option value="top" <?php selected( $settings['position'], 'top' ); ?>>
<?php esc_html_e( 'Top of post', 'bavarian-rank-engine' ); ?>
</option>
<option value="bottom" <?php selected( $settings['position'], 'bottom' ); ?>>
<?php esc_html_e( 'Bottom of post', 'bavarian-rank-engine' ); ?>
</option>
</select>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Output style', 'bavarian-rank-engine' ); ?></th>
<td>
<select name="bre_geo_settings[output_style]">
<option value="details_collapsible" <?php selected( $settings['output_style'], 'details_collapsible' ); ?>>
<?php esc_html_e( 'Collapsible <details> (default)', 'bavarian-rank-engine' ); ?>
</option>
<option value="open_always" <?php selected( $settings['output_style'], 'open_always' ); ?>>
<?php esc_html_e( 'Always open', 'bavarian-rank-engine' ); ?>
</option>
<option value="store_only_no_frontend" <?php selected( $settings['output_style'], 'store_only_no_frontend' ); ?>>
<?php esc_html_e( 'Store only, no frontend output', 'bavarian-rank-engine' ); ?>
</option>
</select>
</td>
</tr>
</table>
<h2><?php esc_html_e( 'Labels', 'bavarian-rank-engine' ); ?></h2>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Block title', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="text" name="bre_geo_settings[title]"
value="<?php echo esc_attr( $settings['title'] ); ?>"
class="regular-text" placeholder="Quick Overview">
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Summary label', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="text" name="bre_geo_settings[label_summary]"
value="<?php echo esc_attr( $settings['label_summary'] ); ?>"
class="regular-text" placeholder="Summary">
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Key Points label', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="text" name="bre_geo_settings[label_bullets]"
value="<?php echo esc_attr( $settings['label_bullets'] ); ?>"
class="regular-text" placeholder="Key Points">
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'FAQ label', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="text" name="bre_geo_settings[label_faq]"
value="<?php echo esc_attr( $settings['label_faq'] ); ?>"
class="regular-text" placeholder="FAQ">
</td>
</tr>
</table>
<h2><?php esc_html_e( 'Styling', 'bavarian-rank-engine' ); ?></h2>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Load minimal CSS', 'bavarian-rank-engine' ); ?></th>
<td>
<label>
<input type="checkbox" name="bre_geo_settings[minimal_css]" value="1"
<?php checked( $settings['minimal_css'], true ); ?>>
<?php esc_html_e( 'Load base stylesheet for .bre-geo on the frontend', 'bavarian-rank-engine' ); ?>
</label>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Color scheme', 'bavarian-rank-engine' ); ?></th>
<td>
<select name="bre_geo_settings[color_scheme]">
<option value="auto" <?php selected( $settings['color_scheme'], 'auto' ); ?>>
<?php esc_html_e( 'Auto (follows OS light/dark preference)', 'bavarian-rank-engine' ); ?>
</option>
<option value="light" <?php selected( $settings['color_scheme'], 'light' ); ?>>
<?php esc_html_e( 'Always light', 'bavarian-rank-engine' ); ?>
</option>
<option value="dark" <?php selected( $settings['color_scheme'], 'dark' ); ?>>
<?php esc_html_e( 'Always dark', 'bavarian-rank-engine' ); ?>
</option>
</select>
<p class="description">
<?php esc_html_e( 'Auto detects the visitor\'s OS or browser setting via prefers-color-scheme.', 'bavarian-rank-engine' ); ?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Accent color', 'bavarian-rank-engine' ); ?></th>
<td>
<input type="color" id="bre-accent-picker" name="bre_geo_settings[accent_color]"
value="<?php echo esc_attr( $settings['accent_color'] ?: '#0073aa' ); ?>"
style="width:60px;height:34px;padding:2px;border:1px solid #ccd0d4;border-radius:3px;cursor:pointer;"
oninput="document.getElementById('bre-accent-text').value=this.value">
<input type="text" id="bre-accent-text"
value="<?php echo esc_attr( $settings['accent_color'] ?: '#0073aa' ); ?>"
placeholder="#0073aa" maxlength="7" style="width:90px;vertical-align:middle;"
oninput="document.getElementById('bre-accent-picker').value=this.value">
<p class="description">
<?php esc_html_e( 'Used for the left border of the summary bar and the expand arrow. Leave empty for the default blue.', 'bavarian-rank-engine' ); ?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Custom CSS', 'bavarian-rank-engine' ); ?></th>
<td>
<textarea name="bre_geo_settings[custom_css]" rows="6" class="large-text code"><?php
echo esc_textarea( $settings['custom_css'] );
?></textarea>
<p class="description">
<?php esc_html_e( 'Automatically scoped to .bre-geo{...}. Enter CSS properties only, no selector.', 'bavarian-rank-engine' ); ?>
</p>
</td>
</tr>
</table>
<h2><?php esc_html_e( 'AI Prompt', 'bavarian-rank-engine' ); ?></h2>
<table class="form-table">
<tr>
<th scope="row"><?php esc_html_e( 'Default prompt', 'bavarian-rank-engine' ); ?></th>
<td>
<textarea name="bre_geo_settings[prompt_default]" rows="12" class="large-text code"><?php
echo esc_textarea( $settings['prompt_default'] );
?></textarea>
<p class="description">
<?php esc_html_e( 'Variables: {title}, {content}, {language}', 'bavarian-rank-engine' ); ?>
</p>
</td>
</tr>
<tr>
<th scope="row"><?php esc_html_e( 'Per-post prompt add-on', 'bavarian-rank-engine' ); ?></th>
<td>
<label>
<input type="checkbox" name="bre_geo_settings[allow_prompt_addon]" value="1"
<?php checked( $settings['allow_prompt_addon'], true ); ?>>
<?php esc_html_e( 'Authors can enter a prompt add-on per post in the editor', 'bavarian-rank-engine' ); ?>
</label>
</td>
</tr>
</table>
<?php submit_button( __( 'Save Settings', 'bavarian-rank-engine' ) ); ?>
</form>
<hr>
<p style="color:#999;font-size:12px;">
Bavarian Rank Engine <?php echo esc_html( BRE_VERSION ); ?> &mdash;
<?php esc_html_e( 'developed with', 'bavarian-rank-engine' ); ?>
<a href="https://donau2space.de" target="_blank" rel="noopener">Donau2Space.de</a>
</p>
</div>