/**
  * 
  * @param string $name
  * @param array $nameValueMap
  */
 public function __construct($name = null, array $nameValueMap = [])
 {
     parent::__construct($name, $nameValueMap);
 }
 /**
  * Constructs a pre-save event object.
  *
  * @param \Drupal\migrate\Plugin\MigrationInterface $migration
  *   Migration entity.
  * @param \Drupal\migrate\MigrateMessageInterface $message
  *   The current migrate message service.
  * @param \Drupal\migrate\Row $row
  */
 public function __construct(MigrationInterface $migration, MigrateMessageInterface $message, Row $row)
 {
     parent::__construct($migration, $message);
     $this->row = $row;
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     $this->View = new View();
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
 }
 /**
  * Constructs a EntitySelectionEvent object.
  *
  * @param string $entity_browser_id
  *   Entity browser ID.
  * @param string $instance_uuid
  *   Entity browser instance UUID.
  * @param \Drupal\Core\Entity\EntityInterface[] $entities
  *   Array of selected entities.
  */
 public function __construct($entity_browser_id, $instance_uuid, array $entities)
 {
     parent::__construct($entity_browser_id, $instance_uuid);
     $this->entities = $entities;
 }
Example #6
0
 public function __construct()
 {
     $this->counterRedisKey = "tps20150315:" . date("Ymd");
     $this->getEventDatefromConf();
     parent::__construct();
 }