<?php use yii\apidoc\helpers\ApiMarkdown; use yii\apidoc\models\ClassDoc; use yii\apidoc\models\TraitDoc; use yii\helpers\ArrayHelper; /* @var $type ClassDoc|TraitDoc */ /* @var $this yii\web\View */ /* @var $renderer \yii\apidoc\templates\html\ApiRenderer */ $renderer = $this->context; $properties = $type->getNativeProperties(); if (empty($properties)) { return; } ArrayHelper::multisort($properties, 'name'); ?> <h2>Property Details</h2> <div class="property-doc"> <?php foreach ($properties as $property): ?> <div class="detail-header h3" id="<?= $property->name.'-detail' ?>"> <a href="#" class="tool-link" title="go to top"><span class="glyphicon glyphicon-arrow-up"></span></a> <?= $renderer->createSubjectLink($property, '<span class="glyphicon icon-hash"></span>', [ 'title' => 'direct link to this method', 'class' => 'tool-link hash', ]) ?> <?php if (($sourceUrl = $renderer->getSourceUrl($property->definedBy, $property->startLine)) !== null): ?> <a href="<?= str_replace('/blob/', '/edit/', $sourceUrl) ?>" class="tool-link" title="edit on github"><span class="glyphicon glyphicon-pencil"></span></a> <a href="<?= $sourceUrl ?>" class="tool-link" title="view source on github"><span class="glyphicon glyphicon-eye-open"></span></a> <?php endif; ?> <?= $property->name ?> <span class="detailHeaderTag small"> <?= $property->visibility ?> <?php if ($property->getIsReadOnly()) echo ' <em>read-only</em> '; ?> <?php if ($property->getIsWriteOnly()) echo ' <em>write-only</em> '; ?> property <?php if (!empty($property->since)): ?> (available since version <?= $property->since ?>) <?php endif; ?> </span> </div> <div class="signature"><?php echo $renderer->renderPropertySignature($property); ?></div> <?= ApiMarkdown::process($property->description, $type) ?> <?= $this->render('seeAlso', ['object' => $property]) ?> <?php endforeach; ?> </div>