public Function tag - profile

Contents [-]
The function tags are developed by the WordFrame team. They can be used everywhere in the public site in HTML, javascripts, etc. and will be substituted with the real values when the HTML is rendered. Function tags can be inserted as:
{{ function_tag: parameter }}   or   {{ function_tag: parameter $|$ option_1 $|$ option_2 }}

General profile information

tag parameter (description) options (description) example
profile account-id
The account's unique guid
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: account-id $|$ john_doe }}
{{ profile: account-id $|$ $_author_username }}
profile updated-on
The date and time of the last profile update
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( date-time format string )
(not required)the format should be according the asp.net date and time format standard (ex. dd-MM-yyyy hh:mm). If no format is provided, the current system one will be applied.
option_3 ( date-time format string )
(not required)the format should be according the asp.net date and time format standard (ex. dd-MM-yyyy hh:mm). If no format is provided, the current system one will be applied.
{{ profile: updated-on $|$ john_doe }}
{{ profile: updated-on $|$ $_author_username $|$ dd-MM-yyyy HH:mm }}
profile updated-by
The username of the last profile editor
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: updated-by $|$ john_doe }}
{{ profile: updated-by $|$ $_author_username }}
profile verified
YES | NO boolean, whether the account is verified or not
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: verified $|$ john_doe }}
{{ profile: verified $|$ $_author_username }}
profile categories
comma separated list of categories (eg. "category 1,category 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: categories $|$ john_doe }}
{{ profile: categories $|$ $_author_username }}
profile tags
comma separated list of tags (eg. "tag 1,tag 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: tags $|$ john_doe }}
{{ profile: tags $|$ $_author_username }}
profile photo
the URL address of the photo uploaded in the current Integra installation or the external URL defined in the "photo uri", if the local is empty. If all fails the URL to a default photo image is returned.
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty. In this case applicable only when there is no profile matched or username is wrong.
{{ profile: photo $|$ john_doe }}
{{ profile: photo $|$ $_author_username }}
profile photo-url
the external URL of the user's image
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: photo-url $|$ john_doe }}
{{ profile: photo-url $|$ $_author_username }}

Personal information

