Go to main content

If first file

Contents

Syntax

<txp:if_first_file>

The if_first_file tag is a conditional tag and always used as an opening and closing pair, like this…

<txp:if_first_file>
    …conditional statement…
</txp:if_first_file>

The tag will execute the contained statements if the displayed file is the first in the currently displayed file_download_list. The tag supports else.

Attributes

This tag has no attributes of its own. It accepts only the global attributes .

Examples

Example 1: Identify first file in a file list

<txp:file_download_list limit="0" break="" wraptag="ul" sort="created desc">
    <txp:if_first_file>
        <li class="latest">
            <txp:file_download_link>
                <txp:file_download_name /> (Latest release)
            </txp:file_download_link>
        </li>
    <txp:else />
        <li>
            <txp:file_download_link>
                <txp:file_download_name />
            </txp:file_download_link>
        </li>
    </txp:if_first_file>
</txp:file_download_list>

Other tags used: else, file_download_link, file_download_list, file_download_name.

Genealogy

Version 4.6.0

Tag support added.

If you notice any kind of problem with this page's construction or content (outdated information, typos, broken links, or whatever), open an issue to have it sorted. Or have a go at it yourself. :)