* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * Add a permission to a user. * * @package symfony * @subpackage task * @author Fabien Potencier * @version SVN: $Id: sfGuardAddPermissionTask.class.php 25546 2009-12-17 23:27:55Z Jonathan.Wage $ */ class sfGuardAddPermissionTask extends sfBaseTask { /** * @see sfTask */ protected function configure() { $this->addArguments(array( new sfCommandArgument('username', sfCommandArgument::REQUIRED, 'The user name'), new sfCommandArgument('permission', sfCommandArgument::REQUIRED, 'The permission name'), )); $this->addOptions(array( new sfCommandOption('application', null, sfCommandOption::PARAMETER_OPTIONAL, 'The application name', null), new sfCommandOption('env', null, sfCommandOption::PARAMETER_REQUIRED, 'The environment', 'dev'), )); $this->namespace = 'guard'; $this->name = 'add-permission'; $this->briefDescription = 'Adds a permission to a user'; $this->detailedDescription = <<configuration); $user = Doctrine_Core::getTable('sfGuardUser')->findOneByUsername($arguments['username']); if (!$user) { throw new sfCommandException(sprintf('User "%s" does not exist.', $arguments['username'])); } $user->addPermissionByName($arguments['permission']); $this->logSection('guard', sprintf('Add permission %s to user %s', $arguments['permission'], $arguments['username'])); } }