Rename getPropertyAndRemoveFromList() to pullProperty(). The original method remains in the code but marked deprecated.
This commit is contained in:
parent
d1d03fa40f
commit
0d7179d6f0
2 changed files with 5 additions and 5 deletions
|
@ -35,7 +35,7 @@
|
|||
</nav>
|
||||
|
||||
<#-- Email -->
|
||||
<#assign email = propertyGroups.getPropertyAndRemoveFromList("${core}email")!>
|
||||
<#assign email = propertyGroups.pullProperty("${core}email")!>
|
||||
<#if email?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||
<@p.addLinkWithLabel email editable />
|
||||
<#if email.statements?has_content> <#-- if there are any statements -->
|
||||
|
@ -51,7 +51,7 @@
|
|||
</#if>
|
||||
|
||||
<#-- Phone -->
|
||||
<#assign phone = propertyGroups.getPropertyAndRemoveFromList("${core}phoneNumber")!>
|
||||
<#assign phone = propertyGroups.pullProperty("${core}phoneNumber")!>
|
||||
<#if phone?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||
<@p.addLinkWithLabel phone editable />
|
||||
<#if phone.statements?has_content> <#-- if there are any statements -->
|
||||
|
@ -112,7 +112,7 @@
|
|||
</#if>
|
||||
|
||||
<#-- Positions -->
|
||||
<#assign positions = propertyGroups.getPropertyAndRemoveFromList("${core}personInPosition")!>
|
||||
<#assign positions = propertyGroups.pullProperty("${core}personInPosition")!>
|
||||
<#if positions?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||
<@p.objectPropertyListing positions editable />
|
||||
</#if>
|
||||
|
@ -122,7 +122,7 @@
|
|||
<#include "individual-overview.ftl">
|
||||
|
||||
<#-- Research Areas -->
|
||||
<#assign researchAreas = propertyGroups.getPropertyAndRemoveFromList("${core}hasResearchArea")!>
|
||||
<#assign researchAreas = propertyGroups.pullProperty("${core}hasResearchArea")!>
|
||||
<#if researchAreas?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||
<@p.objectPropertyListing researchAreas editable />
|
||||
</#if>
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
<#-- Overview on individual profile page -->
|
||||
|
||||
<#assign overview = propertyGroups.getPropertyAndRemoveFromList("${core}overview")!>
|
||||
<#assign overview = propertyGroups.pullProperty("${core}overview")!>
|
||||
<#if overview?has_content> <#-- true when the property is in the list, even if not populated (when editing) -->
|
||||
<@p.addLinkWithLabel overview editable />
|
||||
<#list overview.statements as statement>
|
||||
|
|
Loading…
Add table
Reference in a new issue