jcRemoteID 数据类型(OpenContent 分支)

安装次数: 3,639

依赖项: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 7

类型:ezpublish-legacy-extension

1.0 2015-02-05 09:53 UTC

This package is auto-updated.

Last update: 2024-08-29 04:09:08 UTC


README

jcRemoteID is an extension allowing user to manage Object RemoteID
and Nodes RemoteID directly from edit mode with a datatype or with
a custom module/view (remoteid/update/<NodeID>) available from
context menu (main one, on full view)


This extension has been created to avoid the use of nodeID or
objectID within configuration (any ini) and also override.ini
(not documented but override are working on remote id condition).

The main interest of this is to be able to manage the same remote
id between multiple environments (dev, test, production) for nodes
or objects (when object id or node id are auto increment).

-- Using Remote ID in fetch --

{def $object=fetch('content','object',hash('remote_id','MYOBJECT'))}
{def $node=fetch('content','node',hash('remote_id','MYNODE'))}


-- Using Remote ID in override --

[full_myobject]
Source=node/view/full
Subdir=templates
MatchFile=node/view/full/myobject.tpl
Match[remode_id]=MYOBJECT


[full_mynode]
Source=node/view/full
Subdir=templates
MatchFile=node/view/full/mynode.tpl
Match[node_remode_id]=MYNODE


[full_mynode_children]
Source=node/view/full
Subdir=templates
MatchFile=node/view/full/mynode_child.tpl
Match[parent_node_remode_id]=MYNODE

[full_myobject_children]
Source=node/view/full
Subdir=templates
MatchFile=node/view/full/myobject_child.tpl
Match[parent_object_remode_id]=MYOBJECT