summaryrefslogtreecommitdiffstats
path: root/extensions/Example/template/en/default/admin/params/example.html.tmpl
blob: d399ac161df37100c25089b0212ace6764608574 (plain)
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
[%# This Source Code Form is subject to the terms of the Mozilla Public
  # License, v. 2.0. If a copy of the MPL was not distributed with this
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
  #
  # This Source Code Form is "Incompatible With Secondary Licenses", as
  # defined by the Mozilla Public License, v. 2.0.
  #%]
[%
    title = "Example Extension"
    desc = "Configure example extension"
%]

[% param_descs = {
  example_string        => "This parameter accepts any text. (type t)",
  example_constrained_string => "This parameter accepts only a text of the form " _
                                "NN-XXXX-N, where N is a digit and X a letter.",
  example_number        => "This parameter accepts only a positive integer.",
  example_password      => "Text with all characters replaced by asterisks for " _
                           "security purposes. (type p)",
  example_multi_lines   => "Text field permitting multiple lines of text. (type l)",
  example_boolean       => "You have only two choices: On (1) or Off (0). (type b)",
  example_single_select => "Select a single value from a list. (type s)",
  example_multi_select  => "Select none, one or several values from a list. (type m)",
  example_multi_ordered => "Several values can be selected and ordered. (type o)",
}
%]