forked from science-ation/science-ation
29 lines
923 B
PHP
29 lines
923 B
PHP
<?php
|
|
|
|
// This file was created February 2015 by Sebastian Ruan
|
|
/* It determines if signature page is to be called permission form.
|
|
The multiple variables allow for correct grammer to be observed
|
|
on the website.
|
|
*/
|
|
|
|
if ($config['signaturepage_or_permissionform']=="permissionform"){
|
|
|
|
$participationform = 'Permission Form';
|
|
$plural_participationform = 'Permission Forms';
|
|
$non_capital_participationform = 'permission form';
|
|
$non_capital_plural_participationform = 'permission forms';
|
|
$sentence_begin_participationform = 'Permission form';
|
|
$signatureformpermissionform = 'permission form';
|
|
}
|
|
|
|
else {
|
|
$participationform = 'Signature Page';
|
|
$plural_participationform = 'Siganture Forms';
|
|
$non_capital_participationform = 'signature page';
|
|
$non_capital_plural_participationform = 'signature forms';
|
|
$sentence_begin_participationform = 'Signature page';
|
|
$signatureformpermissionform = 'signature form';
|
|
}
|
|
|
|
|
|
?>
|