123456789101112131415 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class SubscribersList extends SubscriptionList
- {
- public $widgetOpts;
- public $scoped;
- function newListItem(Profile $profile)
- {
- return new SubscribersListItem($profile, $this->owner, $this->action);
- }
- }
|