You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- First, thanks for a great answer. I must add however, that it would have been even better if you had written a book on the subject. :) Between your answer and the references to userpoints_list_transactions, hook_element, & system_element_info, I must have a thousand follow up questions on what those parts are doing. A few basic ones follow:Ashlar– Ashlar2011-11-24 01:38:14 +00:00Commented Nov 24, 2011 at 1:38
- The system_element_info is really nice in that it shows the range of #properties associated with system form elements. Is there more documentation that outlines what is used elsewhere? And how render uses it?Ashlar– Ashlar2011-11-24 01:41:55 +00:00Commented Nov 24, 2011 at 1:41
- You're right, I am a bit confused by your statement that I need to enter the content into the node. In your render array example above you have text in the child element, and a table with content in $rows. The content I want to place will have similar sections of paragraphs, lists and tables all within a single body field.Ashlar– Ashlar2011-11-24 01:48:40 +00:00Commented Nov 24, 2011 at 1:48
- 1If you have follow-up questions, it's best to create separate questions and refer to this one, comments don't work well for long explanations. A render array is basically a subset of a $form definition, so you can use the form api documentation api.drupal.org/api/drupal/….Berdir– Berdir2011-11-25 20:40:37 +00:00Commented Nov 25, 2011 at 20:40
- 1And yes, as I said, you can not store render arrays, that just doesn't make sense. You only have two options, creating a number of fields which only works if your structure is static. If you have dynamic, complex content structures, you really only have one choice. Write it in the body or another text field. As HTML. Render arrays are designed to convert data structures into something that can be rendered to HTML but still be altered/themed differently.Berdir– Berdir2011-11-25 20:41:36 +00:00Commented Nov 25, 2011 at 20:41
| Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. taxonomy-terms), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
default