subscribersminilist.php 278 B

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