#vbo integration

⚑️ Live updates comments, jobs, and issues, tagged with #vbo integration will update issues and activities on this page.

Issues

The last 100 updated issues.

Activities

The last 7 days of comments and CI jobs.

  • πŸ‡ΊπŸ‡ΈUnited States j.young

    I think I got this working, I am recreating the virtual entities in VBO's action processor (views_bulk_operations/src/Service/ViewsBulkOperationsActionProcessor.php). I still need to create the entities in VDC so the view is aware of them and creates the VBO checkboxes.

    Added this code to the mentioned file inside the populateQueue function, right before $entity is set.

            $row->_entity = EntityTest::create([
              'name' => $row->column_name,
            ]);

    At first it was creating extra entities so the counts displayed on the configuration form were wrong. I'm not sure if I changed something but it started working as expected, and the counts/selection info are correct. Also only one entity is created per row now. I guess these are not duplicated since I'm not saving anything to the database. I think the second instance of EntityTest::create is just overwriting the first one that must be stored in cache.

    I will continue testing to make sure everything works how I need it to. I would love to help get the functionality added to the module so I am able to upgrade in the future. I am not familiar with the process but am willing to help with guidance. However if adding this is not desirable, feel free to close this issue. Thanks.

  • πŸ‡ΊπŸ‡ΈUnited States j.young

    So I have tried several other modules/approaches to get the functionality I need but VDC comes the closest. I am currently stuck at getting the entities passed through to my custom action. VBO is recognizing my entities in the view but when I make a selection and execute the action, I get errors as noted below.

    I have installed the entity_test module from core, and am creating an EntityTest entity for each row in StandardVDC.php. I took this idea from Views Remote Data β†’ as it seems to be a good way to define entities without saving them to the database. I don't think saving the entities helps anyway as I have tried that as well.

    I added this code to the beginning of the render() function. There is probably a better place to do this but I have tried moving it to other files and this is the only way I can get it to work.

        if ($this->options['label'] == 'COLUMN_NAME') {
            $values->_entity = EntityTest::create([
              'name' => $values->column_name,
            ]);
        }

    Also need this use statement at the top of file

    use Drupal\entity_test\Entity\EntityTest;

    I created src/Service/VdcVboViewsData.php

    <?php
    
    namespace Drupal\views_database_connector;
    
    use Drupal\views\ResultRow;
    use Drupal\views\ViewExecutable;
    
    /**
     * Contains entity getter method.
     */
    class VdcVboViewsData {
      
      /**
       * The entity getter method.
       *
       * @param \Drupal\views\ResultRow $row
       *   Views result row.
       * @param string $relationship_id
       *   Id of the view relationship.
       * @param \Drupal\views\ViewExecutable $view
       *   The current view object.
       */
      public static function getEntityFromRow(ResultRow $row, $relationship_id, ViewExecutable $view) {
        $entity = $row->_entity;
        return $entity;
      }
    
    }
    

    src/EventSubscriber/ViewsDatabaseConnectorEventSubscriber.php

    <?php
    
    namespace Drupal\views_database_connector\EventSubscriber;
    
    use Drupal\views_bulk_operations\Service\ViewsBulkOperationsViewDataInterface;
    use Symfony\Component\EventDispatcher\EventSubscriberInterface;
    use Drupal\views_bulk_operations\ViewsBulkOperationsEvent;
    
    /**
     * Event subscriber class.
     */
    class ViewsDatabaseConnectorEventSubscriber implements EventSubscriberInterface {
    
      // Subscribe to the VBO event with high priority
      // to prepopulate the event data.
      private const PRIORITY = 999;
    
      /**
       * {@inheritdoc}
       */
      public static function getSubscribedEvents() {
        $events = [];
        // The next line prevents hard dependency on VBO module.
        if (class_exists(ViewsBulkOperationsEvent::class)) {
          $events['views_bulk_operations.view_data'][] = ['provideViewData', 0];
          self::PRIORITY;
        }
        return $events;
      }
    
      /**
       * Provide entity type data and entity getter to VBO.
       *
       * @param \Drupal\views_bulk_operations\ViewsBulkOperationsEvent $event
       *   The event object.
       */
      public function provideViewData(ViewsBulkOperationsEvent $event) {
        if ($event->getProvider() === 'views_database_connector') {
          $event->setEntityTypeIds(['entity_test']);
          $event->setEntityGetter([
             'file' => \Drupal::service('extension.list.module')->getPath('views_database_connector') . '/src/Service/VdcVboViewsData.php',
             'callable' => '\Drupal\views_database_connector\VdcVboViewsData::getEntityFromRow',
          ]);
        }
      }
    
    }
    

    And in views_database_connector.views.inc, added this to the table definition.

            $data[$table[0]]['table']['entity type'] = 'entity_test';
            $data[$table[0]]['table']['entity revision'] = FALSE;

    Here are the errors I am getting. I think the entities are not being loaded correctly by the VBO action processor.

    Error: Call to a member function language() on null in Drupal\views_bulk_operations\Service\ViewsBulkOperationsActionProcessor->populateQueue() (line 372 of /var/www/(drupal location)/modules/contrib/views_bulk_operations/src/Service/ViewsBulkOperationsActionProcessor.php)

    Got error 'PHP message: Uncaught PHP Exception Error: "Call to a member function language() on null" at /var/www/(drupal location)/modules/contrib/views_bulk_operations/src/Service/ViewsBulkOperationsActionProcessor.php line 372'

    Any help would be greatly appreciated. I tried doing a var_dump of $form_data that is being passed to the VBO action processor, and all my expected entity data is there except for $form_data['entity_labels']. If I define this manually then the action configuration form loads but of course it doesn't get the counts right. I suspect my entities aren't getting "labels" defined, I'm still trying to figure out how to do that.

Production build 0.67.2 2024