Skip to content

RemoteID datatype allowing object and note remote id

Notifications You must be signed in to change notification settings

okamosy/jcremoteid

 
 

Repository files navigation

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

About

RemoteID datatype allowing object and note remote id

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 78.0%
  • Smarty 22.0%