Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,125 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Event;
use Sonata\AdminBundle\Admin\AbstractAdminExtension;
use Sonata\AdminBundle\Admin\AdminInterface;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Datagrid\ListMapper;
use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Show\ShowMapper;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
/**
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class AdminEventExtension extends AbstractAdminExtension
{
protected $eventDispatcher;
/**
* @param EventDispatcherInterface $eventDispatcher
*/
public function __construct(EventDispatcherInterface $eventDispatcher)
{
$this->eventDispatcher = $eventDispatcher;
}
/**
* {@inheritdoc}
*/
public function configureFormFields(FormMapper $form)
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.form', new ConfigureEvent($form->getAdmin(), $form, ConfigureEvent::TYPE_FORM));
}
/**
* {@inheritdoc}
*/
public function configureListFields(ListMapper $list)
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.list', new ConfigureEvent($list->getAdmin(), $list, ConfigureEvent::TYPE_LIST));
}
/**
* {@inheritdoc}
*/
public function configureDatagridFilters(DatagridMapper $filter)
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.datagrid', new ConfigureEvent($filter->getAdmin(), $filter, ConfigureEvent::TYPE_DATAGRID));
}
/**
* {@inheritdoc}
*/
public function configureShowFields(ShowMapper $show)
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.show', new ConfigureEvent($show->getAdmin(), $show, ConfigureEvent::TYPE_SHOW));
}
/**
* {@inheritdoc}
*/
public function configureQuery(AdminInterface $admin, ProxyQueryInterface $query, $context = 'list')
{
$this->eventDispatcher->dispatch('sonata.admin.event.configure.query', new ConfigureQueryEvent($admin, $query, $context));
}
/**
* {@inheritdoc}
*/
public function preUpdate(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.pre_update', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_PRE_UPDATE));
}
/**
* {@inheritdoc}
*/
public function postUpdate(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.post_update', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_POST_UPDATE));
}
/**
* {@inheritdoc}
*/
public function prePersist(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.pre_persist', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_PRE_PERSIST));
}
/**
* {@inheritdoc}
*/
public function postPersist(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.post_persist', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_POST_PERSIST));
}
/**
* {@inheritdoc}
*/
public function preRemove(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.pre_remove', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_PRE_REMOVE));
}
/**
* {@inheritdoc}
*/
public function postRemove(AdminInterface $admin, $object)
{
$this->eventDispatcher->dispatch('sonata.admin.event.persistence.post_remove', new PersistenceEvent($admin, $object, PersistenceEvent::TYPE_POST_REMOVE));
}
}

View File

@@ -0,0 +1,88 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Event;
use Sonata\AdminBundle\Admin\AdminInterface;
use Sonata\AdminBundle\Mapper\BaseMapper;
use Symfony\Component\EventDispatcher\Event;
/**
* This event is sent by hook:
* - configureFormFields
* - configureListFields
* - configureDatagridFilters
* - configureShowFields.
*
* You can register the listener to the event dispatcher by using:
* - sonata.admin.event.configure.[form|list|datagrid|show]
* - sonata.admin.event.configure.[admin_code].[form|list|datagrid|show] (not implemented yet)
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class ConfigureEvent extends Event
{
const TYPE_SHOW = 'show';
const TYPE_DATAGRID = 'datagrid';
const TYPE_FORM = 'form';
const TYPE_LIST = 'list';
/**
* @var AdminInterface
*/
protected $admin;
/**
* @var BaseMapper
*/
protected $mapper;
/**
* @var string
*/
protected $type;
/**
* @param AdminInterface $admin
* @param BaseMapper $mapper
* @param string $type
*/
public function __construct(AdminInterface $admin, BaseMapper $mapper, $type)
{
$this->admin = $admin;
$this->mapper = $mapper;
$this->type = $type;
}
/**
* @return mixed
*/
public function getType()
{
return $this->type;
}
/**
* @return AdminInterface
*/
public function getAdmin()
{
return $this->admin;
}
/**
* @return BaseMapper
*/
public function getMapper()
{
return $this->mapper;
}
}

View File

@@ -0,0 +1,62 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Event;
use Knp\Menu\FactoryInterface;
use Knp\Menu\ItemInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* Menu builder event. Used for extending the menus.
*
* @author Martin Hasoň <martin.hason@gmail.com>
*/
class ConfigureMenuEvent extends Event
{
const SIDEBAR = 'sonata.admin.event.configure.menu.sidebar';
/**
* @var FactoryInterface
*/
private $factory;
/**
* @var ItemInterface
*/
private $menu;
/**
* @param FactoryInterface $factory
* @param ItemInterface $menu
*/
public function __construct(FactoryInterface $factory, ItemInterface $menu)
{
$this->factory = $factory;
$this->menu = $menu;
}
/**
* @return FactoryInterface
*/
public function getFactory()
{
return $this->factory;
}
/**
* @return ItemInterface
*/
public function getMenu()
{
return $this->menu;
}
}

View File

@@ -0,0 +1,80 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Event;
use Sonata\AdminBundle\Admin\AdminInterface;
use Sonata\AdminBundle\Datagrid\ProxyQueryInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* This event is sent by hook:
* - configureQuery.
*
* You can register the listener to the event dispatcher by using:
* - sonata.admin.event.configure.query
* - sonata.admin.event.configure.[admin_code].query (not implemented yet)
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class ConfigureQueryEvent extends Event
{
/**
* @var AdminInterface
*/
protected $admin;
/**
* @var ProxyQueryInterface
*/
protected $proxyQuery;
/**
* @var string
*/
protected $context;
/**
* @param AdminInterface $admin
* @param ProxyQueryInterface $proxyQuery
* @param string $context
*/
public function __construct(AdminInterface $admin, ProxyQueryInterface $proxyQuery, $context)
{
$this->admin = $admin;
$this->proxyQuery = $proxyQuery;
$this->context = $context;
}
/**
* @return AdminInterface
*/
public function getAdmin()
{
return $this->admin;
}
/**
* @return string
*/
public function getContext()
{
return $this->context;
}
/**
* @return ProxyQueryInterface
*/
public function getProxyQuery()
{
return $this->proxyQuery;
}
}

View File

@@ -0,0 +1,88 @@
<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Event;
use Sonata\AdminBundle\Admin\AdminInterface;
use Symfony\Component\EventDispatcher\Event;
/**
* This event is sent by hook:
* - preUpdate | postUpdate
* - prePersist | postPersist
* - preRemove | postRemove.
*
* You can register the listener to the event dispatcher by using:
* - sonata.admin.event.persistence.[pre|post]_[persist|update|remove)
* - sonata.admin.event.persistence.[admin_code].[pre|post]_[persist|update|remove) (not implemented yet)
*
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class PersistenceEvent extends Event
{
const TYPE_PRE_UPDATE = 'pre_update';
const TYPE_POST_UPDATE = 'post_update';
const TYPE_PRE_PERSIST = 'pre_persist';
const TYPE_POST_PERSIST = 'post_persist';
const TYPE_PRE_REMOVE = 'pre_remove';
const TYPE_POST_REMOVE = 'post_remove';
/**
* @var AdminInterface
*/
protected $admin;
/**
* @var object
*/
protected $object;
/**
* @var string
*/
protected $type;
/**
* @param AdminInterface $admin
* @param object $object
* @param string $type
*/
public function __construct(AdminInterface $admin, $object, $type)
{
$this->admin = $admin;
$this->object = $object;
$this->type = $type;
}
/**
* @return AdminInterface
*/
public function getAdmin()
{
return $this->admin;
}
/**
* @return object
*/
public function getObject()
{
return $this->object;
}
/**
* @return mixed
*/
public function getType()
{
return $this->type;
}
}