You are here

entity-share-form-choose-endpoint-page.tpl.php in Entity Share 7

Default theme implementation to display the endpoint admin page.

Available variables:

  • $nodes_table: the endpoint list array to render
  • $form: The endpoints form array to render.

File

modules/entity_share_ui/modules/entity_share_ui_client/templates/entity-share-form-choose-endpoint-page.tpl.php
View source
<?php

/**
 * @file
 * Default theme implementation to display the endpoint admin page.
 *
 * Available variables:
 * - $nodes_table: the endpoint list array to render
 * - $form: The endpoints form array to render.
 *
 * @ingroup themeable
 */
?>
<div id="entity-share-form-choose-endpoint-page">
  <div class="nodes"><?php

print render($nodes_table);
?></div>
  <div class="form"><?php

print render($form);
?></div>
</div>