Tools opened at startup


Introduction

You can set which tools are opened at startup for every user.

Configuration

Open the file WEB-INF/param/cms-uitools.xml

<?xml version="1.0" encoding="UTF-8"?>
<uitool-factories>
    <default>
        <uitool-factory id="...">param1: value1, param2: value2, param3: { subparam: value }</uitool-facotry>
    </default>
</uitool-factories>

Add a tag <uitool-factory> for each tool you want to open.
The id is the factory id.
The text value of the tag, is the parameters needed by the factory. As you can see in the sample, the parameters are written in JS WITHOUT the surrounding brackets.

Back to top