mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-10 11:33:17 +00:00

* 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>
42 lines
879 B
PHP
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;
|
|
}
|
|
}
|