You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
403B

  1. from modules.core.basetypes import Step
  2. from modules.core.core import cbpi
  3. from modules.core.proptypes import Property
  4. @cbpi.addon.step.type("Dummy Step")
  5. class Dummy(Step):
  6. @cbpi.addon.step.action("WOHOO")
  7. def myaction(self):
  8. print "HALLO"
  9. text = Property.Text(label="Text", configurable=True, description="WOHOOO")
  10. def execute(self):
  11. #print self.text
  12. pass