subscriberslist.php 284 B

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