-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a clickable link to add a Critique automatically linked to the …
…Text being displayed, for #8
- Loading branch information
1 parent
bbf8b13
commit 5d0187f
Showing
14 changed files
with
1,349 additions
and
1 deletion.
There are no files selected for viewing
339 changes: 339 additions & 0 deletions
339
docroot/sites/all/modules/contrib/entityreference_prepopulate/LICENSE.txt
Large diffs are not rendered by default.
Oops, something went wrong.
42 changes: 42 additions & 0 deletions
42
docroot/sites/all/modules/contrib/entityreference_prepopulate/README.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
Description | ||
=========== | ||
Allows the contents of an "Entity Reference" field to be pre-populated by | ||
taking a parameter from the URL path. | ||
|
||
Install | ||
======= | ||
1. Download and enable the module. | ||
2. Visit admin/structure/types/manage/[ENTITY-TYPE]/fields/[FIELD-NAME] | ||
3. Enable "Entity reference prepopulate" under the instance settings. | ||
|
||
|
||
Configuration | ||
============= | ||
Enable Entity reference prepopulate: | ||
Check this to enable Entity reference prepopulate on this field. | ||
Action | ||
Using the select box choose the action to take if the entity reference | ||
field is pre-populated. | ||
Fallback behaviour | ||
Select what to do if the URL path does NOT contain a parameter to | ||
pre-populate the field. | ||
Skip access permission | ||
This is a fallback override, the fallback behaviour will not be followed | ||
for users with the specified permission. | ||
|
||
Usage | ||
===== | ||
In order to pre-populate an entity reference field you have to supply the | ||
parameter in the URL. | ||
|
||
The structure is | ||
node/add/article?[field_ref]=[id] | ||
|
||
Where [field_ref] is the name of the entity reference field and [id] is | ||
the id of the entity being referenced. | ||
|
||
Examples: | ||
node/add/article?field_foo=1 | ||
node/add/page?field_bar=1,2,3 | ||
|
||
|
14 changes: 14 additions & 0 deletions
14
...ot/sites/all/modules/contrib/entityreference_prepopulate/entityreference_prepopulate.info
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name = Entity reference prepopulate | ||
description = Prepopulate entity reference values from URL. | ||
core = 7.x | ||
package = Fields | ||
dependencies[] = entityreference | ||
|
||
files[] = entityreference_prepopulate.test | ||
|
||
; Information added by Drupal.org packaging script on 2013-12-24 | ||
version = "7.x-1.4" | ||
core = "7.x" | ||
project = "entityreference_prepopulate" | ||
datestamp = "1387912121" | ||
|
Oops, something went wrong.