Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
backup /
extensions /
Gadgets /
Delete
Unzip
Name
Size
Permission
Date
Action
ApiQueryGadgetCategories.php
3.28
KB
-rw-r--r--
2011-09-12 17:10
ApiQueryGadgets.php
5.95
KB
-rw-r--r--
2011-09-16 16:24
Gadgets.alias.php
6.66
KB
-rw-r--r--
2011-05-14 02:11
Gadgets.i18n.php
205.41
KB
-rw-r--r--
2011-07-16 22:06
Gadgets.php
2.06
KB
-rw-r--r--
2011-09-18 13:21
Gadgets_body.php
14.85
KB
-rw-r--r--
2011-10-26 00:15
Gadgets_tests.php
2.79
KB
-rw-r--r--
2011-05-21 13:23
README
1.8
KB
-rw-r--r--
2011-04-12 20:09
SpecialGadgets.php
4.69
KB
-rw-r--r--
2011-06-13 20:37
install.settings
40
B
-rw-r--r--
2008-02-04 09:08
Save
Rename
<?php /** * Gadgets extension - lets users select custom javascript gadgets * * * For more info see http://mediawiki.org/wiki/Extension:Gadgets * * @file * @ingroup Extensions * @author Daniel Kinzler, brightbyte.de * @copyright © 2007 Daniel Kinzler * @license GNU General Public Licence 2.0 or later */ if( !defined( 'MEDIAWIKI' ) ) { echo( "This file is an extension to the MediaWiki software and cannot be used standalone.\n" ); die( 1 ); } if ( version_compare( $wgVersion, '1.18alpha', '<' ) ) { die( "This version of Extension:Gadgets requires MediaWiki 1.18+\n" ); } $wgExtensionCredits['other'][] = array( 'path' => __FILE__, 'name' => 'Gadgets', 'author' => array( 'Daniel Kinzler', 'Max Semenik' ), 'url' => 'http://mediawiki.org/wiki/Extension:Gadgets', 'descriptionmsg' => 'gadgets-desc', ); $wgHooks['ArticleSaveComplete'][] = 'GadgetHooks::articleSaveComplete'; $wgHooks['BeforePageDisplay'][] = 'GadgetHooks::beforePageDisplay'; $wgHooks['UserGetDefaultOptions'][] = 'GadgetHooks::userGetDefaultOptions'; $wgHooks['GetPreferences'][] = 'GadgetHooks::getPreferences'; $wgHooks['ResourceLoaderRegisterModules'][] = 'GadgetHooks::registerModules'; $wgHooks['UnitTestsList'][] = 'GadgetHooks::unitTestsList'; $dir = dirname(__FILE__) . '/'; $wgExtensionMessagesFiles['Gadgets'] = $dir . 'Gadgets.i18n.php'; $wgExtensionAliasesFiles['Gadgets'] = $dir . 'Gadgets.alias.php'; $wgAutoloadClasses['ApiQueryGadgetCategories'] = $dir . 'ApiQueryGadgetCategories.php'; $wgAutoloadClasses['ApiQueryGadgets'] = $dir . 'ApiQueryGadgets.php'; $wgAutoloadClasses['Gadget'] = $dir . 'Gadgets_body.php'; $wgAutoloadClasses['GadgetHooks'] = $dir . 'Gadgets_body.php'; $wgAutoloadClasses['GadgetResourceLoaderModule'] = $dir . 'Gadgets_body.php'; $wgAutoloadClasses['SpecialGadgets'] = $dir . 'SpecialGadgets.php'; $wgSpecialPages['Gadgets'] = 'SpecialGadgets'; $wgSpecialPageGroups['Gadgets'] = 'wiki'; $wgAPIListModules['gadgetcategories'] = 'ApiQueryGadgetCategories'; $wgAPIListModules['gadgets'] = 'ApiQueryGadgets';