X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fuserset.inc.php;h=2c58419d8a48074cee505a486b710dc10f54b4aa;hb=b80cbf0db8e7ac7e11ea2bb49bbf3efd79f4fadf;hp=21ad42d9de90b6ab606910d67c1542fc10f86889;hpb=0f567f55105b18afd0451b5b554768edb86a14ca;p=platal.git diff --git a/include/userset.inc.php b/include/userset.inc.php index 21ad42d..2c58419 100644 --- a/include/userset.inc.php +++ b/include/userset.inc.php @@ -1,6 +1,6 @@ getProfiles($limit, Profile::FETCH_MINIFICHES); return $profiles; @@ -191,7 +191,7 @@ abstract class ProfileView extends MultipageView */ class MinificheView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { global $globals; $this->entriesPerPage = $globals->search->per_page; @@ -219,7 +219,7 @@ class MinificheView extends ProfileView parent::__construct($set, $params); } - public function apply(PlPage &$page) + public function apply(PlPage $page) { if (array_key_exists('starts_with', $this->params) && $this->params['starts_with'] != "" @@ -241,7 +241,7 @@ class MinificheView extends ProfileView class MentorView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->entriesPerPage = 10; $this->addSort(new PlViewOrder('rand', array(new PFO_Random(S::i('uid'))), 'aléatoirement')); @@ -266,7 +266,7 @@ class MentorView extends ProfileView class TrombiView extends ProfileView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->entriesPerPage = 24; $this->defaultkey = 'name'; @@ -292,7 +292,7 @@ class TrombiView extends ProfileView return 'include/plview.trombi.tpl'; } - public function apply(PlPage &$page) + public function apply(PlPage $page) { if (!empty($GLOBALS['IS_XNET_SITE'])) { global $globals; @@ -304,12 +304,12 @@ class TrombiView extends ProfileView class GadgetView implements PlView { - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->set =& $set; } - public function apply(PlPage &$page) + public function apply(PlPage $page) { $page->assign_by_ref('set', $this->set->get(new PlLimit(5, 0))); } @@ -324,16 +324,16 @@ class AddressesView implements PlView { private $set; - public function __construct(PlSet &$set, array $params) + public function __construct(PlSet $set, array $params) { $this->set =& $set; } - public function apply(PlPage &$page) + public function apply(PlPage $page) { $pids = $this->set->getIds(new PlLimit()); $visibility = new ProfileVisibility(ProfileVisibility::VIS_AX); - pl_content_headers('text/x-csv'); + pl_cached_content_headers('text/x-csv', 1); $csv = fopen('php://output', 'w'); fputcsv($csv, array('adresses'), ';'); @@ -355,5 +355,35 @@ class AddressesView implements PlView } } +class JSonView implements PlView +{ + private $set; + private $params; + + public function __construct(PlSet $set, array $params) + { + $this->set = $set; + $this->params = $params; + } + + public function apply(PlPage $page) + { + $export = array(); + $start = isset($this->params['offset']) ? $this->params['offset'] : 0; + $count = isset($this->params['count']) ? $this->params['count'] : 10; + $profiles = $this->set->get(new PlLimit($start, $count)); + foreach ($profiles as $profile) { + $export[] = $profile->export(); + } + $page->jsonAssign('profile_count', $this->set->count()); + $page->jsonAssign('profiles', $export); + } + + public function args() + { + return $this->set->args(); + } +} + // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>