subqueuelist.php 258 B

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