Topic: Define statement in hooks.php
I'm playing with building a new module. In looking at other ones to figure out the structure, I see there's a define statement at the beginning of all of the hooks.php file:
define ('SS_DASHBOARD', 150<<8);
The variable name makes sense, but what are the other 2 numbers (150 and 8 in this case)? As in if I'm creating a new module, what should I use?
Thanks!