| 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/sites/all/modules/ctools/plugins/relationships/ |
Upload File : |
<?php
/**
* @file relationships/comment_parent.inc
* Plugin to provide a relationship handler for comment parent.
*/
/**
* Plugins are described by creating a $plugin array which will be used
* by the system that includes this file.
*/
$plugin = array(
'title' => t('Parent comment'),
'keyword' => 'parent_comment',
'description' => t('Adds a parent comment from a comment context.'),
'required context' => new ctools_context_required(t('Comment'), 'entity:comment'),
'context' => 'ctools_comment_parent_context',
);
/**
* Return a new context based on an existing context.
*/
function ctools_comment_parent_context($context, $conf) {
if (empty($context->data)) {
return ctools_context_create_empty('entity:comment');
}
if (isset($context->data->pid) && ($context->data->pid !== 0)) {
$parent_comment = comment_load($context->data->pid);
return ctools_context_create('entity:comment', $parent_comment);
}
}