!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache. PHP/7.3.33 

uname -a: Linux acloudg.aryanict.com 4.18.0-513.9.1.lve.el8.x86_64 #1 SMP Mon Dec 4 15:01:22 UTC
2023 x86_64
 

uid=1095(katebhospital) gid=1098(katebhospital) groups=1098(katebhospital) 

Safe-mode: OFF (not secure)

/var/softaculous/sitepad/editor/site-data/plugins/documentor/includes/   drwxr-xr-x
Free 293.41 GB of 429.69 GB (68.28%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     class-walker-docs.php (2.08 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
 * Custom page walker for docs.
 *
 * @package documentor
 */

/**
 * Documentor Docs Walker
 */
class Documentor_Walker_Docs extends Walker_Page {
    
/**
     * Parent doc.
     *
     * @var mixed
     */
    
public static $parent_item false;

    
/**
     * Parent doc class.
     *
     * @var string
     */
    
public static $parent_item_class '';

    
/**
     * Start level.
     *
     * @param string  $output - output.
     * @param integer $depth - depth.
     * @param array   $args - arguments.
     */
    
public function start_lvl( &$output$depth 0$args = array() ) {
        
$indent  str_repeat"\t"$depth );
        
$output .= "\n$indent<ul class='children'>\n";

        if ( 
$args['has_children'] && === $depth ) {
            
$classes = array( 'page_item''page-item-' self::$parent_item->ID );

            if ( 
self::$parent_item_class ) {
                
$classes[] = self::$parent_item_class;
            }
        }
    }

    
/**
     * Start element.
     *
     * @param string  $output - output.
     * @param int     $page - page id.
     * @param integer $depth - depth.
     * @param array   $args - arguments.
     * @param integer $current_page - current page id.
     */
    
public function start_el( &$output$page$depth 0$args = array(), $current_page ) {

        if ( 
=== $depth ) {
            
self::$parent_item $page;
        }

        if ( 
$page->ID === $current_page ) {
            
self::$parent_item_class 'current_page_item';
        } else {
            
self::$parent_item_class '';
        }

        
// add the number of childrens.
        
$show_number_childrens = isset( $args['pages_with_children'][ $page->ID ] ) && documentor()->get_option'sidebar_show_nav_number_of_childs''documentor_single'true );
        if ( 
$show_number_childrens ) {
            
$childs             get_pages(
                array(
                    
'child_of'  => $page->ID,
                    
'post_type' => $page->post_type,
                )
            );
            
$count              count$childs );
            
$args['link_after'] = ( isset( $args['link_after'] ) ? $args['link_after'] : '' ) . ' <sup>[' $count ']</sup>';
        }
        
$args['link_before'] = ( isset( $args['link_before'] ) ? $args['link_before'] : '' ) . ( !empty( $args['icon'] ) ? ' <i class="'.$args['icon'].'"></i>' '' );

        
parent::start_el$output$page$depth$args$current_page );
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.1972 ]--