Loading...
 
Skip to main content

History: PluginRemarksbox

Source of version: 22 (current)

Copy to clipboard
            {syntax type="markdown"  editor="wysiwyg"} # Plugin Remarks Box

*Introduced in ((Tiki2))*<br /> 
Use this ((wiki plugin)) to display a comment, tip, note or warning box.

## Parameters

{pluginmanager plugin="remarksbox"}

## Examples

### Comment

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="comment" title="Comment")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="comment" title="Comment")}remarks text{REMARKSBOX}

### Confirm

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="confirm" title="Confirm")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="confirm" title="Confirm")}remarks text{REMARKSBOX}

### Errors

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="errors" title="Errors")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="errors" title="Errors")}remarks text{REMARKSBOX}

### Information

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="information" title="Information")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="information" title="Information")}remarks text{REMARKSBOX}

### Note

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="note" title="Note")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="note" title="Note")}remarks text{REMARKSBOX}

### Tip

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="tip", title="Tip")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="tip", title="Tip")}remarks text{REMARKSBOX}

### Warning

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="warning" title="Warning")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="warning" title="Warning")}remarks text{REMARKSBOX}

### Miscellaneous with custom icon

*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="information" title="Miscellaneous" highlight="y" icon="user" close="n" width="250px" store_cookie="n" id="miscellaneous" version="1")}remarks text{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="information" title="Miscellaneous" highlight="y" icon="user" close="n" width="250px" store_cookie="n" id="miscellaneous" version="1")}remarks text{REMARKSBOX}

### Custom body (wiki syntax)

You can use wiki syntax to style the content of the remarksbox. 
*This code:*
{CODE(colors="tiki")}
{REMARKSBOX(type="note" title="Note")}{DIV(type="h3")}Heading h3{DIV}remarks text%%%Another line{REMARKSBOX}
{CODE}

*Would produce:*
{REMARKSBOX(type="note" title="Note")}
{DIV(type="h3")}Heading h3{DIV}
remarks text<br />Another line{REMARKSBOX}