You are using a browser which doesn't fully support Cascading Style Sheets. This site will look much better in a browser that supports web standards, but its content is accessible to any browser or Internet device.

initBackend()

Invocation: called between backend construction and backend startup (so the sources were already parsed).

Function in the Generator class: binds intermediate data to the backend attribute, to allow derived methods to let the backend work on it.

Intention for subclasses: perform whatever seems appropriate in this state.

Parameters: the object. Remember that the backend object is available in attribute backend.

Return values: none expected.

Hints: it is strongly recommended to invoke the parent method, otherwise derived methods accessing the backend object will probably not work.

    # don't forget the base class
    $me->SUPER::initBackend;