コード例 #1
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
コード例 #2
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
コード例 #3
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
コード例 #4
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
コード例 #5
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
コード例 #6
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
コード例 #7
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler,
           self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
コード例 #8
0
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
コード例 #9
0
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)
コード例 #10
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
     return
コード例 #11
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
コード例 #12
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
コード例 #13
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
コード例 #14
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
コード例 #15
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
コード例 #16
0
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
コード例 #17
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler, self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
コード例 #18
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
コード例 #19
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
コード例 #20
0
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)