tag parameter (description) options (description) example
profile name
Full name of the user (in most cases the first and the last name)
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: name $|$ john_doe }}
{{ profile: name $|$ $_author_username $|$ not defined }}
profile first-name
The first name of the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: first-name $|$ john_doe }}
{{ profile: first-name $|$ $_author_username $|$ not defined }}
profile last-name
The last name of the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: last-name $|$ john_doe }}
{{ profile: last-name $|$ $_author_username $|$ not defined }}
profile honorific-prefix
such as Dr. or Prof.
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: honorific-prefix $|$ john_doe }}
{{ profile: honorific-prefix $|$ $_author_username $|$ not defined }}
profile honorific-suffix
like M.D.
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: honorific-suffix $|$ john_doe }}
{{ profile: honorific-suffix $|$ $_author_username $|$ not defined }}
profile rank
the user community rank
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: rank $|$ john_doe }}
{{ profile: rank $|$ $_author_username $|$ not defined }}
profile role
the user community role
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: role $|$ john_doe }}
{{ profile: role $|$ $_author_username $|$ not defined }}
profile birthday
birthdate of the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( date-time format string )
(not required)the format should be according the asp.net date and time format standard (ex. dd-MM-yyyy hh:mm). If no format is provided, the current system one will be applied.
option_3 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: birthday $|$ john_doe }}
{{ profile: birthday $|$ $_author_username $|$ dd-MM-yyyy HH:mm }}
profile gender
FEMALE | MALE
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: gender $|$ john_doe }}
{{ profile: gender $|$ $_author_username $|$ not defined }}
profile hometown
the town where the user grew up or where has principal residence
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: hometown $|$ john_doe }}
{{ profile: hometown $|$ $_author_username $|$ not defined }}
profile religion
the user's religion
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: religion $|$ john_doe }}
{{ profile: religion $|$ $_author_username $|$ not defined }}
profile political
the user's political view
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: political $|$ john_doe }}
{{ profile: political $|$ $_author_username $|$ not defined }}
profile about
brief information about the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: about $|$ john_doe }}
{{ profile: about $|$ $_author_username $|$ not defined }}
profile interests
comma separated list of user interests (eg. "interest 1","interest 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: interests $|$ john_doe }}
{{ profile: interests $|$ $_author_username $|$ not defined }}
profile hobby
comma separated list of user hobbies (eg. "hobby 1","hobby 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: hobby $|$ john_doe }}
{{ profile: hobby $|$ $_author_username $|$ not defined }}
profile skills
comma separated list of user skills (eg. "skill 1","skill 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: skills $|$ john_doe }}
{{ profile: skills $|$ $_author_username $|$ not defined }}
profile expertise
comma separated list of user expertise areas (eg. "area 1","area 2")
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: expertise $|$ john_doe }}
{{ profile: expertise $|$ $_author_username $|$ not defined }}

Contacts information

tag parameter (description) options (description) example
profile website
The user's website URL
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: website $|$ john_doe }}
{{ profile: website $|$ $_author_username $|$ not defined }}
profile weblog
The user's blog URL
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: weblog $|$ john_doe }}
{{ profile: weblog $|$ $_author_username $|$ not defined }}
profile utc-offset
The user's timezone's utc offset. Positive or negative INT.
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: utc-offset $|$ john_doe }}
{{ profile: utc-offset $|$ $_author_username $|$ not defined }}
profile geo-longitude
the user's geographic longitude
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: geo-longitude $|$ john_doe }}
{{ profile: geo-longitude $|$ $_author_username $|$ not defined }}
profile geo-latitude
the user's geographic latitude
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: geo-latitude $|$ john_doe }}
{{ profile: geo-latitude $|$ $_author_username $|$ not defined }}
profile phones-number
the most recent phone number submitted by the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: phones-number $|$ john_doe }}
{{ profile: phones-number $|$ $_author_username $|$ not defined }}
profile phones-type
the type of the most recent user phone number - home | work | pref | fax | cell | pager
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: phones-type $|$ john_doe }}
{{ profile: phones-type $|$ $_author_username $|$ not defined }}
profile emails-address
the most recent email submitted by the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: emails-address $|$ john_doe }}
{{ profile: emails-address $|$ $_author_username $|$ not defined }}
profile emails-type
the type of the most recent email - private | work | personal - an email type
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: emails-type $|$ john_doe }}
{{ profile: emails-type $|$ $_author_username $|$ not defined }}
profile accounts-name
id or username or name of the most recent external account submitted by the user
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: accounts-name $|$ john_doe }}
{{ profile: accounts-name $|$ $_author_username $|$ not defined }}
profile accounts-type
facebook | openid and so on customly set
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: accounts-type $|$ john_doe }}
{{ profile: accounts-type $|$ $_author_username $|$ not defined }}
profile address-type
the type of the most recently provided address - work | home | pref | postal | dom | intl
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-type $|$ john_doe }}
{{ profile: address-type $|$ $_author_username $|$ not defined }}
profile address-pobox
postal code or ZIP
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-pobox $|$ john_doe }}
{{ profile: address-pobox $|$ $_author_username $|$ not defined }}
profile address-street
street name and No
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-street $|$ john_doe }}
{{ profile: address-street $|$ $_author_username $|$ not defined }}
profile address-extended
additional address information
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-extended $|$ john_doe }}
{{ profile: address-extended $|$ $_author_username $|$ not defined }}
profile address-locality
district of the address / neighbourhood
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-locality $|$ john_doe }}
{{ profile: address-locality $|$ $_author_username $|$ not defined }}
profile address-region
country's region
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-region $|$ john_doe }}
{{ profile: address-region $|$ $_author_username $|$ not defined }}
profile address-country
the name of the country
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: address-country $|$ john_doe }}
{{ profile: address-country $|$ $_author_username $|$ not defined }}

