Wiki source code of homeopathsSheet
Version 3.303 by Jip-jan Alunkel on March 18, 23:18
Hide last authors
author | version | line-number | content |
---|---|---|---|
![]() |
1.1 | 1 | {{include reference="assets.pagemaker.macros"/}} |
2 | |||
3 | {{velocity}} | ||
![]() |
3.2 | 4 | #set($discard = $services.localization.use('document', 'assets.global.translations')) |
![]() |
1.1 | 5 | #set($discard = $services.localization.use('document', 'assets.pagemaker.translations')) |
6 | #set($discard = $xwiki.ssx.use('assets.pagemaker.WebHome', {'minify': false})) | ||
![]() |
3.300 | 7 | #set($discard = $xwiki.jsx.use('assets.pagemaker.WebHome', {'minify': false, 'language': $context.language})) |
![]() |
3.265 | 8 | ## Set the variable for the current subject which then can be used for translation keys, CSS classses and XClass determination. |
9 | ## The $subject is equal to the leading space of the current page that uses this sheet. | ||
10 | #set($subject = $doc.getFullName().split('\.')[0]) | ||
11 | ## Find the correct class name. This is if the class name starts with the name of the top parent space (referenced here by $subject). | ||
![]() |
3.154 | 12 | ## Specify a class name below to override this. |
![]() |
3.148 | 13 | #set($theClass = "") |
![]() |
3.143 | 14 | #set($docObjects = $doc.getxWikiObjects()) |
![]() |
3.133 | 15 | #foreach($docObjectKey in $docObjects.keySet()) |
![]() |
3.265 | 16 | #if($docObjectKey.indexOf($subject) == 0) |
![]() |
3.150 | 17 | #if($theClass == "") |
18 | #set($theClass = $docObjectKey) | ||
19 | #end | ||
![]() |
3.134 | 20 | #end |
![]() |
3.133 | 21 | #end |
![]() |
3.154 | 22 | #set($theDocObj = $doc.getObject($theClass, true)) |
![]() |
3.149 | 23 | #set($hasRight = !$isGuest && ($theDocObj.getProperty('doc_owner').value == $context.getUser() || $hasAdmin)) |
![]() |
3.166 | 24 | ## ADDRESS: Prepare object to provide hidden values to the address input. The keys are equal to the class property names. |
25 | ## The entries will be filled by the class property values. | ||
26 | #set($xa = {'pmLatlong': '','pmCountry': '','pmState': '','pmCounty': '','pmPostcode': '','pmCity': '','pmStreet': '','pmHousenumber': ''}) | ||
27 | #foreach($item in $xa.keySet()) | ||
![]() |
3.258 | 28 | #if($theDocObj.getProperty("$item").value) |
![]() |
3.166 | 29 | #set($xa["$item"] = $theDocObj.getProperty("$item").value) |
30 | #end | ||
31 | #end | ||
![]() |
3.292 | 32 | ## Set the XClass properties which you would like to be displayed. |
33 | #set($properties = ['nrOfHomeopaths','certification','certificationFrom']) | ||
![]() |
3.290 | 34 | ## CLASSPROPERTIES: The classProperties Map has to be in the order of how you want the form elements to appear in the form. |
![]() |
3.265 | 35 | ## 'opener': 1 --> Input functions as an interface control element, it 'opens' an additional block of form inputs. Only for select, input or radio inputs. |
36 | ## 'classless': 1 --> Input is not bound to any XClass or XClass property. | ||
![]() |
3.166 | 37 | ## 'disabled': 1 --> Will not show up in the form at all. |
38 | ## 'extraAttributes': {"disabled": "disabled"} --> Will show up in the form as a disabled input. | ||
39 | #set($classProperties = { | ||
40 | 'editAddress': {'type': 'checkbox', 'opener': 1, 'classless': 1, 'extraAttributes': {"data-checked": "false"}}, | ||
![]() |
3.186 | 41 | 'pmAddress': {'type': 'address', 'parent': 'editAddress', "help-block": 1, 'extraAttributes': {"pmLatlong": "$xa['pmLatlong']", "pmCountry": "$xa['pmCountry']", "pmState": "$xa['pmState']", "pmCounty": "$xa['pmCounty']", "pmPostcode": "$xa['pmPostcode']", "pmCity": "$xa['pmCity']", "pmStreet": "$xa['pmStreet']", "pmHousenumber": "$xa['pmHousenumber']", "data-auto-first-capital": "true", "data-query-type": "address", "data-query-reference": "", "data-query-list-type": "suggest-select", "data-query-list-header": "$services.localization.render('pagemaker.line.suggest_select_list')", "data-query-list-contents": "value/key", "data-query-list-editable": "false", "data-create-xobj": "true", "data-xobj-classname": "homeopaths.Code.homeopathsClass"}}, |
![]() |
3.184 | 42 | 'practiceName': {'type': 'text', 'disabled': 0, "help-block": 1, 'extraAttributes': {"disabled": "disabled"}}, |
![]() |
3.166 | 43 | 'pmStreet': {'type': 'text', 'disabled': 1}, |
44 | 'pmHousenumber': {'type': 'text', 'disabled': 1}, | ||
45 | 'pmPostcode': {'type': 'text', 'disabled': 1}, | ||
46 | 'pmCity': {'type': 'text', 'disabled': 1}, | ||
47 | 'pmCounty': {'type': 'text', 'disabled': 1}, | ||
48 | 'pmState': {'type': 'text', 'disabled': 1}, | ||
49 | 'pmCountry': {'type': 'text', 'disabled': 1}, | ||
50 | 'nrOfHomeopaths': {'type': 'number'}, | ||
51 | 'certification': {'type': 'checkbox', 'opener': 1}, | ||
52 | 'certificationFrom': {'type': 'text', 'parent': 'certification'} | ||
53 | }) | ||
![]() |
3.301 | 54 | ## Show the document content |
55 | $doc.getTranslatedDocument().getContent() | ||
56 | |||
![]() |
3.240 | 57 | {{html wiki="true" clean="false"}} |
![]() |
3.265 | 58 | ## Manual disabling of the create button in the 'Document actions' menu. |
59 | #if(!$isGuest)<p><script>var pmMenuCreate = "disable";</script></p>#end | ||
![]() |
3.268 | 60 | ## Show the 'Edit content' button for the admin and the author only. |
![]() |
1.7 | 61 | #if($hasRight) |
![]() |
1.1 | 62 | <p class="buttons text-align-right"> |
![]() |
3.283 | 63 | #set($xLateEditContent = $stringtool.capitalize($services.localization.render("editcontent").toLowerCase())) |
![]() |
3.284 | 64 | <a class="btn btn-primary" title="$xLateEditContent" href="$doc.getURL('edit','editor=wysiwyg')" role="button" rel="nofollow"> |
65 | <span class="btn-label">$xLateEditContent</span> | ||
![]() |
1.1 | 66 | </a> |
67 | </p> | ||
![]() |
1.7 | 68 | #end |
![]() |
1.1 | 69 | <div class="clearfix"></div> |
![]() |
3.263 | 70 | ## Show properties from the classProperties Map. |
![]() |
1.1 | 71 | #if($xcontext.action == "view") |
![]() |
3.265 | 72 | <h2 class="inline-data-summary">$services.localization.render("${subject}.inlineDataSummary.sheet_properties")</h2> |
73 | <div id="${subject}" class="sheet_properties inline-data-summary"> | ||
![]() |
3.246 | 74 | ## Show the address |
![]() |
3.94 | 75 | #createAddress($theClass 1) |
![]() |
3.291 | 76 | ## Show the chosen properties set at the beginning of this page. |
![]() |
3.58 | 77 | #foreach($property in $properties) |
![]() |
3.259 | 78 | #set($hide = 0) |
79 | ## All form elements that are hidden in the form should also be hidden in the page. | ||
![]() |
3.246 | 80 | #if($classProperties["$property"].containsKey('parent')) |
![]() |
3.249 | 81 | #set($parentKey = $classProperties["$property"].parent) |
![]() |
3.259 | 82 | #if((($classProperties["$parentKey"].type == "checkbox" || $classProperties["$parentKey"].type == "radio") && $theDocObj.getProperty($parentKey).value == 0) || !$theDocObj.getProperty($parentKey).value) |
![]() |
3.246 | 83 | #set($hide = 1) |
84 | #end | ||
85 | #end | ||
![]() |
3.259 | 86 | #if($hide == 0) |
![]() |
2.1 | 87 | <p class="property"> |
![]() |
3.263 | 88 | ## Show value only if there is a value to show, otherwise set to 'unknown'. |
![]() |
3.280 | 89 | <span class="property-name">$services.localization.render("${subject}.classproperty.${property}.label")</span>#if($theDocObj.getProperty($property).value && $theDocObj.getProperty($property).value != "") <span class="property-value">$doc.display($property)</span>#else <span class="property-value ghost">$services.localization.render("resource.unknown.label")</span>#end |
![]() |
3.10 | 90 | </p> |
91 | #end | ||
![]() |
2.1 | 92 | #end |
![]() |
3.268 | 93 | ## Show the 'Edit details' button for the admin and the author only. |
![]() |
1.90 | 94 | #if($hasRight) |
95 | <p class="buttons text-align-right"> | ||
![]() |
3.282 | 96 | <a class="btn btn-secondary" title="$services.localization.render("global.multiword.edit_details")" data-toggle="modal" data-target="#detailsModal" role="button" rel="nofollow"> |
97 | <span class="btn-label">$services.localization.render("global.multiword.edit_details")</span> | ||
![]() |
1.90 | 98 | </a> |
99 | </p> | ||
100 | #end | ||
101 | </div> | ||
![]() |
3.268 | 102 | ## Show the properties edit form in a modal. |
![]() |
3.1 | 103 | #if($hasRight) |
![]() |
1.90 | 104 | #set($form_start = { |
![]() |
3.269 | 105 | "id": "${subject}_form", |
![]() |
3.279 | 106 | "product": $services.localization.render("${subject}.pmProduct"), |
![]() |
1.90 | 107 | "method": "post", |
108 | "url": "", | ||
109 | "use_captcha": "false" | ||
110 | }) | ||
![]() |
1.109 | 111 | #set($submit = { |
112 | "id" : "edit_details", | ||
![]() |
3.273 | 113 | "button-text" : $services.localization.render("notifications.watch.modal.savechanges"), |
![]() |
1.109 | 114 | "clean": "true", |
115 | "help-block" : "" | ||
116 | }) | ||
117 | #set($form_end = { | ||
118 | "use_captcha": "false" | ||
119 | }) | ||
120 | <div class="modal fade" id="detailsModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true"> | ||
121 | <div class="modal-dialog modal-dialog-centered" role="document"> | ||
122 | <div class="modal-content"> | ||
123 | #createFormStart($form_start) | ||
124 | <div class="modal-header"> | ||
![]() |
3.279 | 125 | <h3 class="modal-title">$services.localization.render("web.history.changes.details")</h3> |
![]() |
3.274 | 126 | <button type="button" class="close" data-dismiss="modal" title="$services.localization.render("modal.close")" aria-label="$services.localization.render("modal.close")"> |
![]() |
1.109 | 127 | <span aria-hidden="true">×</span> |
128 | </button> | ||
129 | </div> | ||
130 | <div class="modal-body"> | ||
![]() |
3.88 | 131 | #createAddress($theClass 1) |
![]() |
3.78 | 132 | #set($lastChild = "") |
133 | #foreach($propertyName in $classProperties.keySet()) | ||
![]() |
3.110 | 134 | #set($value = "") |
![]() |
3.78 | 135 | #set($item = $classProperties["$propertyName"]) |
![]() |
3.179 | 136 | #if(!$item.containsKey("disabled") || $item["disabled"] == 0) |
![]() |
3.174 | 137 | #if(!$item.extraAttributes) |
138 | #set($item.extraAttributes = {}) | ||
139 | #end | ||
![]() |
3.170 | 140 | #set($translatedProperties = {}) |
![]() |
3.187 | 141 | #set($checkBool = ["false","true"]) |
![]() |
3.202 | 142 | #set($hasClassObj = !$item.containsKey("classless") && $theDocObj.getProperty($propertyName)) |
![]() |
3.188 | 143 | #if($item.type == "checkbox" || $item.type == "radio") |
![]() |
3.192 | 144 | #if($hasClassObj) |
![]() |
3.189 | 145 | #set($item.extraAttributes["data-checked"] = "$checkBool[$theDocObj.getProperty($propertyName).value]") |
![]() |
3.188 | 146 | #else |
147 | #if(!$item.extraAttributes.containsKey("data-checked")) | ||
148 | #set($item.extraAttributes["data-checked"] = "$checkBool[0]") | ||
149 | #end | ||
150 | #end | ||
![]() |
3.189 | 151 | #set($value = "1") |
![]() |
3.188 | 152 | #else |
![]() |
3.192 | 153 | #if($hasClassObj) |
![]() |
3.188 | 154 | #if($theDocObj.getProperty($propertyName).value) |
155 | #set($value = $theDocObj.getProperty($propertyName).value) | ||
156 | #end | ||
157 | #end | ||
158 | #end | ||
![]() |
3.199 | 159 | #if($item.type != "checkbox" && $item.type != "radio" && (!$item.containsKey("disabled") || $item["disabled"] == 0)) |
![]() |
3.166 | 160 | #set($translatedProperties = { |
161 | 'aria_label': 'data-aria-label', | ||
![]() |
3.173 | 162 | 'placeholder': 'placeholder' |
![]() |
3.166 | 163 | }) |
164 | #end | ||
165 | #set($translatedProperties['label'] = 'label') | ||
![]() |
3.184 | 166 | #if($item['help-block'] == 1) |
![]() |
3.183 | 167 | #set($translatedProperties['help_block'] = 'help-block') |
168 | #end | ||
![]() |
3.176 | 169 | #foreach($key in $translatedProperties.keySet()) |
![]() |
3.267 | 170 | #set($item.extraAttributes["$translatedProperties[$key]"] = $services.localization.render("${subject}.classproperty.${propertyName}.${key}")) |
![]() |
3.166 | 171 | #end |
![]() |
3.78 | 172 | #if($item.containsKey("classless")) |
173 | #set($newElem = { | ||
174 | "id" : "$propertyName", | ||
![]() |
3.100 | 175 | "type" : $item.type, |
![]() |
3.78 | 176 | "required" : "false", |
177 | "label" : "$label", | ||
178 | "value" : "$value" | ||
179 | }) | ||
180 | #else | ||
181 | #set($newElem = { | ||
182 | "id" : "$propertyName", | ||
![]() |
3.100 | 183 | "type" : $item.type, |
![]() |
3.78 | 184 | "required" : "false", |
185 | "label" : "$label", | ||
186 | "data-create-xobj" : "true", | ||
187 | "data-xobj-classname" : $theClass, | ||
188 | "data-xobj-fieldname" : "$propertyName", | ||
189 | "value" : "$value" | ||
190 | }) | ||
191 | #end | ||
![]() |
3.102 | 192 | #if($item.extraAttributes.keySet().size() > 0) |
193 | #foreach($attr in $item.extraAttributes.keySet()) | ||
194 | #set($discard = $newElem.put("$attr", $item.extraAttributes[$attr])) | ||
![]() |
3.78 | 195 | #end |
196 | #end | ||
![]() |
3.102 | 197 | #if($item.opener) |
![]() |
3.78 | 198 | #set($discard = $newElem.put("data-opener", "true")) |
199 | #end | ||
![]() |
3.102 | 200 | #if($item.parent) |
![]() |
3.78 | 201 | #set($lastChild = "$key") |
202 | #elseif($lastChild != "") | ||
203 | #set($lastChild = "") | ||
204 | #createExpandEnd() | ||
205 | #end | ||
206 | #createFormElement($newElem) | ||
![]() |
3.102 | 207 | #if($item.opener) |
![]() |
3.78 | 208 | #createExpandStart($newElem $value) |
209 | #end | ||
![]() |
3.61 | 210 | #end |
211 | #end | ||
![]() |
1.1 | 212 | </div> |
213 | <div class="modal-footer"> | ||
![]() |
3.274 | 214 | <button type="button" class="btn btn-secondary" title="$services.localization.render("modal.close")" data-dismiss="modal">$services.localization.render("modal.close")</button> |
![]() |
3.78 | 215 | #createSubmit($submit) |
![]() |
1.1 | 216 | </div> |
217 | #createFormEnd($form_end) | ||
218 | </div> | ||
219 | </div> | ||
220 | </div> | ||
![]() |
3.303 | 221 | #end ## Hier een macro van maken: 'noInline' oid |
![]() |
3.301 | 222 | #elseif($xcontext.action == 'edit' && ($request.get('editor') == 'inline' || $request.get('section'))) |
![]() |
3.262 | 223 | <p>$services.localization.render("global.line.inline_noedit")</p> |
![]() |
3.207 | 224 | <ul> |
![]() |
3.262 | 225 | <li>[[$services.localization.render("global.line.edit_in_full")>>path:$doc.getURL('edit','editor=wysiwyg')]]</li> |
![]() |
3.279 | 226 | <li>[[$services.localization.render("core.viewers.comments.preview.button.back")>>$doc.fullName]]</li> |
![]() |
3.207 | 227 | </ul> |
![]() |
1.1 | 228 | #end |
![]() |
3.88 | 229 | #macro(createAddress $className $withLabel) |
![]() |
3.55 | 230 | #set($docObj = $doc.getObject($className)) |
![]() |
3.52 | 231 | #set($addressArray = ['pmStreet','pmHousenumber','pmPostcode','pmCity','pmState','pmCounty','pmCountry']) |
232 | #set($x = {}) | ||
233 | #foreach($datapart in $addressArray) | ||
![]() |
3.55 | 234 | #if($docObj.getProperty($datapart)) |
235 | #set($datapart4Publish = $docObj.getProperty($datapart).value) | ||
![]() |
3.52 | 236 | #if($datapart == 'pmCountry') |
237 | #set($datapart4Publish = $datapart4Publish.toUpperCase()) | ||
238 | #end | ||
239 | #set($discard = $x.put("$datapart", $datapart4Publish)) | ||
240 | #end | ||
241 | #end | ||
![]() |
3.91 | 242 | <div class="formElement"> |
![]() |
3.89 | 243 | #if($withLabel) |
![]() |
3.267 | 244 | <label>$services.localization.render("${subject}.classproperty.pmAddress.label")</label> |
![]() |
3.89 | 245 | #end |
![]() |
3.88 | 246 | <address> |
247 | $doc.getTitle()<br /> | ||
248 | $x['pmStreet'] $x['pmHousenumber']<br /> | ||
249 | $x['pmPostcode'] $x['pmCity']<br /> | ||
250 | $x['pmCounty'] $x['pmState']<br /> | ||
251 | $x['pmCountry'] | ||
252 | </address> | ||
![]() |
3.91 | 253 | </div> |
![]() |
3.52 | 254 | #end |
![]() |
1.1 | 255 | {{/html}} |
256 | {{/velocity}} |