----------------------------------------
* CRM-15883: Need to remove inoperative "stationery" box from page format when using Print PDF letter?
https://issues.civicrm.org/jira/browse/CRM-15883
);
$config = CRM_Core_Config::singleton();
+ /* CRM-15883 Suppressing Stationery path field until we switch from DOMPDF to a library that supports it.
if ($config->wkhtmltopdfPath == FALSE) {
$form->add(
'text',
FALSE
);
}
+ */
$form->add('checkbox', 'bind_format', ts('Always use this Page Format with the selected Template'));
$form->add('checkbox', 'update_format', ts('Update Page Format (this will affect all templates that use this format)'));
<td class="label-left">{$form.margin_left.label}</td><td>{$form.margin_left.html}</td>
<td class="label-left">{$form.margin_right.label}</td><td>{$form.margin_right.html}</td>
</tr>
+ {* CRM-15883 Suppressing stationery until switch from DOMPDF.
<tr>
<td class="label-left">{$form.stationery.label}</td><td>{$form.stationery.html}</td>
<td colspan="2"> </td>
</tr>
+ *}
</table>
<div id="bindFormat">{$form.bind_format.html} {$form.bind_format.label}</div>
<div id="updateFormat" style="display: none">{$form.update_format.html} {$form.update_format.label}</div>