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 1
/
Copy pathHelp_en.php
61 lines (57 loc) · 2.46 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
57
58
59
60
61
<?php
/**
* English Help texts
*
* Texts are organized by:
* - Module
* - Profile
*
* Please use this file as a model to translate the texts to your language
* The new resulting Help file should be named after the following convention:
* Help_[two letters language code].php
*
* @author François Jacquet
*
* @uses Heredoc syntax
* @see http://php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc
*
* @package Reports
* @subpackage Help
*/
// REPORTS ---.
if ( User( 'PROFILE' ) === 'admin' ) :
$help['Reports/SavedReports.php'] = <<<HTML
<p>
<i>Saved Reports</i> allows you to save, rename and delete reports. Those reports can virtually consist of any page within RosarioSIS. The "Save Report" button allowing you to save a report will appear in the Bottom frame whenever a Student / User list is displayed.
</p>
<p>
Once saved, the report will appear under the Reports module's menu. This will allow you to easily run the report again and can act as a shortcut to any page.
</p>
HTML;
$help['Reports/Calculations.php'] = <<<HTML
<p>
<i>Calculations</i> allows you to perform calculations by combinating some basic functions, RosarioSIS fields, breakdown and search screens into an equation.
</p>
<p>
The top header will give you hints while writing your calculus. The left box will provide you with functions and mathematical operators. The right box will provide you with Time values, RosarioSIS fields and constants.
</p>
<p>
Clicking on one of those function / operator / field will add it to the Equation box below.
</p>
<p>
The Equation box features 3 icons and a dropdown list:
<ul>
<li>the "Breakdown" dropdown list to apply to the equation results.</li>
<li>the Backspace icon to erase the last member of the equation;</li>
<li>the Run icon to run the equation;</li>
<li>and the Floppy icon to save the equation.</li>
</ul>
</p>
<p>
When adding a function to the equation, you will notice a Search screen popping up: the dropdown lists will allow you to filter the results of the function. You can add another filter by clicking on the plus icon (+). Please note that the same type of filter cannot be repeated for the same function. Each search screen corresponds to a function. If your equation contains more than one function, a new search screen will pop up.
</p>
<p>
At the bottom of the screen, a list of Saved Equations may appear. Saved equations can be used within the <i>Calculations Reports</i> program.
</p>
HTML;
endif;