protected function configure()
 {
     parent::configure();
     $this->setName('user:set_language')->setAliases(array('usl'))->setDescription('Sets the users language to the one given')->addArgument('language', InputArgument::OPTIONAL, 'The English name for the new language to set all users to');
 }
Ejemplo n.º 2
0
 /**
  *
  */
 protected function configure()
 {
     parent::configure();
     $this->setName('user:disable_admins')->setDescription('Makes the given user admin on the main portal');
 }
 protected function configure()
 {
     parent::configure();
     $this->setName('user:reset_login')->setDescription('Outputs login link for given username')->addArgument('username', InputArgument::REQUIRED, 'Allows you to specify a username to login as');
 }
Ejemplo n.º 4
0
 protected function configure()
 {
     parent::configure();
     $this->setName('user:change_pass')->setDescription('Updates the user password to the one given')->addArgument('username', InputArgument::REQUIRED, 'Allows you to specify the username')->addArgument('password', InputArgument::REQUIRED, 'The new password to give this user');
 }
Ejemplo n.º 5
0
 protected function configure()
 {
     parent::configure();
     $this->setName('user:make_admin')->setDescription('Makes the given user admin on the main portal')->addArgument('username', InputArgument::REQUIRED, 'Allows you to specify a username to make admin');
 }
Ejemplo n.º 6
0
 protected function configure()
 {
     parent::configure();
     $this->setName('user:url_access')->setAliases(array('urla'))->setDescription('Show the access per Url');
 }