Popravilo nastavitve stanja moderacije.
parent
350256a853
commit
695d06da33
|
@ -130,13 +130,13 @@ function _yufu_admin_concept_drafted_mail(NodeInterface $node) {
|
||||||
if ($node->isNew()) {
|
if ($node->isNew()) {
|
||||||
$params['message'] = t('New concept created: @title - @url', [
|
$params['message'] = t('New concept created: @title - @url', [
|
||||||
'@title' => $node->getTitle(),
|
'@title' => $node->getTitle(),
|
||||||
'@url' => !$node->isNew() ? $node?->toUrl()?->toString() : '',
|
'@url' => '',
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$params['message'] = t('New changes to concept proposed: @title - @url', [
|
$params['message'] = t('New changes to concept proposed: @title - @url', [
|
||||||
'@title' => $node->getTitle(),
|
'@title' => $node->getTitle(),
|
||||||
'@url' => !$node->isNew() ? $node?->toUrl()?->toString() : '',
|
'@url' => $node?->toUrl()?->toString(),
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
$params['node_title'] = $node->getTitle();
|
$params['node_title'] = $node->getTitle();
|
||||||
|
|
|
@ -12,6 +12,7 @@ use Drupal\rest\ResourceResponse;
|
||||||
use Psr\Log\LogLevel;
|
use Psr\Log\LogLevel;
|
||||||
use Psr\Log\LoggerInterface;
|
use Psr\Log\LoggerInterface;
|
||||||
use Symfony\Component\DependencyInjection\ContainerInterface;
|
use Symfony\Component\DependencyInjection\ContainerInterface;
|
||||||
|
use Symfony\Component\HttpFoundation\JsonResponse;
|
||||||
use Symfony\Component\HttpFoundation\Request;
|
use Symfony\Component\HttpFoundation\Request;
|
||||||
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException;
|
||||||
|
|
||||||
|
@ -125,9 +126,8 @@ class AddConcept extends ResourceBase {
|
||||||
$concept->set('body', $data['text'] ?? $concept->body->value);
|
$concept->set('body', $data['text'] ?? $concept->body->value);
|
||||||
$concept->isDefaultRevision(FALSE);
|
$concept->isDefaultRevision(FALSE);
|
||||||
$concept->setRevisionLogMessage('New revision by concept endpoint.');
|
$concept->setRevisionLogMessage('New revision by concept endpoint.');
|
||||||
$concept->moderation_state->target_id = 'draft';
|
$concept->set('moderation_state', 'draft');
|
||||||
$concept->set('status', 0);
|
$concept->set('status', 0);
|
||||||
$concept->setUnpublished();
|
|
||||||
$concept->save();
|
$concept->save();
|
||||||
$this->logger->notice('New concept @title revision @revid created by uid @uid.', [
|
$this->logger->notice('New concept @title revision @revid created by uid @uid.', [
|
||||||
'@title' => $concept->getTitle(),
|
'@title' => $concept->getTitle(),
|
||||||
|
@ -163,7 +163,8 @@ class AddConcept extends ResourceBase {
|
||||||
'revision_uid' => $concept->getRevisionUserId(),
|
'revision_uid' => $concept->getRevisionUserId(),
|
||||||
'uid' => $concept->uid->target_id,
|
'uid' => $concept->uid->target_id,
|
||||||
];
|
];
|
||||||
$response = new ResourceResponse($response_status);
|
// $response = new ResourceResponse($response_status);
|
||||||
|
$response = new JsonResponse($response_status);
|
||||||
return $response;
|
return $response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -182,7 +183,8 @@ class AddConcept extends ResourceBase {
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
$node_storage = $this->entityTypeManager->getStorage('node');
|
$node_storage = $this->entityTypeManager->getStorage('node');
|
||||||
if ($concept = end($node_storage->loadByProperties(['uuid' => $uuid]))) {
|
$concepts = $node_storage->loadByProperties(['uuid' => $uuid]);
|
||||||
|
if ($concept = end($concepts)) {
|
||||||
return $concept;
|
return $concept;
|
||||||
}
|
}
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
Loading…
Reference in New Issue