mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-20 13:52:40 +01:00
Remove AprhontDefaultApplicationController
Summary: This class is unsused and completely useless. Test Plan: Grepped for callsites. Reviewers: btrahan Reviewed By: btrahan CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1840
This commit is contained in:
parent
79a7427999
commit
180ccaffad
3 changed files with 0 additions and 56 deletions
|
@ -23,7 +23,6 @@ phutil_register_library_map(array(
|
|||
'AphrontDatabaseConnection' => 'storage/connection/base',
|
||||
'AphrontDatabaseTransactionState' => 'storage/transaction',
|
||||
'AphrontDefaultApplicationConfiguration' => 'aphront/default/configuration',
|
||||
'AphrontDefaultApplicationController' => 'aphront/default/controller',
|
||||
'AphrontDialogResponse' => 'aphront/response/dialog',
|
||||
'AphrontDialogView' => 'view/dialog',
|
||||
'AphrontErrorView' => 'view/form/error',
|
||||
|
@ -917,7 +916,6 @@ phutil_register_library_map(array(
|
|||
'AphrontContextBarView' => 'AphrontView',
|
||||
'AphrontCrumbsView' => 'AphrontView',
|
||||
'AphrontDefaultApplicationConfiguration' => 'AphrontApplicationConfiguration',
|
||||
'AphrontDefaultApplicationController' => 'AphrontController',
|
||||
'AphrontDialogResponse' => 'AphrontResponse',
|
||||
'AphrontDialogView' => 'AphrontView',
|
||||
'AphrontErrorView' => 'AphrontView',
|
||||
|
|
|
@ -1,38 +0,0 @@
|
|||
<?php
|
||||
|
||||
/*
|
||||
* Copyright 2011 Facebook, Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* @group aphront
|
||||
*/
|
||||
class AphrontDefaultApplicationController extends AphrontController {
|
||||
|
||||
public function processRequest() {
|
||||
$request = $this->getRequest();
|
||||
|
||||
$path = phutil_escape_html($request->getPath());
|
||||
$host = phutil_escape_html($request->getHost());
|
||||
$controller_name = phutil_escape_html(get_class($this));
|
||||
|
||||
$page = new PhabricatorStandardPageView();
|
||||
|
||||
$response = new AphrontWebpageResponse();
|
||||
$response->setContent($page->render());
|
||||
return $response;
|
||||
}
|
||||
|
||||
}
|
|
@ -1,16 +0,0 @@
|
|||
<?php
|
||||
/**
|
||||
* This file is automatically generated. Lint this module to rebuild it.
|
||||
* @generated
|
||||
*/
|
||||
|
||||
|
||||
|
||||
phutil_require_module('phabricator', 'aphront/controller');
|
||||
phutil_require_module('phabricator', 'aphront/response/webpage');
|
||||
phutil_require_module('phabricator', 'view/page/standard');
|
||||
|
||||
phutil_require_module('phutil', 'markup');
|
||||
|
||||
|
||||
phutil_require_source('AphrontDefaultApplicationController.php');
|
Loading…
Reference in a new issue