HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/fabricas.colombiatrade.com.co/public_html/modules/contrib/panels/src/PanelsEvents.php
<?php

namespace Drupal\panels;

/**
 * Contains events fired by Panels at various points.
 */
final class PanelsEvents {

  /**
   * The name of the event triggered before a Panels display variant is saved.
   *
   * This event allows modules to react before a Panels display variant is
   * saved. The event listener method receives a
   * \Drupal\panels\PanelsVariantEvent instance.
   *
   * @Event
   *
   * @var string
   */
  const VARIANT_PRE_SAVE = 'panels.variant.pre_save';

  /**
   * The name of the event triggered after a Panels display variant is saved.
   *
   * This event allows modules to react after a Panels display variant is saved.
   * The event listener method receives a \Drupal\panels\PanelsVariantEvent
   * instance. Note that changes to the variant made by subscribers to this
   * event will NOT be persisted.
   *
   * @Event
   *
   * @var string
   */
  const VARIANT_POST_SAVE = 'panels.variant.post_save';

}