Is there any magic to place a Registration link in "Chatblock" block?
I've seen the module code (chatblockchatform()), but Drupal Form API has no option to insert a static link.
TIA
PS: I'm very newbie in CSS design.
Is there any magic to place a Registration link in "Chatblock" block?
I've seen the module code (chatblockchatform()), but Drupal Form API has no option to insert a static link.
TIA
PS: I'm very newbie in CSS design.
Comments
Comment #1
attb2 commentedSolved. :-)
I've found a special 'markup' type in Form API. This element outputs its value without any modification.
So I inserted this piece of code to chatblockchatform() function:
Next step: place this link only when no user logged in.
Comment #2
dwees commentedTo place the link when the user is not logged in, use the following:
this works because the anonymous user has uid = 0, and !0 resolves as true (since Php converts 0 to null/false when needed).
Comment #3
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.