Ejemplo n.º 1
0
    echo htmlspecialchars($PageProperty['type']);
    ?>
</td>
<?php 
}
?>
 </tr>
 <tr>
  <td><strong>Getter</strong></td>
  <td><?php 
echo $PageProperty['getter'] ? "Yes" : "No";
?>
</td>
 </tr>
 <tr>
  <td><strong>Setter</strong></td>
  <td><?php 
echo $PageProperty['setter'] ? "Yes" : "No";
?>
</td>
 </tr>
</table>

<?php 
if (isset($PageProperty['data']['tags'])) {
    RenderTags($PageProperty['data']['tags']);
}
?>

<?php 
require __DIR__ . '/footer.php';
Ejemplo n.º 2
0
</span></h4>
    
    <div class="table-responsive">
        <table class="table table-bordered table-hover">
            <thead>
                <tr>
                    <th>Name</th>
                    <th>Description</th>
                </tr>
            </thead>
            <?php 
    foreach ($PageEnum['entries'] as $EnumValue) {
        echo '<tr>';
        echo '<td class="col-md-2">' . htmlspecialchars($EnumValue['name']) . '</td>';
        echo '<td>';
        RenderDescription($EnumValue['brief']);
        echo '</td>';
        echo '</tr>';
    }
    ?>
        </table>
    </div>
<?php 
}
if (isset($Data['tags'])) {
    RenderTags($Data['tags']);
}
?>

<?php 
require __DIR__ . '/footer.php';
Ejemplo n.º 3
0
        echo '</dd>';
    }
    ?>
</dl>
<?php 
}
?>

<?php 
if (isset($Data['return'])) {
    echo '<div class="bs-callout bs-callout-info"><h4>Return Value</h4>';
    if (empty($Data['return']['doc'])) {
        echo '<p class="text-muted">No description.</p>';
    } else {
        RenderDescription($Data['return']['doc']);
    }
    echo '</div>';
}
if (isset($Data['error'])) {
    echo '<div class="bs-callout bs-callout-danger"><h4>Errors</h4>';
    RenderDescription($Data['error']);
    echo '</div>';
}
?>

<?php 
RenderTags($OtherTags);
?>

<?php 
require __DIR__ . '/footer.php';