public ReadCategoriesWithForumsPermissionCheck(IBoardConfiguration boardConfiguration)
 {
     this.boardConfiguration = boardConfiguration;
     // TODO: Get localized text !?!?!
     this.ErrorCode    = -1;
     this.ErrorMessage = "meh";
 }
Beispiel #2
0
 public ReadBreadcrumbForForumPermissionCheck(IBoardConfiguration boardConfiguration, IElementPermissionCheck elementCheck)
 {
     this.boardConfiguration = boardConfiguration;
     this.elementCheck       = elementCheck;
     // TODO: Get localized text !?!?!
     this.ErrorCode    = -1;
     this.ErrorMessage = "meh";
 }
 public DeleteForumPermissionCheck(IBoardConfiguration config) : base(config)
 {
     // TODO: Get localized text !?!?!
     this.ErrorCode    = -1;
     this.ErrorMessage = "meh";
 }
 public CreateCategoryPermissionCheck(IBoardConfiguration config) : base(config)
 {
     // TODO: Get localized text !?!?!
     this.ErrorCode    = -1;
     this.ErrorMessage = "meh";
 }
 public CommandPermissionCheckForAdminGroupBase(IBoardConfiguration boardConfiguration)
 {
     this.boardConfiguration = boardConfiguration;
 }