With Drupal 10.3.x does not work
i am also facing same issue
any one have solution for the same?
I need to exposed filter to left side so how can i acchive?
I am also facing the same issue.
If you get any solution let me knpow.
Thanks
sandip.prajapati → created an issue.
Thanks you it worked
sandip.prajapati → created an issue.
Thank you for the response.
I have added bundle condition and its works.
but after that I have added another condition Condition: User has a role(s)
at There I have selected the user field but getting the error: Expected a entity:user data type for context User but got a integer data type instead.
Thanks
sandip.prajapati → created an issue.
sandip.prajapati → created an issue.
HI
that showing the bundle. i have only one bundle that showing is right but there is not any transition so how can we create draft to need review mail, need review to publish mail etc..
Thanks
@larowlan
I have tried with the 2.x module but that also not showing transition. tht showing the bundle. have a look screen shot.
Thanks
sandip.prajapati → created an issue.
sandip.prajapati → created an issue.
sandip.prajapati → created an issue.
Hello
can you please provide full code?
I am getting error node class not exist.
Error: Class "Drupal\my_module\Plugin\migrate\source\Node\Node" not found in include() (line 24 of C:\xampp\htdocs\d10_custom\web\modules\custom\mymodule\src\Plugin\migrate\source\D7NodeExtended.php).
[warning] Drush command terminated abnormally.
<?php
namespace Drupal\my_module\Plugin\migrate\source\Node;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Plugin\MigrationPluginManagerInterface;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\migrate\Plugin\migrate\source\SqlBase;
/**
* Extended version of core Drupal 7 node source from database.
*
* @MigrateSource(
* id = "d7_node_extended",
* source_module = "node"
* )
*/
class D7NodeExtended extends Node {
/**
* {@inheritdoc}
*/
public function prepareRow(Row $row) {
// Make the node's moderation state available to migration.
$database = $this->getDatabase();
$vid = $row->getSourceProperty('vid');
$query = $database
->select('workbench_moderation_node_history', 'wm')
->fields('wm', ['state'])
->condition('wm.vid', $vid)
->orderBy('wm.stamp', 'DESC')
->range(0, 1);
$value = $query
->execute()
->fetchField();
if ($value) {
$row->setSourceProperty('moderation_state', $value);
}
return parent::prepareRow($row);
}
}