[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: class-walker-docs.php
File is not writable. Editing disabled.
<?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'] && 0 === $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 = 0 ) { if ( 0 === $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 ); } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server05.hostinghome.co.in
Server IP: 192.168.74.40
PHP Version: 7.4.33
Server Software: Apache
System: Linux server05.hostinghome.co.in 3.10.0-962.3.2.lve1.5.81.el7.x86_64 #1 SMP Wed May 31 10:36:47 UTC 2023 x86_64
HDD Total: 1.95 TB
HDD Free: 690.91 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Disabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes
gcc:
Yes
pkexec:
No
git:
Yes
User Info
Username: itsweb
User ID (UID): 1619
Group ID (GID): 1621
Script Owner UID: 1619
Current Dir Owner: N/A