subscriptionslist.php 351 B

1234567891011121314151617
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. // XXX SubscriptionsList and SubscriptionList are dangerously close
  4. class SubscriptionsList extends SubscriptionList
  5. {
  6. public $widgetOpts;
  7. public $scoped;
  8. function newListItem(Profile $profile)
  9. {
  10. return new SubscriptionsListItem($profile, $this->owner, $this->action);
  11. }
  12. }