You are here

swagger-ui-formatter.tpl.php in Swagger UI Field Formatter 7.2

Same filename and directory in other branches
  1. 7 templates/swagger-ui-formatter.tpl.php

Template file for swagger ui formatted field.

Available variables:

  • $field_name: Name of the file field.
  • $delta: Delta value for the field.

File

templates/swagger-ui-formatter.tpl.php
View source
<?php

/**
 * @file
 * Template file for swagger ui formatted field.
 *
 * Available variables:
 *   - $field_name: Name of the file field.
 *   - $delta: Delta value for the field.
 */
?>

<?php


/** @var string $field_name */

/** @var int $delta */
?>

<div class="swagger-section">
    <div id="swagger-ui-<?php

print $field_name;
?>-<?php

print $delta;
?>"></div>
</div>