Plugin Remarks Box

Introduced in Tiki2


Use this wiki plugin to display a comment, tip, note or warning box.

Parameters

Plugin Manager error: remarksbox plugin not found

Examples

Comment

This code:

Copy to clipboard
{REMARKSBOX(type="comment" title="Comment")}remarks text{REMARKSBOX}


Would produce:

 Comment
remarks text

Confirm

This code:

Copy to clipboard
{REMARKSBOX(type="confirm" title="Confirm")}remarks text{REMARKSBOX}


Would produce:

 Confirm
remarks text

Errors

This code:

Copy to clipboard
{REMARKSBOX(type="errors" title="Errors")}remarks text{REMARKSBOX}


Would produce:

 Errors
remarks text

Information

This code:

Copy to clipboard
{REMARKSBOX(type="information" title="Information")}remarks text{REMARKSBOX}


Would produce:

 Information
remarks text

Note

This code:

Copy to clipboard
{REMARKSBOX(type="note" title="Note")}remarks text{REMARKSBOX}


Would produce:

 Note
remarks text

Tip

This code:

Copy to clipboard
{REMARKSBOX(type="tip", title="Tip")}remarks text{REMARKSBOX}


Would produce:

 Tip
remarks text

Warning

This code:

Copy to clipboard
{REMARKSBOX(type="warning" title="Warning")}remarks text{REMARKSBOX}


Would produce:

 Warning
remarks text

Miscellaneous with custom icon

This code:

Copy to clipboard
{REMARKSBOX(type="information" title="Miscellaneous" highlight="y" icon="user" close="n" width="250px" store_cookie="n" id="miscellaneous" version="1")}remarks text{REMARKSBOX}


Would produce:

 Miscellaneous
remarks text

Custom body (wiki syntax)

You can use wiki syntax to style the content of the remarksbox.
This code:

Copy to clipboard
{REMARKSBOX(type="note" title="Note")}{DIV(type="h3")}Heading h3{DIV}remarks text%%%Another line{REMARKSBOX}


Would produce:

 Note

Heading h3

remarks text
Another line