@bluegeek9,
I have a paragraph with an charts field attached.
If I create a charts paragraph, I need an extra checkbox on the charts general form. The one, where you select the charts type and you fill the table with the charts data.
I wan't to use drilldowns and race charts - and to write my own charts_alter, I need those extra checkboxes ("use drilldown", "use race").
For me it seems that right now we can only add those checkboxes by patching the module. This is not really a good approach and maybe other need to add different fields in the future?
So, it would be nice to be able to alter the charts input form to add additional fields.
I were able to solve the problems in Drupal 10.4 by
1. Adding patch from
https://www.drupal.org/files/issues/2022-11-23/3323324-3.patch →
2. Changing docroot/modules/contrib/one_time_login_link_admin/src/Plugin/Action/OneTimeLoginLinkGenerate.php adding:
$instance->mailManager = $container->get('plugin.manager.mail');
namespace Drupal\one_time_login_link_admin\Plugin\Action;
use Drupal\Core\Action\ActionBase;
use Drupal\Core\Session\AccountInterface;
use Drupal\Core\Plugin\ContainerFactoryPluginInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\one_time_login_link_admin\Controller\OneTimeLoginLinkController;
/**
* Provides an action for admin to generate login links.
*
* @Action(
* id = "one_time_login_link_admin_bulk_generate",
* label = @Translation("Generate One Time Login Links"),
* type = "user",
* category = @Translation("User")
* )
*/
class OneTimeLoginLinkGenerate extends ActionBase implements ContainerFactoryPluginInterface
{
/**
* Date time formatter service.
*
* @var \Drupal\Core\Datetime\DateFormatter
*
*
* @param \Drupal\Core\Mail\MailManagerInterface $mail_manager
* The mail manager service.
*/
protected $dateFormatter;
protected $mailManager;
/**
* {@inheritdoc}
*/
public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition)
{
$instance = new static($configuration, $plugin_id, $plugin_definition);
$instance->dateFormatter = $container->get('date.formatter');
$instance->mailManager = $container->get('plugin.manager.mail');
return $instance;
}
/**
* {@inheritdoc}
*/
public function access($user, AccountInterface $account = NULL, $return_as_object = FALSE)
{
return $account->hasPermission('administer users');
}
/**
* {@inheritdoc}
*/
public function execute($user = NULL)
{
$one_time_login_link_controller = new OneTimeLoginLinkController($this->dateFormatter, $this->mailManager);
$one_time_login_link_controller->generateLoginLink($user);
}
}
I get errors trying to create bulk login links. First error was
Error: Call to a member function isAllowed() on bool in Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessor->process() (Zeile 422 in /docroot/modules/contrib/views_bulk_operations/src/Service/ViewsBulkOperationsActionProcessor.php).
Details:
#0 /docroot/modules/contrib/views_bulk_operations/src/ViewsBulkOperationsBatch.php(106): Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessor->process()
#1 /docroot/core/includes/batch.inc(297): Drupal\views_bulk_operations\ViewsBulkOperationsBatch::operation()
#2 /docroot/core/includes/batch.inc(139): _batch_process()
#3 /docroot/core/includes/batch.inc(95): _batch_do()
#4 /docroot/core/modules/system/src/Controller/BatchController.php(52): _batch_page()
#5 [internal function]: Drupal\system\Controller\BatchController->batchPage()
#6 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(123): call_user_func_array()
#7 /docroot/core/lib/Drupal/Core/Render/Renderer.php(638): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#8 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(124): Drupal\Core\Render\Renderer->executeInRenderContext()
#9 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(97): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext()
#10 /vendor/symfony/http-kernel/HttpKernel.php(181): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#11 /vendor/symfony/http-kernel/HttpKernel.php(76): Symfony\Component\HttpKernel\HttpKernel->handleRaw()
#12 /docroot/core/lib/Drupal/Core/StackMiddleware/Session.php(53): Symfony\Component\HttpKernel\HttpKernel->handle()
#13 /docroot/core/lib/Drupal/Core/StackMiddleware/KernelPreHandle.php(48): Drupal\Core\StackMiddleware\Session->handle()
#14 /docroot/core/lib/Drupal/Core/StackMiddleware/ContentLength.php(28): Drupal\Core\StackMiddleware\KernelPreHandle->handle()
#15 /docroot/core/modules/big_pipe/src/StackMiddleware/ContentLength.php(32): Drupal\Core\StackMiddleware\ContentLength->handle()
#16 /docroot/core/modules/page_cache/src/StackMiddleware/PageCache.php(116): Drupal\big_pipe\StackMiddleware\ContentLength->handle()
#17 /docroot/core/modules/page_cache/src/StackMiddleware/PageCache.php(90): Drupal\page_cache\StackMiddleware\PageCache->pass()
#18 /docroot/core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php(48): Drupal\page_cache\StackMiddleware\PageCache->handle()
#19 /docroot/core/lib/Drupal/Core/StackMiddleware/NegotiationMiddleware.php(51): Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle()
#20 /docroot/core/lib/Drupal/Core/StackMiddleware/AjaxPageState.php(36): Drupal\Core\StackMiddleware\NegotiationMiddleware->handle()
#21 /docroot/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(51): Drupal\Core\StackMiddleware\AjaxPageState->handle()
#22 /docroot/core/lib/Drupal/Core/DrupalKernel.php(741): Drupal\Core\StackMiddleware\StackedHttpKernel->handle()
#23 /docroot/index.php(19): Drupal\Core\DrupalKernel->handle()
#24 {main}
I think I was able to solve this by using patch from https://www.drupal.org/files/issues/2022-11-23/3323324-3.patch →
But now I get an additional error:
ArgumentCountError: Too few arguments to function Drupal\one_time_login_link_admin\Controller\OneTimeLoginLinkController::__construct(), 1 passed in /docroot/modules/contrib/one_time_login_link_admin/src/Plugin/Action/OneTimeLoginLinkGenerate.php on line 55 and exactly 2 expected in Drupal\one_time_login_link_admin\Controller\OneTimeLoginLinkController->__construct() (Zeile 46 in /docroot/modules/contrib/one_time_login_link_admin/src/Controller/OneTimeLoginLinkController.php).
Details:
#0 /docroot/modules/contrib/one_time_login_link_admin/src/Plugin/Action/OneTimeLoginLinkGenerate.php(55): Drupal\one_time_login_link_admin\Controller\OneTimeLoginLinkController->__construct()
#1 /docroot/core/lib/Drupal/Core/Action/ActionBase.php(22): Drupal\one_time_login_link_admin\Plugin\Action\OneTimeLoginLinkGenerate->execute()
#2 /docroot/modules/contrib/views_bulk_operations/src/Service/ViewsBulkOperationsActionProcessor.php(447): Drupal\Core\Action\ActionBase->executeMultiple()
#3 /docroot/modules/contrib/views_bulk_operations/src/ViewsBulkOperationsBatch.php(106): Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessor->process()
#4 /docroot/core/includes/batch.inc(297): Drupal\views_bulk_operations\ViewsBulkOperationsBatch::operation()
#5 /docroot/core/includes/batch.inc(139): _batch_process()
#6 /docroot/core/includes/batch.inc(95): _batch_do()
#7 /docroot/core/modules/system/src/Controller/BatchController.php(52): _batch_page()
#8 [internal function]: Drupal\system\Controller\BatchController->batchPage()
#9 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(123): call_user_func_array()
#10 /docroot/core/lib/Drupal/Core/Render/Renderer.php(638): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#11 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(124): Drupal\Core\Render\Renderer->executeInRenderContext()
#12 /docroot/core/lib/Drupal/Core/EventSubscriber/EarlyRenderingControllerWrapperSubscriber.php(97): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext()
#13 /vendor/symfony/http-kernel/HttpKernel.php(181): Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}()
#14 /vendor/symfony/http-kernel/HttpKernel.php(76): Symfony\Component\HttpKernel\HttpKernel->handleRaw()
#15 /docroot/core/lib/Drupal/Core/StackMiddleware/Session.php(53): Symfony\Component\HttpKernel\HttpKernel->handle()
#16 /docroot/core/lib/Drupal/Core/StackMiddleware/KernelPreHandle.php(48): Drupal\Core\StackMiddleware\Session->handle()
#17 /docroot/core/lib/Drupal/Core/StackMiddleware/ContentLength.php(28): Drupal\Core\StackMiddleware\KernelPreHandle->handle()
#18 /docroot/core/modules/big_pipe/src/StackMiddleware/ContentLength.php(32): Drupal\Core\StackMiddleware\ContentLength->handle()
#19 /docroot/core/modules/page_cache/src/StackMiddleware/PageCache.php(116): Drupal\big_pipe\StackMiddleware\ContentLength->handle()
#20 /docroot/core/modules/page_cache/src/StackMiddleware/PageCache.php(90): Drupal\page_cache\StackMiddleware\PageCache->pass()
#21 /docroot/core/lib/Drupal/Core/StackMiddleware/ReverseProxyMiddleware.php(48): Drupal\page_cache\StackMiddleware\PageCache->handle()
#22 /docroot/core/lib/Drupal/Core/StackMiddleware/NegotiationMiddleware.php(51): Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle()
#23 /docroot/core/lib/Drupal/Core/StackMiddleware/AjaxPageState.php(36): Drupal\Core\StackMiddleware\NegotiationMiddleware->handle()
#24 /docroot/core/lib/Drupal/Core/StackMiddleware/StackedHttpKernel.php(51): Drupal\Core\StackMiddleware\AjaxPageState->handle()
#25 /docroot/core/lib/Drupal/Core/DrupalKernel.php(741): Drupal\Core\StackMiddleware\StackedHttpKernel->handle()
#26 /docroot/index.php(19): Drupal\Core\DrupalKernel->handle()
#27 {main}
I am using
- Drupal 10.4.3
- views_bulk_operations 4.3.3
- one_time_login_link_admin 1.0.8
Nice! Patch is still appliying. Shouldn't this be merged into the module itself?
@feng-shui,
should your patch still work for Drupal 10.4 and filefield_paths 8.x-1.0-beta8?
The patch still applies - but it seems to be ignored on my media migrations.
I tried to debug and it seems that function filefield_paths_entity_update() from filefield_paths.module is not called?!
This is a nice and easy fix. Will this be committed to the module?
Thanx @a.dmitriiev - that helps a lot!
Seems I had some crazy network issues. Migration works as it should.
I can confirm that also the MR https://git.drupalcode.org/project/drupal/-/merge_requests/10896.diff solves the error regarding "Drupal\Core\Database\TransactionNameNonUniqueException" on group relationship migrations.
@elimw: is your MR a replacement or an addition for MR 10859 ?
@dydave -After upgrading to current Drupal core 10.4.1 patch from MR (https://git.drupalcode.org/project/drupal/-/merge_requests/10859.diff) applied and - what great news - solved the error on running my migration ;-)
So, I can confirm that the MR solves the error regarding "Drupal\Core\Database\TransactionNameNonUniqueException" on group relationship migrations.
@dydave - I found a backtrace in Watchdog. Is this helpfull? I am still on Drupal 10.4 by the way!! Error appears when trying to migrate Group User Relations with drush migrate:
Drupal\Core\Database\TransactionNameNonUniqueException: A transaction named mimic_implicit_commit is already in use. Active stack: 677fb68df0dbc1.32969210\drupal_transaction > 677fb68df23611.91989256\mimic_implicit_commit in Drupal\Core\Database\Transaction\TransactionManagerBase->push() (Zeile 254 in /data/html/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php).
#0 /data/html/docroot/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php(558): Drupal\Core\Database\Transaction\TransactionManagerBase->push()
#1 /data/html/docroot/core/modules/pgsql/src/Driver/Database/pgsql/Connection.php(431): Drupal\pgsql\Driver\Database\pgsql\Connection->startTransaction()
#2 /data/html/docroot/core/modules/pgsql/src/Driver/Database/pgsql/Schema.php(149): Drupal\pgsql\Driver\Database\pgsql\Connection->addSavepoint()
#3 /data/html/docroot/core/modules/pgsql/src/Driver/Database/pgsql/Upsert.php(35): Drupal\pgsql\Driver\Database\pgsql\Schema->queryTableInformation()
#4 /data/html/docroot/core/lib/Drupal/Core/Cache/DatabaseBackend.php(312): Drupal\pgsql\Driver\Database\pgsql\Upsert->execute()
#5 /data/html/docroot/core/lib/Drupal/Core/Cache/DatabaseBackend.php(227): Drupal\Core\Cache\DatabaseBackend->doSetMultiple()
#6 /data/html/docroot/core/lib/Drupal/Core/Cache/DatabaseBackend.php(215): Drupal\Core\Cache\DatabaseBackend->setMultiple()
#7 /data/html/docroot/core/lib/Drupal/Core/Cache/VariationCache.php(176): Drupal\Core\Cache\DatabaseBackend->set()
#8 /data/html/docroot/modules/contrib/flexible_permissions/src/ChainPermissionCalculator.php(172): Drupal\Core\Cache\VariationCache->set()
#9 /data/html/docroot/modules/contrib/group/src/Access/GroupPermissionCalculator.php(39): Drupal\flexible_permissions\ChainPermissionCalculator->calculatePermissions()
#10 /data/html/docroot/modules/contrib/group/src/QueryAccess/GroupQueryAlter.php(40): Drupal\group\Access\GroupPermissionCalculator->calculateFullPermissions()
#11 /data/html/docroot/modules/contrib/group/src/QueryAccess/QueryAlterBase.php(143): Drupal\group\QueryAccess\GroupQueryAlter->doAlter()
#12 /data/html/docroot/modules/contrib/group/group.module(333): Drupal\group\QueryAccess\QueryAlterBase->alter()
#13 /data/html/docroot/core/lib/Drupal/Core/Extension/ModuleHandler.php(552): group_query_entity_query_alter()
#14 /data/html/docroot/core/lib/Drupal/Core/Database/Query/Select.php(494): Drupal\Core\Extension\ModuleHandler->alter()
#15 /data/html/docroot/core/lib/Drupal/Core/Database/Query/Select.php(519): Drupal\Core\Database\Query\Select->preExecute()
#16 /data/html/docroot/core/modules/pgsql/src/Driver/Database/pgsql/Select.php(157): Drupal\Core\Database\Query\Select->execute()
#17 /data/html/docroot/core/lib/Drupal/Core/Entity/Query/Sql/Query.php(272): Drupal\pgsql\Driver\Database\pgsql\Select->execute()
#18 /data/html/docroot/core/lib/Drupal/Core/Entity/Query/Sql/Query.php(85): Drupal\Core\Entity\Query\Sql\Query->result()
#19 /data/html/docroot/core/lib/Drupal/Core/Entity/Plugin/EntityReferenceSelection/DefaultSelection.php(401): Drupal\Core\Entity\Query\Sql\Query->execute()
#20 /data/html/docroot/core/lib/Drupal/Core/Entity/Plugin/Validation/Constraint/ValidReferenceConstraintValidator.php(133): Drupal\Core\Entity\Plugin\EntityReferenceSelection\DefaultSelection->validateReferenceableEntities()
#21 /data/html/docroot/core/lib/Drupal/Core/TypedData/Validation/RecursiveContextualValidator.php(202): Drupal\Core\Entity\Plugin\Validation\Constraint\ValidReferenceConstraintValidator->validate()
#22 /data/html/docroot/core/lib/Drupal/Core/TypedData/Validation/RecursiveContextualValidator.php(154): Drupal\Core\TypedData\Validation\RecursiveContextualValidator->validateConstraints()
#23 /data/html/docroot/core/lib/Drupal/Core/TypedData/Validation/RecursiveContextualValidator.php(164): Drupal\Core\TypedData\Validation\RecursiveContextualValidator->validateNode()
#24 /data/html/docroot/core/lib/Drupal/Core/TypedData/Validation/RecursiveContextualValidator.php(106): Drupal\Core\TypedData\Validation\RecursiveContextualValidator->validateNode()
#25 /data/html/docroot/core/lib/Drupal/Core/TypedData/Validation/RecursiveValidator.php(93): Drupal\Core\TypedData\Validation\RecursiveContextualValidator->validate()
#26 /data/html/docroot/core/lib/Drupal/Core/TypedData/TypedData.php(132): Drupal\Core\TypedData\Validation\RecursiveValidator->validate()
#27 /data/html/docroot/core/lib/Drupal/Core/Entity/ContentEntityBase.php(518): Drupal\Core\TypedData\TypedData->validate()
#28 /data/html/docroot/modules/contrib/group/src/Entity/GroupMembershipTrait.php(25): Drupal\Core\Entity\ContentEntityBase->validate()
#29 /data/html/docroot/core/lib/Drupal/Core/Entity/EntityStorageBase.php(528): Drupal\group\Entity\GroupMembership->preSave()
#30 /data/html/docroot/core/lib/Drupal/Core/Entity/ContentEntityStorageBase.php(753): Drupal\Core\Entity\EntityStorageBase->doPreSave()
#31 /data/html/docroot/core/lib/Drupal/Core/Entity/EntityStorageBase.php(483): Drupal\Core\Entity\ContentEntityStorageBase->doPreSave()
#32 /data/html/docroot/core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php(806): Drupal\Core\Entity\EntityStorageBase->save()
#33 /data/html/docroot/core/lib/Drupal/Core/Entity/EntityBase.php(354): Drupal\Core\Entity\Sql\SqlContentEntityStorage->save()
#34 /data/html/docroot/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php(237): Drupal\Core\Entity\EntityBase->save()
#35 /data/html/docroot/core/modules/migrate/src/Plugin/migrate/destination/EntityContentBase.php(175): Drupal\migrate\Plugin\migrate\destination\EntityContentBase->save()
#36 /data/html/docroot/core/modules/migrate/src/MigrateExecutable.php(248): Drupal\migrate\Plugin\migrate\destination\EntityContentBase->import()
#37 /data/html/vendor/drush/drush/includes/drush.inc(62): Drupal\migrate\MigrateExecutable->import()
#38 /data/html/vendor/drush/drush/includes/drush.inc(53): drush_call_user_func_array()
#39 /data/html/docroot/modules/contrib/migrate_tools/src/Drush/Commands/MigrateToolsCommands.php(1074): drush_op()
#40 /data/html/docroot/modules/contrib/migrate_tools/src/Drush/Commands/MigrateToolsCommands.php(483): Drupal\migrate_tools\Drush\Commands\MigrateToolsCommands->executeMigration()
#41 [internal function]: Drupal\migrate_tools\Drush\Commands\MigrateToolsCommands->import()
#42 /data/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(276): call_user_func_array()
#43 /data/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(212): Consolidation\AnnotatedCommand\CommandProcessor->runCommandCallback()
#44 /data/html/vendor/consolidation/annotated-command/src/CommandProcessor.php(176): Consolidation\AnnotatedCommand\CommandProcessor->validateRunAndAlter()
#45 /data/html/vendor/consolidation/annotated-command/src/AnnotatedCommand.php(391): Consolidation\AnnotatedCommand\CommandProcessor->process()
#46 /data/html/vendor/symfony/console/Command/Command.php(326): Consolidation\AnnotatedCommand\AnnotatedCommand->execute()
#47 /data/html/vendor/symfony/console/Application.php(1096): Symfony\Component\Console\Command\Command->run()
#48 /data/html/vendor/symfony/console/Application.php(324): Symfony\Component\Console\Application->doRunCommand()
#49 /data/html/vendor/symfony/console/Application.php(175): Symfony\Component\Console\Application->doRun()
#50 /data/html/vendor/drush/drush/src/Runtime/Runtime.php(110): Symfony\Component\Console\Application->run()
#51 /data/html/vendor/drush/drush/src/Runtime/Runtime.php(40): Drush\Runtime\Runtime->doRun()
#52 /data/html/vendor/drush/drush/drush.php(139): Drush\Runtime\Runtime->run()
#53 /data/html/vendor/drush/drush/drush(4): require('/data/html/docr...')
#54 /data/html/vendor/bin/drush(119): include('/data/html/docr...')
#55 {main}
@dydave - is your MR expected to also solve the error on
Drupal\Core\Database\TransactionNameNonUniqueException
mentioned in #36 and #43?
I see the same error after upgrading groups module and trying to migrate user realationship.
[error] Drupal\Core\Database\TransactionNameNonUniqueException: A transaction named mimic_implicit_commit is already in use. Active stack: 677fe54f644a06.04798895\drupal_transaction > 677fe54f67f767.51173260\mimic_implicit_commit in Drupal\Core\Database\Transaction\TransactionManagerBase->push() (line 254 of /var/www/docroot/core/lib/Drupal/Core/Database/Transaction/TransactionManagerBase.php).
I tried patch from #37 - but this does not solve the error for me.
Thanx, for me the problem is also solved.
Hi, a little bit late - but can you check if the CSS is loaded if you disable the css/js aggreagtion on "performance settings" dialog? I think, I run in the same problem ...
@naveenvalecha,
after using your latest patch #50 I get an error on editiong and creating new group notifications:
Error: Call to undefined method Drupal\group\Entity\GroupRole::isInternal()
The full message is:
The website encountered an unexpected error. Try again later.
Error: Call to undefined method Drupal\group\Entity\GroupRole::isInternal() in Drupal\content_moderation_notifications\Form\ContentModerationNotificationsFormBase::Drupal\content_moderation_notifications\Form\{closure}() (line 251 of modules/contrib/content_moderation_notifications/src/Form/ContentModerationNotificationsFormBase.php).
array_filter() (Line: 252)
Drupal\content_moderation_notifications\Form\ContentModerationNotificationsFormBase->buildForm()
call_user_func_array() (Line: 536)
Drupal\Core\Form\FormBuilder->retrieveForm() (Line: 284)
Drupal\Core\Form\FormBuilder->buildForm() (Line: 97)
Drupal\autosave_form\Form\AutosaveFormBuilder->buildForm() (Line: 73)
Drupal\Core\Controller\FormController->getContentResult()
call_user_func_array() (Line: 123)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 638)
Drupal\Core\Render\Renderer->executeInRenderContext() (Line: 124)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->wrapControllerExecutionInRenderContext() (Line: 97)
Drupal\Core\EventSubscriber\EarlyRenderingControllerWrapperSubscriber->Drupal\Core\EventSubscriber\{closure}() (Line: 181)
Symfony\Component\HttpKernel\HttpKernel->handleRaw() (Line: 76)
Symfony\Component\HttpKernel\HttpKernel->handle() (Line: 53)
Drupal\Core\StackMiddleware\Session->handle() (Line: 48)
Drupal\Core\StackMiddleware\KernelPreHandle->handle() (Line: 28)
Drupal\Core\StackMiddleware\ContentLength->handle() (Line: 32)
Drupal\big_pipe\StackMiddleware\ContentLength->handle() (Line: 116)
Drupal\page_cache\StackMiddleware\PageCache->pass() (Line: 90)
Drupal\page_cache\StackMiddleware\PageCache->handle() (Line: 48)
Drupal\Core\StackMiddleware\ReverseProxyMiddleware->handle() (Line: 51)
Drupal\Core\StackMiddleware\NegotiationMiddleware->handle() (Line: 36)
Drupal\Core\StackMiddleware\AjaxPageState->handle() (Line: 51)
Drupal\Core\StackMiddleware\StackedHttpKernel->handle() (Line: 741)
Drupal\Core\DrupalKernel->handle() (Line: 19)
Hi @ptmkenny,
thank you for your feedback. Can you please check
/adminbereich/content/files
/adminbereich/content/media
Do you need to enable "use admin theme" in those views or do they work with there original path containing /admin ?
@shubham_pareek_19, I think I am not allowed to grant credits - as I am not a maintainer
From my point of view this can be merged. Anything I can do? Should I change the the status?
@shubham_pareek_19,
looks good for me. The only question: do we need the quotes for the other cases on numbers? Or can we keep this consitent with the new case 0 ?
As a workaround for Gin users:
create file /sites/default/files/gin-custom.css with
#mm-0.mm-slideout {
padding-top: 0 !important;
}
This file is automatically loaded by Gin - and only if you are logged in.
As there seems to be no contrib module for sending comment notifications to group members, I will use a custom hook
Hi @jnicola, were you able to reproduce the problems - or is this a local one on my side?
Hello @vinayakmk47,
thank you for your detailed explanation. That helps a lot ;-)
I thought, that the global permission will still work as I thought, that users are not allowed to edit nodes if using group access ...
Hi @jnicola,
this is what I did:
- Create new empty Mysql database
- Install Drupal 10:
composer create-project drupal/recommended-project:10.3.8 simplegroup
- Add repository to composer.json
{ "type": "vcs", "url": "https://git.drupalcode.org/project/simple_grouped_content.git" }
- Allow dev/alpha modules:
composer config minimum-stability dev composer config prefer-stable true
- Add simple_grouped_content:
composer require drupal/simple_grouped_content
- Run installer in webbrowser:
http://simplegroup.local/core/install.php
- Add database settings to installer
Install fails with
An AJAX HTTP error occurred.
HTTP Result Code: 200
Debugging information follows.
Path: /core/install.php?rewrite=ok&profile=simple_grouped_content&langcode=en&id=1&op=do_nojs&op=do
StatusText: OK
ResponseText: Drupal\Core\Entity\EntityMalformedException: All group roles require a scope. in Drupal\group\Entity\GroupRole->preSave() (line 341 of /var/www/html/simplegroup/web/modules/contrib/group/src/Entity/GroupRole.php).
I tried with Drupal 10.0, 10.2 and 10.3
@aleix,
should your hook work with group 3.3.x version? For me it seems that the group ID is not available within media library ...
I am using:
- group: 3.3.0
- group media: 4.0.3
- media_library: 10.3.8
Hi, I tried the above installation with Drupal 10.3 and simple_grouped_content 2.0-alpha1
Should I try the 1.2.x version instead?
@jnicola, can you tell me which Drupal version you last used to install the environment? Drupal 9, 10.0, 10.1, ...?
And, which group version was used in your initial local install?
I needed to use
composer config minimum-stability dev
composer config prefer-stable true
to install the 2.0-alpha1
+ group 3.3 is the recommended version on new installs - should simple_groupd_content work also with th 3.x branch of group?
Hi, trying to use command from project page
composer require drupal/simple_grouped_content
results in
Could not find a matching version of package drupal/simple_grouped_content. Check the package spelling, your version constraint and that the package is available in a stability which matches your minimum-stability (stable)
Hi @dww,
can you explain why you use "User ID from route context" as contextual filter - instead of using "Group Ids from current user".
I am still searching for a better group management. If I don't find existing stuff (as a distribution) I will setup all needed views on my own.
And I want to use the best performing approach ;-)
Hi, I try to get gulp running on a Mac M3. I tried the old approach using patch from #2. But I can't get it to work.
Can anyone give a quick step by step on how to make gulp work on a Mac with M3 processor?
NPM version?
NODE version?
Python version?
...
Thank you so much!
Same problem here. Seems, like the fix from MR solves the problem. Will this be merged soon?
Thanx @drubb,
that helps and solves the problem for me ;-)
Thanx @damienmckenna
This is a really old issue, but can we add #access = false on field_meta_tags which is a container? Or will this remove all field-data within that group if a user edits node with the access=false set?
I found a possible solution: instead of using hook_form_alter() I can add a description using hookp_reprocess_details(&$variables)
/**
* Implements hook_preprocess_HOOK().
*/
function mymodule_preprocess_details(&$variables)
{
if (isset($variables["element"]["#id"]) && $variables["element"]["#id"] == 'edit-scheduler-settings') {
$variables["description"] = 'Info when cronjobs are about to run';
}
}
Hi Daniel,
if it helps: I found a second problem with Gin, Content Moderation and editing existing nodes. I where able to fix using
https://www.drupal.org/files/issues/2021-12-27/2991986-16.patch →
from
https://www.drupal.org/project/drupal/issues/3358471
🐛
TypeError: Cannot access offset of type string on string
Active
Besides this current Gin version now works fine for me
I see the same problem if I combine content moderation and Gin theme. After latest update and using PHP 8.1 I can't save any existing content anymore. Using patch from #9 solves the issue for me.
Using Claro instead of Gin works without any problems
Using Gin without content moderation also works
So, it seems to be the combination.
I don't know if this is the correct fix - as there are no problems with other themes like Clar0. But https://www.drupal.org/files/issues/2021-12-27/2991986-16.patch → from https://www.drupal.org/project/drupal/issues/3358471#comment-15038304 🐛 TypeError: Cannot access offset of type string on string Active (patching core WidgetBase.php) seems to solve my problem.
vistree → created an issue.
Hi @daniel.bosen,
this does perfectly work!! I did absolutly didn't know about the composer "as" option. Very cool. Thanx!
Should I close this issue or do you want it to stay for upcoming update of Gin within thunder-distribution?
Same problem here - you can only subscribe to "forum" if you go to the related taxonomy page ...
Sorry, I don't see the error. Maybe it is related to parent::fetchNextRow(); ??
@anybody - for my understanding: currently the non-vue version is used in Drupal cookies module, right?
I am not javascript / vue developer. So I don't know if I am the right person to create a fork. Sure, I can remove all the _blank values. I will try to contact jfeltkamp
We have the same problem with the library - _blank should not be used on accessible websites.
As both projects (vue and non-vue) are on github - can't we just fork them? For the non-vue version, there is a License.txt and it seems to be OK to fork as long we keep correct attribution.
/** @license CookieJSR v1.0.10
* cookiejsr.min.js
* cookiejsr.min.css
*
* Copyright (c) Joachim Feltkamp, Hamburg, Germany.
*
* This source code is licensed under the CC BY-ND license found in the
* LICENSE file in the root directory of this source tree.
*/
Source code is licensed under the CC BY-ND license.
Creative Commons Attribution-NoDerivs 3.0 Germany License.
https://creativecommons.org/licenses/by-nd/3.0/de/
You are free to:
Share — copy and redistribute the material in any medium or format
for any purpose, even commercially.
The licensor cannot revoke these freedoms as long as you follow the license terms.
Under the following terms:
Attribution — You must give appropriate credit, provide a link to the license, and indicate if changes were made.
You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
NoDerivatives — If you remix, transform, or build upon the material, you may not distribute the modified material.
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others
from doing anything the license permits.
Notices:
You do not have to comply with the license for elements of the material in the public domain or where your use is
permitted by an applicable exception or limitation.
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For
example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
On Drupal > 10.2 the patch from #13 brings an error when running drush updb:
Drupal\content_translation\Plugin\views\filter\UnTranslated::operators() must be public
Attached find a minimal change for the patch from #13
Hi @aaron.ferris,
Thank you for your feedback. It makes me aware on a patch I use on Drupal core from
https://www.drupal.org/files/issues/2020-07-15/drupal-add_views_untransl... →
So, this ticket can be closed, as the problem is not related to Drupal core in my case.
Hm, I found an error regarding Seven theme (I still use the community module). After installing the patch from https://www.drupal.org/project/seven/issues/3267440#comment-15027460 📌 Add ckeditor5-stylesheets config RTBC I were able to save my text editor config without problems
Same problem here. Can't save my Basic HTML text editor configuration after updating to 10.3.2
This value must be a number of bytes, optionally with a unit such as "MB" or "megabytes". does not represent a number of bytes.
Will this fix be result in a new beta1?
New patch rerolled against 2.0.4
#3 fixed the problem also for me!!
Hi, may I come back to this issue? If I add a charts field to one of my content types, I can already select "Highmap" as charting library. But then it does not work anymore and I find some errors in the browser console:
jquery.min.js?v=3.7.1:2
POST http://mysite.local/de/node/6328/edit?destination=/de/admin/content&ajax_form=1&_wrapper_format=drupal_ajax&_wrapper_format=drupal_ajax 500 (500 Service unavailable (with message))
send @ jquery.min.js?v=3.7.1:2
ajax @ jquery.min.js?v=3.7.1:2
q.fn.ajaxSubmit @ jquery.form.js:341
Drupal.Ajax.eventResponse @ ajax.js?v=10.2.4:796
(anonymous) @ ajax.js?v=10.2.4:646
dispatch @ jquery.min.js?v=3.7.1:2
v.handle @ jquery.min.js?v=3.7.1:2
handleMouseUp_ @ unknown
ajax.js?v=10.2.4:1219 Uncaught
Drupal.AjaxError {message: '\nEin AJAX-HTTP-Fehler ist aufgetreten.\nHTTP-Rückga…encountered an unexpected error. Try again later.', name: 'AjaxError', stack: 'Error\n at http://mysite.local/core/misc/ajax.js?v=…ttp://mysite.local/core/misc/ajax.js?v=10.2.4:1916:3'}
message
:
"\nEin AJAX-HTTP-Fehler ist aufgetreten.\nHTTP-Rückgabe-Code: 500\nIm Folgenden finden Sie Debugging-Informationen.\nPfad: /de/node/6328/edit?destination=/de/admin/content&ajax_form=1&_wrapper_format=drupal_ajax\nStatustext: 500 Service unavailable (with message)\nAntworttext: The website encountered an unexpected error. Try again later."
name
:
"AjaxError"
stack
:
"Error\n at http://mysite.local/core/misc/ajax.js?v=10.2.4:196:32\n at http://mysite.local/core/misc/ajax.js?v=10.2.4:1916:3"
[[Prototype]]
:
Error at http://mysite.local/core/misc/ajax.js?v=10.2.4:196:32 at http://mysite.local/core/misc/ajax.js?v=10.2.4:1916:3
Drupal.Ajax.error @ ajax.js?v=10.2.4:1219
complete @ ajax.js?v=10.2.4:608
M.complete.M.complete @ jquery.form.js:302
c @ jquery.min.js?v=3.7.1:2
fireWith @ jquery.min.js?v=3.7.1:2
l @ jquery.min.js?v=3.7.1:2
(anonymous) @ jquery.min.js?v=3.7.1:2
load (async)
send @ jquery.min.js?v=3.7.1:2
ajax @ jquery.min.js?v=3.7.1:2
q.fn.ajaxSubmit @ jquery.form.js:341
Drupal.Ajax.eventResponse @ ajax.js?v=10.2.4:796
(anonymous) @ ajax.js?v=10.2.4:646
dispatch @ jquery.min.js?v=3.7.1:2
v.handle @ jquery.min.js?v=3.7.1:2
handleMouseUp_ @ unknown
Hi @andileco,
Thanx for producing the video tutorial. This is perfectly helpful and I now understand how to use this module.
Just 3 additional questions:
1. can I use both, highmaps and highchart library in one Drupal page? Do I really need ti change the library on charts config page to highmaps to make the views type work?
2. As JSON source, can I use everything from https://code.highcharts.com/mapdata/ ?
3 is it possible to use Tiled Web Maps (https://www.highcharts.com/docs/maps/tiledwebmap)?
Thank you so much for your great support !
Hi, I really tried hard to get this module run. But, I am lost ... Any documentation about how to set this up (taxonomy, how to add map source, how to add geolocation to content types, ...) would be really helpful!
After some debugging I found out that the error is not related to the single_content_sync module - instead it had to do with the charts structure. I fixed that and now I can export the chart_config by just adding the field name to
/modules/contrib/single_content_sync/src/Plugin/Derivative/SingleContentSyncFieldProcessor/SimpleFieldDeriver.php
Hi, the solution from @jim.shreds does not work for me. I tried:
/**
* Implements hook_preprocess_page().
*/
function ditrare_preprocess_page(&$variables) {
$variables['#attached']['drupalSettings']['responsive_menu']['custom'] = [
'options' => [
'navbar' => [
'add' => TRUE,
'title' => 'This is a test',
],
"offCanvas" => [
"position"=> "left",
]
],
'config' => [
'classNames' => [
'selected' => 'my-custom-menu--active-trail',
],
]
];
}
What I really want is to use the mmenu option left-front or right-front - so that the offcanvas is overlaying the content instead of moving the content from the side to make space for the offcanvas menu.
Should the "offCanvas" option work within theme-page-hook? + Should the position: right-front work?
Thanx @tank,
Then it is as expectected. I thought that there could be an option within gui or alter hook
Thank you Grevil ;-)
Using about:blank results in console errors on Chrome. Using a valid placeholder (link in patch from #8) will make sure that there is no HTML error and no Chrome console error.
I think this issue should be reopened and the solution from #8 should be proved.
Thanx @Grevil and @Anybody,
my MR now was build successfully.
@Anybody: can you have look at the MR? Errors seem not to be related to my changes …
To be honest ... I even did not realize, that the smaller text is there and can do what I was missing ;-)
So, yes. You are right ;-) We should make the "Video only" accept link a button and make the "Accept all cookies" less prominent - or we can also remove it??
What do you think?
I can then try to create a MR ;-)
@Anybody - sure: on the attached screenshot you find the standard video filter overlay (cookies-filter-overlay-button.png). The button "Accept all Cookies" will trigger all cookis from all "groups".
So, it is the same behaviour as in the main cookies dialog (cookies-main-dialog.png)
From my point of view it should instead only set the cookie for the "video" group (cookie-video-dialog.png)
Can one of the maintainers please explain, if the "Alle zulassen" / "Accept All" is really what we want to display as button overlay to filtered content?
What do others think? Should we "accept all" cookies with this button or should we only accept the video related cookie settings?
I updated the patch from #161 to work with Drupal 10.2.3. Only one small change within core/modules/jsonapi/tests/src/Functional/NodeTest.php
By the way: I am also interested in a Drupal 7 compatible patch. Is someone already working on this?