- b2evolution CMS User Manual
- Developer Reference
- Website Skins/Themes
- Skin Tags / API
- Item Tags
- Template Tag: Item Refresh Contents Last Updated Link
Template Tag: Item Refresh Contents Last Updated Link
Displays a link to refresh the "contents last updated date" of the Post/Item.
This is useful mostly for forum administrators to reset the date in case some spam comments were deleted.
Examples
Quick Template
[Item:refresh_contents_last_updated_link|before=<span class="link_class">|after=</span>|text=#icon# Refresh]
PHP Template
$Item->get_refresh_contents_last_updated_link( array(
'before' => '<span class="link_class">',
'after' => '</span>',
'text' => '#icon# Refresh',
) );
Parameters
Param |
Default |
Usage |
---|---|---|
|
|
Displayed before the refresh link |
|
|
Displayed after the refresh link |
|
|
Text to display for the link. The |
|
|
Title tooltip to display for the link. |
|
|
CSS class applied to the link. |
Return value
This tag displays content only, it does not have a return value.