Support #8903
typolink values
| Status: | Resolved | Start date: | 2010-07-16 | |
|---|---|---|---|---|
| Priority: | -- undefined -- | Due date: | 2010-07-16 | |
| Assignee: | Dirk Wildt | % Done: | 100% |
|
| Category: | Typoscript | Spent time: | - | |
| Target version: | - | Estimated time: | 0.15 hour | |
| Votes: | 0 |
Description
How can I get the value for a typolink property? For example, to show the email of a fe-user with link in the single view.
....
single{
1{
select = fe_users.name, fe_users.address, fe_users.email, fe_users.telephone, fe_users.zip, fe_users.city
fe_users.email {
typolink.parameter.??? = ???
}
}
}
.....
Thanks for your help.
Freddy
History
Updated by Dirk Wildt almost 3 years ago
- Due date set to 2010-07-16
- Category set to Typoscript
- Status changed from New to Needs Feedback
- Assignee set to Dirk Wildt
- Priority changed from Should have to -- undefined --
- % Done changed from 0 to 100
- Estimated time set to 0.15
Dear Freddy,
Thanks for your support question.
This should be the solution (please remove the dots. The dots are only for a better humane readable code):
single{
.. 1{
.... select = fe_users.name, fe_users.address, fe_users.email, fe_users.telephone, fe_users.zip, fe_users.city
.... fe_users.email = TEXT
.... fe_users.email {
...... typolink.parameter = ###FE_USER.EMAIL###
.... }
.. }
}
Please give me a feed back in any case: If code is successfull and if it is failing.
Kind regards
Dirk
Updated by Freddy Tripold almost 3 years ago
Yes, great, works fine.
Thanks & nice day
Freddy
Updated by Dirk Wildt almost 3 years ago
- Status changed from Needs Feedback to Resolved