123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?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
- */
- public function isGranted(AdminInterface $admin, $attributes, $object = null);
- /**
- * Get a sprintf template to get the role
- *
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- *
- * @return string
- */
- public function getBaseRole(AdminInterface $admin);
- /**
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- */
- public 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
- */
- public function createObjectSecurity(AdminInterface $admin, $object);
- /**
- * Remove object security
- *
- * @param \Sonata\AdminBundle\Admin\AdminInterface $admin
- * @param mixed $object
- *
- * @return void
- */
- public function deleteObjectSecurity(AdminInterface $admin, $object);
- }
|