Additional Freemarker functions for Journal
git-svn-id: https://svn.libreccm.org/ccm/trunk@6041 8810af33-2d31-482b-a856-94f89814c4dfmaster
parent
e9ea42047a
commit
9f2e1c8931
|
|
@ -7,11 +7,25 @@
|
||||||
|
|
||||||
<#import ../ccm-cms/content-item.ftl as ContentItem>
|
<#import ../ccm-cms/content-item.ftl as ContentItem>
|
||||||
|
|
||||||
<#function getTitle journal>
|
<#function getFirstYear(journal)>
|
||||||
<#return journal["./title"]>
|
<#return journal["./firstYear"]>
|
||||||
</#function>
|
</#function>
|
||||||
|
|
||||||
<#function getHref journal>
|
<#function getHref journal>
|
||||||
<#return ContentItem.generateContentItemLink(journal["./@oid"])>
|
<#return ContentItem.generateContentItemLink(journal["./@oid"])>
|
||||||
</#function>
|
</#function>
|
||||||
|
|
||||||
|
<#function getIssn journal>
|
||||||
|
<#return journal["./issn"]>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function getLastYear(journal)>
|
||||||
|
<#return journal["./lastYear"]>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
<#function getTitle journal>
|
||||||
|
<#return journal["./title"]>
|
||||||
|
</#function>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue