You are here

tft-folder-explorer.tpl.php in Taxonomy File Tree 7.2

Same filename and directory in other branches
  1. 7 theme/tft-folder-explorer.tpl.php

File

theme/tft-folder-explorer.tpl.php
View source
<div id="folder-explorer-container">
  <?php

if (!empty($folders)) {
  ?>
    <?php

  print $folders;
  ?>
  <?php

}
else {
  ?>
    <div class="messages notice">
      <?php

  print t('You must first <a href="!link">create some taxonomy terms</a> before you can see any folders.', array(
    '!link' => url('admin/structure/taxonomy/tft_tree/add'),
  ));
  ?>
    </div>
  <?php

}
?>
</div>