🇮🇳India @sandip.prajapati

Account created on 5 August 2016, over 8 years ago
#

Recent comments

🇮🇳India sandip.prajapati

i am also facing same issue
any one have solution for the same?

🇮🇳India sandip.prajapati

I need to exposed filter to left side so how can i acchive?

🇮🇳India sandip.prajapati

I am also facing the same issue.
If you get any solution let me knpow.
Thanks

🇮🇳India sandip.prajapati

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

🇮🇳India sandip.prajapati

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

🇮🇳India sandip.prajapati

@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

🇮🇳India sandip.prajapati

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);
  }
}
Production build 0.71.5 2024