You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move all organization info to Organization* metadata options.
This patch changes the metadata parsing and generation to use
OrganizationName, OrganizationDisplayName and OrganizationURL.
It also updates users of 'name' to check 'OrganizationDisplayName'
if 'name' is unset.
git-svn-id: https://simplesamlphp.googlecode.com/svn/trunk@2166 44740490-163a-0410-bde0-09ae8108e29a
Copy file name to clipboardExpand all lines: docs/simplesamlphp-reference-sp-hosted.txt
+29Lines changed: 29 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -53,6 +53,35 @@ Common options
53
53
`idpdisco.url`
54
54
: Set which IdP discovery service this SP should use. If this is unset, the IdP discovery service specified in the global option `idpdisco.url.{saml20|shib13}` in `config/config.php` will be used. If that one is also unset, the builtin default discovery service will be used.
55
55
56
+
`OrganizationName`
57
+
: The name of the organization responsible for this SPP.
58
+
This name does not need to be suitable for display to end users.
59
+
60
+
: This option can be translated into multiple languages by specifying the value as an array of language-code to translated name:
61
+
62
+
'OrganizationName' => array(
63
+
'en' => 'Example organization',
64
+
'no' => 'Eksempel organisation',
65
+
),
66
+
67
+
: *Note*: If you specify this option, you must also specify the `OrganizationURL` option.
68
+
69
+
`OrganizationDisplayName`
70
+
: The name of the organization responsible for this SPP.
71
+
This name must be suitable for display to end users.
72
+
If this option isn't specified, `OrganizationName` will be used instead.
73
+
74
+
: This option can be translated into multiple languages by specifying the value as an array of language-code to translated name.
75
+
76
+
: *Note*: If you specify this option, you must also specify the `OrganizationName` option.
77
+
78
+
`OrganizationURL`
79
+
: An URL the end user can access for more information about the organization.
80
+
81
+
: This option can be translated into multiple languages by specifying the value as an array of language-code to translated URL.
82
+
83
+
: *Note*: If you specify this option, you must also specify the `OrganizationName` option.
84
+
56
85
`name`
57
86
: The name of this SP. Will be added to the generated metadata.
0 commit comments