2014-10-20 10:26:06 -04:00
|
|
|
<div class="controls">
|
|
|
|
|
<?= $this->tabs ?>
|
2015-02-06 18:38:04 -05:00
|
|
|
<h1><?= $this->escape($this->title) ?>
|
|
|
|
|
<a href="<?= $this->url()->without('mode') ?>" title="<?= $this->escape('Switch to tree view') ?>" style="float: right"><?= $this->icon('sitemap') ?></a>
|
|
|
|
|
<?= $this->render('simulationlink.phtml') ?>
|
|
|
|
|
<?= $this->render('editlink.phtml') ?>
|
|
|
|
|
</h1>
|
2014-10-20 10:26:06 -04:00
|
|
|
</div>
|
2015-02-06 18:38:04 -05:00
|
|
|
|
|
|
|
|
<div class="content" data-base-target="_next">
|
2014-10-20 10:26:06 -04:00
|
|
|
<pre>
|
|
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$cnt = 0;
|
|
|
|
|
$lines = preg_split('~\r?\n~', $this->source);
|
|
|
|
|
$len = ceil(log(count($lines), 10));
|
|
|
|
|
|
|
|
|
|
foreach ($lines as $line) {
|
|
|
|
|
$cnt++;
|
|
|
|
|
printf("%0" . $len . "d: %s\n", $cnt, $this->escape($line));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
?>
|
|
|
|
|
</pre>
|
2015-02-06 18:38:04 -05:00
|
|
|
</div>
|