opencontent/jcremoteid-ls

jcRemoteID Datatype (OpenContent Fork)

Installs: 2 901

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 7

Type:ezpublish-legacy-extension

1.0 2015-02-05 09:53 UTC

This package is auto-updated.

Last update: 2024-04-29 03:18:21 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