Usage

A panel to show raw text without formatting.

This can be used for instance to show a 'README' resource. It presents text of any length. 

Since 5.0.7:
For the console installation mode, the info text can be preformatted for displaying using the following features: 

Configuration 

The word wrap and paging feature described above must be activated depending on the format of the info text, they are deactivated by default. 

Panel configuration parameterPossible valuesDefaultDescription
console-text-wordwrap
true | false
false

Set "true" in order to activate word wrapping for the displayed text in console installation mode.

Since: 5.0.7

console-text-paging
true | false
false

Set "true" in order to activate paging for the displayed text in console installation mode.

Since: 5.0.7

 Example: 

<panels>
    <panel classname="InfoPanel" id="panel.info">
      <configuration>
        <param name="console-text-paging" value="true" />
        <param name="console-text-wordwrap" value="false" />
      </configuration>
    </panel>
    ...
</panels> 

The two options work independently on each other. If there are both activated, word wrapping is done before calculating the page size for paging.

Labels/Messages

idDescription
InfoPanel.infoThe label to show on the panel. Variable substitution applies here.

Resources

idDescription
InfoPanel.infoText file resource - the text to be shown as panel content.

Limitations

The panel id is not taken into account for label nor for the resource. You have to specify InfoPanel.info. The label InfoPanel.info is shared with HTMLInfoPanel & XInfoPanel as well.