| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/inetpub/wwwroot/business/pms/modules/ctools/plugins/relationships/ |
Upload File : |
<?php
/**
* @file
* Plugin to provide an relationship handler for term from node.
*/
/**
* Plugins are described by creating a $plugin array which will be used
* by the system that includes this file.
*/
$plugin = array(
'title' => t('Node edit form from node'),
'keyword' => 'node_form',
'description' => t('Adds node edit form from a node context.'),
'required context' => new ctools_context_required(t('Node'), 'node'),
'context' => 'ctools_node_edit_form_from_node_context',
'settings form' => 'ctools_node_edit_form_from_node_settings_form',
);
/**
* Return a new context based on an existing context.
*/
function ctools_node_edit_form_from_node_context($context, $conf) {
if (empty($context->data)) {
return ctools_context_create_empty('node_edit_form', NULL);
}
if (isset($context->data->nid)) {
return ctools_context_create('node_edit_form', $context->data);
}
}
/**
* Settings form for the relationship.
*/
function ctools_node_edit_form_from_node_settings_form($conf) {
// This function intentionally left blank.
}