tft-folder-explorer.tpl.php in Taxonomy File Tree 7
Same filename and directory in other branches
1 theme call to tft-folder-explorer.tpl.php
- tft_block_view in ./
tft.module
File
theme/tft-folder-explorer.tpl.phpView 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>