Page MenuHomestyx hydra

No OneTemporary

diff --git a/src/aphront/console/plugin/DarkConsoleXHProfPlugin.php b/src/aphront/console/plugin/DarkConsoleXHProfPlugin.php
index 19ea23f93e..e2a03d7804 100644
--- a/src/aphront/console/plugin/DarkConsoleXHProfPlugin.php
+++ b/src/aphront/console/plugin/DarkConsoleXHProfPlugin.php
@@ -1,160 +1,112 @@
<?php
/*
* Copyright 2012 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 console
*/
final class DarkConsoleXHProfPlugin extends DarkConsolePlugin {
protected $xhprofID;
public function getName() {
$run = $this->getData();
if ($run) {
return '<span style="color: #ff00ff;">&bull;</span> XHProf';
}
return 'XHProf';
}
public function getDescription() {
return 'Provides detailed PHP profiling information through XHProf.';
}
public function generateData() {
return $this->xhprofID;
}
public function getXHProfRunID() {
return $this->xhprofID;
}
public function render() {
if (!DarkConsoleXHProfPluginAPI::isProfilerAvailable()) {
$href = PhabricatorEnv::getDoclink('article/Installation_Guide.html');
$install_guide = phutil_render_tag(
'a',
array(
'href' => $href,
'class' => 'bright-link',
),
'Installation Guide');
return
'<div class="dark-console-no-content">'.
'The "xhprof" PHP extension is not available. Install xhprof '.
'to enable the XHProf console plugin. You can find instructions in '.
'the '.$install_guide.'.'.
'</div>';
}
$result = array();
$run = $this->getXHProfRunID();
$header =
'<div class="dark-console-panel-header">'.
phutil_render_tag(
'a',
array(
'href' => $this->getRequestURI()->alter('__profile__', 'page'),
'class' => $run
? 'disabled button'
: 'green button',
),
'Profile Page').
'<h1>XHProf Profiler</h1>'.
'</div>';
$result[] = $header;
if ($run) {
$result[] =
'<a href="/xhprof/profile/'.$run.'/" '.
'class="bright-link" '.
'style="float: right; margin: 1em 2em 0 0;'.
'font-weight: bold;" '.
'target="_blank">Profile Permalink</a>'.
'<iframe src="/xhprof/profile/'.$run.'/?frame=true"></iframe>';
} else {
$result[] =
'<div class="dark-console-no-content">'.
'Profiling was not enabled for this page. Use the button above '.
'to enable it.'.
'</div>';
}
return implode("\n", $result);
}
public function willShutdown() {
if (isset($_REQUEST['__profile__']) &&
$_REQUEST['__profile__'] != 'all') {
$this->xhprofID = DarkConsoleXHProfPluginAPI::stopProfiler();
}
}
}
-/*
-
- public function render() {
- $run = $this->getData();
-
- if ($run) {
- $uri = 'http://www.intern.facebook.com/intern/phprof/?run='.$run;
- return
- <x:frag>
- <h1>XHProf Results</h1>
- <div class="XHProfPlugin">
- <a href={$uri} target="_blank" class="XHProfPlugin">Permalink</a>
- <iframe src={$uri} width="100%" height="600" />
- </div>
- </x:frag>;
- }
-
- $uri = URI::getRequestURI();
- return
- <x:frag>
- <h1>XHProf</h1>
- <form action={$uri} method="get" class="EnableFeature">
- <fieldset>
- <legend>Enable Profiling</legend>
- <p>Profiling was not enabled for this request. Click the button
- below to rerun the request with profiling enabled.</p>
- <button type="submit" name="_profile_" value="all"
- style="margin: 2px 1em; width: 75%;">
- Profile Page (With Includes)
- </button>
- <button type="submit" name="_profile_" value="exec"
- style="margin: 2px 1em; width: 75%;">
- Profile Page (No Includes)
- </button>
- </fieldset>
- </form>
- </x:frag>;
- }
-
- public function didShutdown() {
- if ($this->xhprofData) {
- require_module_lazy('profiling/phprof');
- $this->xhprofID = phprof_save_run($this->xhprofData);
- }
- }
-
-}
-*/

File Metadata

Mime Type
text/x-diff
Expires
Tue, Mar 17, 2:21 AM (3 h, 54 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
964262
Default Alt Text
(4 KB)

Event Timeline