Files
mayan-edms/mayan/apps/main/classes.py
2015-01-26 18:22:55 -04:00

11 lines
221 B
Python

class FrontPageButton(object):
_registry = []
@classmethod
def get_all(cls):
return cls._registry
def __init__(self, link):
self.link = link
self.__class__._registry.append(link)