Work history

tag parameter (description) options (description) example
profile work-employer
the most recent submitted company or the employer's name
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: work-employer $|$ john_doe }}
{{ profile: work-employer $|$ $_author_username $|$ not defined }}
profile work-address
the company or the employer's address
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: work-address $|$ john_doe }}
{{ profile: work-address $|$ $_author_username $|$ not defined }}
profile work-position
the user's job position
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: work-position $|$ john_doe }}
{{ profile: work-position $|$ $_author_username $|$ not defined }}
profile work-startdate
when the user started working on this job position
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( date-time format string )
(not required)the format should be according the asp.net date and time format standard (ex. dd-MM-yyyy hh:mm). If no format is provided, the current system one will be applied.
option_3 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: work-startdate $|$ john_doe }}
{{ profile: work-startdate $|$ $_author_username $|$ dd-MM-yyyy HH:mm }}
profile work-enddate
when the user started working on this job position
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( date-time format string )
(not required)the format should be according the asp.net date and time format standard (ex. dd-MM-yyyy hh:mm). If no format is provided, the current system one will be applied.
option_3 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: work-enddate $|$ john_doe }}
{{ profile: work-enddate $|$ $_author_username $|$ dd-MM-yyyy HH:mm }}

Education

tag parameter (description) options (description) example
profile education-school
the most recent submitted school name
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: education-school $|$ john_doe }}
{{ profile: education-school $|$ $_author_username $|$ not defined }}
profile education-year
the year of graduation
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: education-year $|$ john_doe }}
{{ profile: education-year $|$ $_author_username $|$ not defined }}
profile education-degree
the name of the degree
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: education-degree $|$ john_doe }}
{{ profile: education-degree $|$ $_author_username $|$ not defined }}
profile education-concentration
the specialization of the degree
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: education-concentration $|$ john_doe }}
{{ profile: education-concentration $|$ $_author_username $|$ not defined }}

Social network

tag parameter (description) options (description) example
profile relationship-status
Single | In a Relationship | Engaged | Married | It's Complicated | In an Open Relationship | Widowed
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: relationship-status $|$ john_doe }}
{{ profile: relationship-status $|$ $_author_username $|$ not defined }}
profile interested-in
Men | Women - Genders the user is interested in
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: interested-in $|$ john_doe }}
{{ profile: interested-in $|$ $_author_username $|$ not defined }}
profile meeting-for
Friendship | Dating | A Relationship | Networking - Types of relationships the user is seeking
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: meeting-for $|$ john_doe }}
{{ profile: meeting-for $|$ $_author_username $|$ not defined }}
profile knows-uid
the most recent submitted user account id of the known person
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: knows-uid $|$ john_doe }}
{{ profile: knows-uid $|$ $_author_username $|$ not defined }}
profile knows-username
the most recent submitted username of the known person
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: knows-username $|$ john_doe }}
{{ profile: knows-username $|$ $_author_username $|$ not defined }}
profile knows-relationship
friend | acquaintance | parent | sibling | child | grandchild | spouse | enemy | antagonist | ambivalent | colleague
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: knows-relationship $|$ john_doe }}
{{ profile: knows-relationship $|$ $_author_username $|$ not defined }}

Custom fields

tag parameter (description) options (description) example
profile custom-key
Single | In a Relationship | Engaged | Married | It's Complicated | In an Open Relationship | Widowed
option_1 ( string )
(required) The account's username. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_2 ( string )
(required) The custom data key. Can be provided as string, as data variable ("starting with $_") or as presentation tag if embedded in a webframe.
option_3 ( string )
(not required) Default value that will be presented, if the initial result is empty
{{ profile: custom-key $|$ john_doe $|$ car }}
{{ profile: custom-key $|$ $_author_username $|$ car $|$ not defined }}
Last edited by nadia on 26 Oct 2010 | Rev. 1 | This page is public | Views: 1
Comments: 0 | Filed under: root | Tags: