Files
Phraseanet/lib/Alchemy/Phrasea/WorkerManager/Event/ExposeUploadEvent.php
Aina Sitraka 529a95ecfa PHRAS-3921 prod - expose-cli - became compatible with Phrasea V3 keycloak and fix (#4384)
* expose cli phrasea v3

* retrocompatible with v2

* fix connection by idp

* remove placeholder

* some fix

* some fix

* fix

* fix auth from IDP

* list expose

---------

Co-authored-by: Nicolas Maillat <maillat@alchemy.fr>
2023-10-10 22:22:23 +02:00

42 lines
879 B
PHP

<?php
namespace Alchemy\Phrasea\WorkerManager\Event;
use Symfony\Component\EventDispatcher\Event as SfEvent;
class ExposeUploadEvent extends SfEvent
{
private $lst;
private $exposeName;
private $publicationId;
private $accessTokenInfo;
public function __construct($lst, $exposeName, $publicationId, $accessTokenInfo)
{
$this->lst = $lst;
$this->exposeName = $exposeName;
$this->publicationId = $publicationId;
$this->accessTokenInfo = $accessTokenInfo;
}
public function getLst()
{
return $this->lst;
}
public function getExposeName()
{
return $this->exposeName;
}
public function getPublicationId()
{
return $this->publicationId;
}
public function getAccessTokenInfo()
{
return $this->accessTokenInfo;
}
}