You are here

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

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

File

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

if ($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/content/taxonomy/' . variable_get('tft_vocabulary_vid', 0)),
  ));
  ?>
    </div>
  <?php

}
?>
</div>