subscribersminilist.php 233 B

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