Introduction

The purpose of the config.xml file is to provide configuration data to each of the blocks that require configuration data. The format of the configuration data is block-specific, thus refer to documentation of Block for relevant details. Each element below the root element has a name coresponding to the name of a block specified in assembly.xml file. The contents of this element is the configuration data for the block.

Sample config.xml file

<?xml version="1.0"?>

<config>

    <myAuthorizer>
      <!-- ...configuration data here... -->
    </myAuthorizer>

    <myBlock>
      <param1>param1-value</param1>
      <an-integer>2</an-integer>
      ...
    </myBlock>

</config>