FamilyTree Nicknames.php - jcobban/Genealogy GitHub Wiki
Up: Family Tree Implementation
This script implements the interface for administering the table of alternate given names which is used to interpret the text in input fields which represent given names. This script is invoked by method='get'
for initial display of a portion of the table. It is re-invoked by method='post'
if the user adds or changes Nickname records.
When invoked by method='get'
it supports the following parameters.
parameter | description |
---|---|
'pattern' | a regular expression to limit which entries are displayed |
'offset' | the offset into the set of entries matching the pattern |
'limit' | the maximum number of entries to display to the user at a time |
'lang' | the language selection |
When invoked by method='post'
it supports the following parameters:
parameter | description |
---|---|
'pattern' | a regular expression to limit which entries are displayed |
'offset' | the offset into the set of entries matching the pattern |
'limit' | the maximum number of entries to display to the user at a time |
'lang' | the language selection |
'name...' | the value of the given name as entered into a given name field |
'prefix...' | the possibly altered value of the associated prefix field |
'givenname...' | the possibly altered value of the associated givenname field |
'gender...' | 'm' if the given name applies only to males, 'f' if the given name applies only to females, or '' if it is not gender-specific |
This script is usually accessed from the top level administration services page.
To see an example of this page in action go to the demonstration site.
This script displays a dialog such as:
Next: nominalIndex.js