mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-22 23:02:42 +01:00
Delete old commented code
This commit is contained in:
parent
7227d7d850
commit
0c321d8176
1 changed files with 0 additions and 48 deletions
|
@ -110,51 +110,3 @@ final class DarkConsoleXHProfPlugin extends DarkConsolePlugin {
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
/*
|
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
*/
|
|
||||||
|
|
Loading…
Reference in a new issue