UUID Node Properties
Component ID
2143253
Component name
UUID Node Properties
Component type
module
Maintenance status
Development status
Component security advisory coverage
not-covered
Downloads
775
Component created
Component changed
Component body
Adds UUID support to node properties which depend on other entities. This attaches and saves these properties during node deployments using the Deploy module. This module should be enabled at both ends of the deployment.
Supported so far:
- Core Book module - obtains UUID values of book and parent nid
- Redirect module - adds UUID values to redirects, and attaches any associated redirects to node on node deployment.
Notes:
function mymodule_form_node_form_alter(&$form, &$form_state, $form_id) {
if(module_exists('deploy_managed_ui')) {
$plans = deploy_manager_plan_get_options();
if (count($plans)) {
$form['deploy_managed_ui']['plans']['#default_value'] = array_keys($plans);
}
}
