StudentFollowUpPlugin.php 734 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * Class StudentFollowUpPlugin
  5. */
  6. class StudentFollowUpPlugin extends Plugin
  7. {
  8. /**
  9. * @return StudentFollowUpPlugin
  10. */
  11. public static function create()
  12. {
  13. static $result = null;
  14. return $result ? $result : $result = new self();
  15. }
  16. /**
  17. * StudentFollowUpPlugin constructor.
  18. */
  19. protected function __construct()
  20. {
  21. parent::__construct(
  22. '0.1',
  23. 'Julio Montoya',
  24. array(
  25. 'tool_enable' => 'boolean'
  26. )
  27. );
  28. }
  29. /**
  30. *
  31. */
  32. public function install()
  33. {
  34. }
  35. /**
  36. *
  37. */
  38. public function uninstall()
  39. {
  40. }
  41. }