Dateien nach „bavarian-rank-engine/includes“ hochladen
This commit is contained in:
parent
88474e0a6e
commit
fe3d5bd630
1 changed files with 6 additions and 0 deletions
|
|
@ -32,6 +32,7 @@ class Core {
|
|||
require_once BRE_DIR . 'includes/Features/LlmsTxt.php';
|
||||
require_once BRE_DIR . 'includes/Features/RobotsTxt.php';
|
||||
require_once BRE_DIR . 'includes/Features/CrawlerLog.php';
|
||||
require_once BRE_DIR . 'includes/Features/GeoBlock.php';
|
||||
require_once BRE_DIR . 'includes/Admin/SettingsPage.php';
|
||||
require_once BRE_DIR . 'includes/Admin/AdminMenu.php';
|
||||
require_once BRE_DIR . 'includes/Admin/ProviderPage.php';
|
||||
|
|
@ -42,6 +43,8 @@ class Core {
|
|||
require_once BRE_DIR . 'includes/Admin/SeoWidget.php';
|
||||
require_once BRE_DIR . 'includes/Admin/LinkAnalysis.php';
|
||||
require_once BRE_DIR . 'includes/Admin/RobotsPage.php';
|
||||
require_once BRE_DIR . 'includes/Admin/GeoPage.php';
|
||||
require_once BRE_DIR . 'includes/Admin/GeoEditorBox.php';
|
||||
}
|
||||
|
||||
private function register_hooks(): void {
|
||||
|
|
@ -56,6 +59,7 @@ class Core {
|
|||
( new Features\LlmsTxt() )->register();
|
||||
( new Features\RobotsTxt() )->register();
|
||||
( new Features\CrawlerLog() )->register();
|
||||
( new Features\GeoBlock() )->register();
|
||||
|
||||
if ( is_admin() ) {
|
||||
$menu = new Admin\AdminMenu();
|
||||
|
|
@ -68,6 +72,8 @@ class Core {
|
|||
( new Admin\SeoWidget() )->register();
|
||||
( new Admin\LinkAnalysis() )->register();
|
||||
( new Admin\RobotsPage() )->register();
|
||||
( new Admin\GeoPage() )->register();
|
||||
( new Admin\GeoEditorBox() )->register();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue