1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- <?php
- /*
- * This file is part of the Sonata project.
- *
- * (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\Security\Handler;
- use Sonata\AdminBundle\Admin\AdminInterface;
- interface SecurityHandlerInterface
- {
- /**
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- * @param string|array $attributes
- * @param null $object
- *
- * @return boolean
- */
- function isGranted(AdminInterface $admin, $attributes, $object = null);
- /**
- * Get a sprintf template to get the role
- *
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- *
- * @return string
- */
- function getBaseRole(AdminInterface $admin);
- /**
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- *
- * @return void
- */
- function buildSecurityInformation(AdminInterface $admin);
- /**
- * Create object security, fe. make the current user owner of the object
- *
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- * @param mixed $object
- *
- * @return void
- */
- function createObjectSecurity(AdminInterface $admin, $object);
- /**
- * Remove object security
- *
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- * @param mixed $object
- *
- * @return void
- */
- function deleteObjectSecurity(AdminInterface $admin, $object);
- }
|