public function __construct(HereAuth $main)
 {
     $this->main = $main;
     parent::__construct($main, "changepassword", $this->getMessage("Commands.ChangePassword.Description", "Change your password"), $this->getMessage("Commands.ChangePassword.Usage", "/chpw <new password>"), "chpw", "changepw", "chgpw");
     $this->setPermission("hereauth.changepw");
 }
Example #2
0
 public function __construct(HereAuth $main)
 {
     $this->main = $main;
     parent::__construct($main, "auth", $this->getMessage("Commands.Opt.Description", "Change/View HereAuth options for yourself"), $this->getMessage("Commands.Opt.Usage", "/opt <type> <value>, or /opt [page]"), "opt");
 }
 public function __construct(HereAuth $main)
 {
     parent::__construct($main, "changepassword", "Change your password", "/chpw <new password>", "chpw", "changepw", "chgpw");
     $this->setPermission("hereauth.changepw");
 }
Example #4
0
 public function __construct(HereAuth $main)
 {
     parent::__construct($main, "lock", "Lock your account using your password", "/lock", "logout");
     $this->setPermission("hereauth.lock");
 }
Example #5
0
 public function __construct(HereAuth $main)
 {
     $this->main = $main;
     parent::__construct($main, "lock", $this->getMessage("Commands.Logout.Description", "Lock your account using your password"), "/lock", "logout");
     $this->setPermission("hereauth.lock");
 }
Example #6
0
 public function __construct(HereAuth $main)
 {
     parent::__construct($main, "register", "Register your account", "/register", "reg", "r");
     $this->setPermission("hereauth.register");
 }
Example #7
0
 public function __construct(HereAuth $main)
 {
     parent::__construct($main, "auth", "Change/View HereAuth options for yourself", "/auth <type> <value>, or /auth [page]", "opt");
 }