mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-28 12:23:14 +00:00
14 lines
226 B
PHP
14 lines
226 B
PHP
<?php
|
|
|
|
namespace Alchemy\Phrasea\Core\Event;
|
|
|
|
use Symfony\Component\EventDispatcher\Event;
|
|
|
|
class AclSetAdminEvent extends AclRelatedEvent
|
|
{
|
|
public function isAdmin()
|
|
{
|
|
return $this->parms['is_admin'];
|
|
}
|
|
}
|