1 | <?php |
||
23 | class ArchivedController |
||
24 | { |
||
25 | /** |
||
26 | * A participant provider instance. |
||
27 | * |
||
28 | * @var ParticipantProviderInterface |
||
29 | */ |
||
30 | protected $participantProvider; |
||
31 | |||
32 | /** |
||
33 | * An archived provider pagerfanta instance. |
||
34 | * |
||
35 | * @var ArchivedProviderPagerFantaInterface |
||
36 | */ |
||
37 | protected $archivedProvider; |
||
38 | |||
39 | /** |
||
40 | * A templating engine instance. |
||
41 | * |
||
42 | * @var EngineInterface |
||
43 | */ |
||
44 | protected $templating; |
||
45 | |||
46 | /** |
||
47 | * Constructor. |
||
48 | * |
||
49 | * @param ParticipantProviderInterface $participantProvider |
||
50 | * @param ArchivedProviderPagerFantaInterface $archivedProvider |
||
51 | * @param EngineInterface $templating |
||
52 | */ |
||
53 | public function __construct( |
||
62 | |||
63 | /** |
||
64 | * Shows archived threads for the logged in user |
||
65 | * |
||
66 | * @param integer $page The page we are on |
||
67 | * |
||
68 | * @return Response |
||
69 | */ |
||
70 | public function showAction($page) |
||
78 | } |
||
79 |