Drupal investigation

about.php 563B

1234567891011121314151617181920212223
  1. <?php
  2. /* @var $this yii\web\View */
  3. use yii\helpers\Html;
  4. use yii\widgets\Breadcrumbs;
  5. $this->title = 'About';
  6. $this->params['breadcrumbs'][] = $this->title;
  7. ?>
  8. <div class="site-about custom-block">
  9. <?= Breadcrumbs::widget([
  10. 'links' => isset($this->params['breadcrumbs']) ? $this->params['breadcrumbs'] : [],
  11. ]) ?>
  12. <h1><?= Html::encode($this->title) ?></h1>
  13. <p> <?= $_SERVER['REMOTE_ADDR'] ?>
  14. This is the About page. You may modify the following file to customize its content:
  15. </p>
  16. <code><?= __FILE__ ?></code>
  17. </div>