team.inc 661 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @file
  4. * Info on migration team members. Display-only at the moment, but eventually
  5. * there should be notification features.
  6. */
  7. class MigrateTeamMember {
  8. protected $name;
  9. public function getName() {
  10. return $this->name;
  11. }
  12. protected $emailAddress;
  13. public function getEmailAddress() {
  14. return $this->emailAddress;
  15. }
  16. protected $group;
  17. public function getGroup() {
  18. return $this->group;
  19. }
  20. public function __construct($name, $email_address, $group) {
  21. $this->name = $name;
  22. $this->emailAddress = $email_address;
  23. $this->group = $group;
  24. }
  25. public function contact($subject, $text) {
  26. // TODO
  27. }
  28. }