Have page builder allow you to inject custom HTML. Make the generic
[kiosk.git] / trigger.py
1
2 class trigger(object):
3     """Base class for something that can trigger a page becomming active."""
4
5     PRIORITY_HIGH = 100
6     PRIORITY_NORMAL = 50
7     PRIORITY_LOW = 0
8
9     def get_triggered_page_list(self):
10         return None