subscriberslist.php 239 B

123456789101112
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. class SubscribersList extends SubscriptionList
  4. {
  5. function newListItem(Profile $profile)
  6. {
  7. return new SubscribersListItem($profile, $this->owner, $this->action);
  8. }
  9. }