. * * @category API * @package StatusNet * @author Dan Moore * @author Evan Prodromou * @author Zach Copley * @copyright 2009 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ if (!defined('GNUSOCIAL')) { exit(1); } /** * Ouputs the authenticating user's followers (subscribers), each with * current Twitter-style status inline. They are ordered by the order * in which they subscribed to the user, 100 at a time. * * @category API * @package StatusNet * @author Dan Moore * @author Evan Prodromou * @author Zach Copley * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://status.net/ */ class ApiUserFollowersAction extends ApiSubscriptionsAction { /** * Get the user's subscribers (followers) as an array of profiles * * @return array Profiles */ protected function getProfiles() { $offset = ($this->page - 1) * $this->count; $limit = $this->count + 1; $subs = null; if (isset($this->tag)) { $subs = $this->target->getTaggedSubscribers( $this->tag, $offset, $limit ); } else { $subs = $this->target->getSubscribers( $offset, $limit ); } $profiles = array(); while ($subs->fetch()) { $profiles[] = clone($subs); } return $profiles; } }