Field that stores one or more references to ProcessWire pages with additional data in field context.
Values are editable via page edit modal of the referenced page provided from the field if module AdminPageFieldEditLinks is installed and "Enable link to create new pages?" is checked in field settings.
Requirements: AdminPageFieldEditLinks >= 3.1.4
Custom modal. Use placeholders to display page, forpage and forfield properties.
Default: 'Edit Page "{title}" [#{id}] with additional values related to Pagefield: "{forfield.name}" of page "{forpage.title}" [#{forpage.id}]'
All context data fields are bundled under its own tab inside the edit modal window. Customize the label if needed.
Default: 'Pagefield Context Data'
Use one line per field in the format <name>:<InputfieldClass>
Add any Inputfield setting separated by comma in the format <settingName>=<settingValue>
after <InputfieldClass>
Syntax of <settingValue>
:
Usage of further equal signs in <settingValue>
is allowed. Commata are reserved as separator and must be escaped with backslash if used in <settingValue>
. Type "\n" for linebreaks.
- InputfieldText
- InputfieldTextarea
- InputfieldEmail
- InputfieldURL
- InputfieldInteger
- InputfieldFloat
- InputfieldDatetime
- InputfieldPage
using inputfields- InputfieldSelect
- InputfieldSelectMultiple
- InputfieldCheckboxes
- InputfieldRadios
- InputfieldAsmSelect
- InputfieldPageListSelect
- InputfieldSelect
- InputfieldCheckbox
- InputfieldCheckboxes
- InputfieldRadios
- InputfieldAsmSelect
Use 'options' as setting name separate each option value or value=label pair using \n.
- InputfieldIcon
- InputfieldSelector
- InputfieldMarkup
- InputfieldFile
- InputfieldImage
- InputfieldPage with InputfieldPageAutocomplete
- InputfieldPage with InputfieldTextTags
text:InputfieldText,columnWidth=50,description=This is a nice description including a comma\, escaped with backslash and equal sign == and colon : xyz,label=Nice Label fo Text Inputfield,notes=whats up?
integer:InputfieldInteger,columnWidth=50,inputType=number
area:InputfieldTextarea,rows=12
page:InputfieldPageListSelect,parent_id=1,inputfield=InputfieldAsmSelect
page2:InputfieldPage,parent_id=1,inputfield=InputfieldAsmSelect
icon:InputfieldIcon,columnWidth=50
float:InputfieldFloat,columnWidth=50,inputType=number
date:InputfieldDatetime,columnWidth=50,datepicker=3
email:InputfieldEmail
file:InputfieldFile,extensions=pdf
select:InputfieldSelect,options=Hello\nWorld\nWhats up?
check1:InputfieldCheckboxes,options=1=Hello\n2=World\n3=Whats up?
check2:InputfieldCheckbox
url:InputfieldURL
selector:InputfieldSelector
textlang:InputfieldText,useLanguages=1
textlang2:InputfieldTextarea,useLanguages=1
While calling the pagefield all context data values will be assigned as runtime values to the page object.
To prevent conflicts an underscore must be prepended to contexts field name.
$page->fieldname; // call the field to assign runtime values
// get first item of PageArray
$reference = $page->fieldname->first();
echo $reference->_text; // get the value of context field 'text' of the referenced page
// loop PageArray
foreach ($page->fieldname as $reference) {
echo $reference->_text;
}
Multilanguage Fields are supported. Set setting: useLanguages=1
- The usage of
get()
orfind()
with context data values is very limited:- no support for multilanguage fields
- only equal sign operator allowed
- no support for array values
- Values are lost after removing related page from the page field.
- some Inputfield classes are not supported.
to @thetuningspoon (Mike Spooner) for updating AdminPageFieldEditLinks that I could get everything working together smoothly.