Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #**
- * Count number of players with active Limitations
- * @author MariusButuc
- *
- * @param $period [ daily | weekly ]
- * @param $limit the maximum bet-able € limit
- *#
- #macro(limitedPlayers $period $limit)
- #if($period == 'daily')
- #set($period = 'dailyCurrentLimit')
- #else
- #set($period = 'weeklyCurrentLimit')
- #end
- #set($hql = ", BaseObject as obj, LongProperty as prop where doc.fullName=obj.name and obj.className='XWiki.XWikiUsers' and prop.id.id = obj.id and prop.name='$period' and prop.value = $limit")
- #set($results = $xwiki.searchDocuments($hql))
- #set($count = $listtool.size($results))
- #end
Add Comment
Please, Sign In to add comment