You are here

panels-add-content-link.tpl.php in Panels 7.3

Template to control the add content individual links in the add content modal.

File

templates/panels-add-content-link.tpl.php
View source
<?php

/**
 * @file
 * Template to control the add content individual links in the add content modal.
 */
?>
<div class="content-type-button clearfix">
  <?php

if (isset($icon_text_button)) {
  ?>
    <?php

  print $icon_text_button;
  ?>
  <?php

}
else {
  ?>
    <?php

  print $image_button;
  ?>
    <div><?php

  print $text_button;
  ?></div>
  <?php

}
?>
</div>