-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Prepopulate the title field on a node creation form:
http://www.example.com/node/add/content?edit[title]=This is the title
Prepopulate can handle pre-filling multiple fields from one URL. Just separate the edit variables with an ampersand:
http://www.example.com/node/add/content?edit[title]=The title&edit[body_filter][body]=The body
This can be tricky, but there are a few things to keep in mind that should help.
Prepopulate.module is quite simple. It looks through the form, looking for a variable that matches the name given on the URL, and puts the value in when it finds a match. Backdrop keeps HTML form entities in an edit[] array structure. All your variables will be contained within the edit[] array.
A good starting point is to look at the HTML code of a rendered Backdrop form. Once you find the appropriate (or <textarea>…</textarea> tag, use the value of the name attribute in your URL, contained in the edit array. For example, if the tag looks like this:
<input id="edit-title" class="form-text required" type="text" value="" size="60" name="title" maxlength="128"/>
then try this URL:
http://www.example.com/node/add/content?edit[title]=Automatic filled in title
In this example, [taxonomy][1] is the vocabulary ID and the number 2 is the Term ID that will populate the field:
http://www.example.com/node/add/content?edit[taxonomy][1]=2
If this doesn't work, you may want to try this format for a vocabulary named "tags":
http://www.example.com/node/add/content?edit[taxonomy][tags][1]=test
Taxonomy fields with widget type taxonomy autocomplete and termname:
http://www.example.com/node/add/node?edit[field_ch_projekt][und]=termname
<input type="text" name="field_ch_projekt_3[und]" id="edit-field-ch-projekt-3-und">
Taxonomy fields with widget type select list and term ID:
http://www.example.com/node/add/node?edit[field_ch_projekt_2][und]=92
<select name="field_ch_projekt_2[und]" id="edit-field-ch-projekt-2-und">
Taxonomy fields with radios and term ID:
http://www.example.com/node/add/node?edit[field_ch_projekt][und][92]=92
<input type="radio" value="92" name="field_ch_projekt[und]" id="edit-field-ch-projekt-und-92">
Taxonomy fields with checkbox and term name or term ID
http://www.example.com/node/add/node?edit[field_ch_projekt][und][92]=92
http://www.example.com/node/add/node?edit[field_ch_projekt][und][92]=termname
with multiple term IDs
http://www.example.com/node/add/node??edit[field_ch_projekt][und][92]=92&edit[field_ch_projekt][und][93]=93
<input type="checkbox" checked="checked" value="92" name="field_ch_projekt[und][92]" id="edit-field-ch-projekt-und-92"> <input type="checkbox" checked="checked" value="93" name="field_ch_projekt[und][93]" id="edit-field-ch-projekt-und-93">
Body fields are different. Though their HTML entity looks like this:
<textarea id="edit-body" class="form-textarea resizable processed" name="body" rows="20" cols="60"/>
You can't just take the name "body," throw it into a edit[body] and expect it to work. Drupal wraps the body field into a "body_filter" array when it gets processed. This URL should work:
http://www.example.com/node/add/content?edit[body][und][0][value]=this is the body
Entity reference fields (created with the entityreference module) using the autocomplete widget need to be prepopulated by setting both the label followed by the entity ID in parentheses:
http://example.org/node/add/content?edit[field_example_entity][und][DELTA][target_id]=Entity%20label%20(ENTITY_ID)
For entity reference fields using radios, checkboxes, or select elements, see the taxonomy section above. Author field
http://www.example.com/node/add/content?edit[author][name]=dragondrop
To prepopulate the node status as unpublished:
http://www.example.com/node/add/content?edit[options][status]=0
Some characters can't be put into URLs. Spaces, for example, work mostly, but occasionally they'll have to be replaced with the string %20
. This is known as "percent encoding." Wikipedia has a partial list of percent codes at:
https://en.wikipedia.org/wiki/Percent-encoding
If you're having trouble getting content into field names, or are getting 'page not found' errors from Drupal, you should check to ensure that illegal characters are properly encoded.