This repository has been archived by the owner on Jul 5, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelp_en.php
56 lines (51 loc) · 1.53 KB
/
Help_en.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* English Help texts - Email module
*
* Texts are organized by:
* - Module
* - Profile
*
* @author François Jacquet
*
* @uses Heredoc syntax
* @see http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
*
* @package Email module
*/
// EMAIL ---.
if ( User( 'PROFILE' ) === 'admin' ) :
$help['Email/ReportCardsEmailParents.php'] = <<<HTML
<p>
<i>Email Report Cards to Parents</i> allows you to generate PDF Report Cards and send them to the selected Parents email.
</p>
<p>
The email body is customizable and the Report Card PDF is attached to the email.
</p>
<p>
If you would like to check the Report Cards before sending them, please use the <i>Grades > Report Cards</i> program.
</p>
HTML;
$help['Email/DisciplineLogEmailParents.php'] = <<<HTML
<p>
<i>Email Discipline Log to Parents</i> allows you to generate PDF Discipline Logs and send them to the selected Parents email.
</p>
<p>
The email body is customizable and the Discipline Log PDF is attached to the email.
</p>
<p>
If you would like to check the Discipline Logs before sending them, please use the <i>Discipline > Discipline Log</i> program.
</p>
HTML;
$help['Email/StudentBalancesEmailParents.php'] = <<<HTML
<p>
<i>Email Student Balances to Parents</i> allows you send the student balances to the selected Parents email.
</p>
<p>
The email body is customizable.
</p>
<p>
If you would like to check the Student Balances before sending them, please use the <i>Student Billing > Student Balances</i> program.
</p>
HTML;
endif;