Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php final class PhabricatorConfigHTTPParameterTypesModule extends PhabricatorConfigMo..
Decoded Output download
<?php
final class PhabricatorConfigHTTPParameterTypesModule
extends PhabricatorConfigModule {
public function getModuleKey() {
return 'httpparameter';
}
public function getModuleName() {
return pht('HTTP Parameter Types');
}
public function renderModuleStatus(AphrontRequest $request) {
$viewer = $request->getViewer();
$types = AphrontHTTPParameterType::getAllTypes();
return id(new PhabricatorHTTPParameterTypeTableView())
->setHTTPParameterTypes($types);
}
}
?>
Did this file decode correctly?
Original Code
<?php
final class PhabricatorConfigHTTPParameterTypesModule
extends PhabricatorConfigModule {
public function getModuleKey() {
return 'httpparameter';
}
public function getModuleName() {
return pht('HTTP Parameter Types');
}
public function renderModuleStatus(AphrontRequest $request) {
$viewer = $request->getViewer();
$types = AphrontHTTPParameterType::getAllTypes();
return id(new PhabricatorHTTPParameterTypeTableView())
->setHTTPParameterTypes($types);
}
}
Function Calls
None |
Stats
MD5 | 37e8dfe61f3932da16987312e4894f6c |
Eval Count | 0 |
Decode Time | 103 ms |