Printed Forms form Relationships (ODT): Difference between revisions
From IHRIS Wiki
Line 11: | Line 11: | ||
To create the template_upload node, simply browse under magic data to /I2CE/page/$pageName/args, create a sub node template_file, do not set its type the select to load a binary file. | To create the template_upload node, simply browse under magic data to /I2CE/page/$pageName/args, create a sub node template_file, do not set its type the select to load a binary file. | ||
==Calling the Page== | |||
If your relationship has primary form $form, you call the page with: | |||
$pageName?id=$form|$id | |||
where $id is the id of the primary form you are interested in. | |||
It will loop through all the joined in data for the primary form with the given id and add a certificate/printed form for each. |
Revision as of 09:56, 12 April 2013
Magic Data
Under /I2CE/page/$pageName (or /modules/$modules/$pageName) you define:
- class(required scalar node) Value is "I2CE_PageGenerateRelationshipTemplate"
- args (parent node)
- relationship (required scalar node) = $relationship
- template_upload
- content required scalar binary node. the binary ODT file.
- name required scalar node. the name of the file when it is generated
- segment_break. optional scalar node. what to use a a page/row break for the template. Defaults to
<text:p text:style-name="P1"/>
which is for a page break. For a line break it is<text:line-break/>
You need to google for the others.
To create the template_upload node, simply browse under magic data to /I2CE/page/$pageName/args, create a sub node template_file, do not set its type the select to load a binary file.
Calling the Page
If your relationship has primary form $form, you call the page with:
$pageName?id=$form|$id
where $id is the id of the primary form you are interested in.
It will loop through all the joined in data for the primary form with the given id and add a certificate/printed form for each.