The {last_edited_items} TAG renderes or returns the last edited pages/images/files.
→ Since BIGACE 2.3.
This example shows how to fetch the last edited pages as pre-rendered HTML.
<html> <head> <title>Last edited pages</title> </head> <body> {last_edited_items} </body> </html>
This example shows how to fetch the last edited images as pre-rendered HTML.
<html> <head> <title>Last edited images</title> </head> <body> {last_edited_items itemtype="4"} </body> </html>
This example shows how to fetch the last edited images as pre-rendered HTML.
<html> <head> <title>Last edited images gallery</title> </head> <body> {last_edited_items itemtype="4" from="0" to="3" assign="myLastImage"} {foreach from=$myLastImage item="img"} <div class="image"> <a href="{link item=$img}"><img src="{link item=$img}" alt="{$img->getName()}"> <br /> <b>{$img->getName()}</b> - {$img->getDescription()}</a> </div> {/foreach} </body> </html>