vendor/blackbit/data-director/EventListener/AddDataportIdListener.php line 20

Open in your IDE?
  1. <?php
  2. /*
  3.  * Copyright Blackbit digital Commerce GmbH <info@blackbit.de>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
  6.  *  This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  7.  *
  8.  *  You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  9.  */
  10. namespace Blackbit\DataDirectorBundle\EventListener;
  11. use Pimcore\Event\Model\ElementEventInterface;
  12. class AddDataportIdListener
  13. {
  14.     /** @var int */
  15.     private static $dataportId;
  16.     public function addDataportId(ElementEventInterface $e) {
  17.         if (\method_exists($e'setArgument')) {
  18.             $e->setArgument('dataportId'self::$dataportId);
  19.         }
  20.     }
  21.     /**
  22.      * @param int $dataportId
  23.      */
  24.     public static function setDataportId($dataportId)
  25.     {
  26.         self::$dataportId $dataportId;
  27.     }
  28. }