| author | ymh <ymh.work@gmail.com> |
| Mon, 07 Nov 2011 17:25:39 +0100 | |
| changeset 29 | 7496254cfead |
| parent 26 | 9eab3e86db7d |
| child 30 | d2fba1e3b94b |
| permissions | -rwxr-xr-x |
| 2 | 1 |
<?php |
2 |
/* |
|
| 21 | 3 |
* This file is part of the WikiTagBundle package. |
| 2 | 4 |
* |
5 |
* (c) IRI <http://www.iri.centrepompidou.fr/> |
|
6 |
* |
|
7 |
* For the full copyright and license information, please view the LICENSE |
|
8 |
* file that was distributed with this source code. |
|
9 |
*/ |
|
10 |
||
11 |
namespace IRI\Bundle\WikiTagBundle\Controller; |
|
12 |
||
|
10
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
13 |
use Doctrine\ORM\Query\ResultSetMapping; |
|
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
14 |
use Doctrine\DBAL\DriverManager; |
|
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
15 |
|
| 2 | 16 |
use IRI\Bundle\WikiTagBundle\Entity\DocumentTag; |
17 |
use IRI\Bundle\WikiTagBundle\Entity\Tag; |
|
18 |
use IRI\Bundle\WikiTagBundle\Utils\WikiTagUtils; |
|
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
19 |
use Pagerfanta\Pagerfanta; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
20 |
use Pagerfanta\Adapter\ArrayAdapter; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
21 |
use Pagerfanta\Adapter\DoctrineORMAdapter; |
| 2 | 22 |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; |
23 |
use Symfony\Component\HttpFoundation\Response; |
|
24 |
||
25 |
||
26 |
class WikiTagController extends Controller |
|
27 |
{ |
|
|
10
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
28 |
private static $SEARCH_STAR_CHARACTER = "*"; |
|
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
29 |
|
| 2 | 30 |
/** |
31 |
* Fake index action |
|
32 |
*/ |
|
33 |
public function indexAction() |
|
34 |
{ |
|
35 |
return new Response('<html><body>Nothing to see here.</body></html>'); |
|
36 |
} |
|
37 |
||
38 |
/** |
|
39 |
* Renders the little html to add the css |
|
40 |
*/ |
|
41 |
public function addCssAction() |
|
42 |
{ |
|
43 |
return $this->render('WikiTagBundle:WikiTag:css.html.twig'); |
|
44 |
} |
|
45 |
||
46 |
/** |
|
47 |
* Renders the little html to add the javascript |
|
48 |
* TODO: review why this injection in javascript, t10n? |
|
49 |
*/ |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
50 |
public function addJavascriptAction($tags_list=FALSE) |
| 2 | 51 |
{ |
52 |
$cats = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOrderedCategories(); |
|
53 |
// $cats is {"Label":"Créateur"},{"Label":"Datation"},... |
|
54 |
$nbCats = count($cats); |
|
55 |
$ar = array('' => ''); |
|
56 |
for($i=0;$i<$nbCats;$i++){ |
|
| 7 | 57 |
$temp = array($cats[$i]["label"] => $cats[$i]["label"]); |
| 2 | 58 |
$ar = array_merge($ar, $temp); |
59 |
} |
|
60 |
// ... so we create is json like {"":""},{"Créateur":"Créateur"},{"Datation":"Datation"},... |
|
61 |
$categories = json_encode($ar); |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
62 |
return $this->render('WikiTagBundle:WikiTag:javascript.html.twig', array('categories' => $categories,'tags_list' => $tags_list)); |
| 2 | 63 |
} |
64 |
||
65 |
/** |
|
66 |
* Display a list of ordered tag for a document |
|
67 |
* @param integer $id_doc |
|
68 |
*/ |
|
69 |
public function documentTagsAction($id_doc) |
|
70 |
{ |
|
71 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
72 |
return $this->render('WikiTagBundle:WikiTag:documentTags.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc)); |
|
73 |
} |
|
74 |
||
75 |
/** |
|
76 |
* |
|
77 |
* TODO : Enter description here ... |
|
78 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
79 |
*/ |
|
80 |
public function tagUpDownAction() |
|
81 |
{ |
|
82 |
||
83 |
$req = $this->getRequest()->request; |
|
84 |
$id_doc = $req->get('wikitag_document_id'); |
|
85 |
// post vars new_order and old_order indicate the position (from 1) of the tag in the list. |
|
86 |
// NB : it is different from the DocumentTag.order in the database. |
|
87 |
$new_order = intval($req->get('new_order')) - 1; |
|
88 |
$old_order = intval($req->get('old_order')) - 1; |
|
89 |
// First we get the DocumentTags |
|
90 |
$em = $this->getDoctrine()->getEntityManager(); |
|
91 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
92 |
// We change the moved DocumentTag's order |
|
93 |
$new_dt_order = $ordered_tags[$new_order]->getTagOrder(); |
|
94 |
$moved_dt = $ordered_tags[$old_order]; |
|
95 |
$moved_dt->setTagOrder($new_dt_order); |
|
96 |
// We move the TaggedSheets's order |
|
97 |
if($new_order > $old_order){ |
|
98 |
// And we decrease the other ones |
|
99 |
for ($i=($old_order+1); $i <= ($new_order); $i++){ |
|
100 |
$dt = $ordered_tags[$i]; |
|
101 |
$dt->setTagOrder($dt->getTagOrder() - 1); |
|
102 |
} |
|
103 |
} |
|
104 |
else{ |
|
105 |
// And we increase the other ones |
|
106 |
for ($i=$new_order; $i <= ($old_order-1); $i++){ |
|
107 |
$dt = $ordered_tags[$i]; |
|
108 |
$dt->setTagOrder($dt->getTagOrder() + 1); |
|
109 |
} |
|
110 |
} |
|
111 |
// Save datas. |
|
112 |
$em->flush(); |
|
113 |
||
114 |
return $this->renderDocTags($id_doc); |
|
115 |
} |
|
116 |
||
117 |
/** |
|
118 |
* |
|
119 |
* TODO: Enter description here ... |
|
120 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
121 |
*/ |
|
122 |
public function removeTagFromListAction() |
|
123 |
{ |
|
124 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
125 |
$id_tag = $this->getRequest()->request->get('tag_id'); |
|
126 |
// We get the DocumentTag meant to be deleted, and remove it. |
|
127 |
$em = $this->getDoctrine()->getEntityManager(); |
|
128 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('tag' => $id_tag, 'document' => $id_doc)); |
|
129 |
$em->remove($dt); |
|
130 |
$em->flush(); |
|
131 |
||
132 |
return $this->renderDocTags($id_doc); |
|
133 |
} |
|
134 |
||
135 |
/** |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
136 |
* Modify the tag in the context of a tag list for one document |
| 29 | 137 |
* |
| 2 | 138 |
*/ |
139 |
public function modifyDocumentTagAction() |
|
140 |
{ |
|
141 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
142 |
$tag_label = $this->getRequest()->request->get('value'); |
|
143 |
$id_moved_tag = $this->getRequest()->request->get('id'); |
|
144 |
$moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag)); |
|
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
145 |
if($tag_label!=$moved_tag->getLabel()){ |
| 2 | 146 |
// We get the DocumentTags |
147 |
$em = $this->getDoctrine()->getEntityManager(); |
|
148 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findBy(array('document' => $id_doc)); |
|
149 |
$nb_tags = count($tags); |
|
150 |
$found = false; |
|
151 |
$i = 0; |
|
152 |
while($i<$nb_tags && $found==false){ |
|
153 |
$dt = $tags[$i]; |
|
154 |
if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){ |
|
155 |
$found = true; |
|
156 |
} |
|
157 |
$i++; |
|
158 |
} |
|
159 |
// If the label was found, we sent a bad request |
|
160 |
if($found==true){ |
|
161 |
return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400); |
|
162 |
} |
|
163 |
// We create the new tag or get the already existing tag. $tag, $revision_id, $created |
|
164 |
$ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label) |
|
165 |
$tag = $ar[0]; |
|
166 |
$revision_id = $ar[1]; |
|
167 |
$created = $ar[2]; |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
168 |
|
| 2 | 169 |
// We get the DocumentTag and change its tag |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
170 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_moved_tag)); |
| 2 | 171 |
$dt->setTag($tag); |
172 |
$dt->setWikipediaRevisionId($revision_id); |
|
173 |
// |
|
174 |
// HERE QUERY TO GET A INDEX_NOTE/SCORE for the tag. Here is python code : |
|
175 |
//kwargs = {DJANGO_ID + "__exact": unicode(ds_id)} |
|
176 |
//results = SearchQuerySet().filter(title=tag_label).filter_or(description=tag_label).filter(**kwargs) |
|
177 |
//if len(results) > 0: |
|
178 |
// ts.index_note = results[0].score |
|
179 |
// |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
180 |
// We set ManualOrder = true for the current document |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
181 |
$doc = $this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneBy(array('externalId' => $id_doc)); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
182 |
$doc->setManualOrder(true); |
| 2 | 183 |
// We save the datas |
184 |
$em->flush(); |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
185 |
// We render the document's tags |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
186 |
return $this->renderDocTags($id_doc); |
| 2 | 187 |
} |
188 |
||
189 |
} |
|
190 |
||
191 |
/** |
|
192 |
* |
|
193 |
* TODO : Enter description here ... |
|
| 7 | 194 |
* TODO : implement |
| 2 | 195 |
*/ |
196 |
public function reorderTagDocumentAction() |
|
197 |
{ |
|
198 |
$id_Doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
| 29 | 199 |
$res = $this->getDoctrine()->getRepository('WikiTagBundle:Document')->search(null,'test', null); |
| 2 | 200 |
return $this->renderDocTags($id_doc); |
201 |
} |
|
202 |
||
203 |
/** |
|
204 |
* |
|
205 |
* TODO: Enter description here ... |
|
206 |
*/ |
|
207 |
public function addTagAction() |
|
208 |
{ |
|
209 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
210 |
$tag_label = $this->getRequest()->request->get('value'); |
|
211 |
// We get the DocumentTags |
|
212 |
$em = $this->getDoctrine()->getEntityManager(); |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
213 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc); |
| 2 | 214 |
$nb_tags = count($tags); |
215 |
$found = false; |
|
216 |
$i = 0; |
|
217 |
while($i<$nb_tags && $found==false){ |
|
218 |
$dt = $tags[$i]; |
|
219 |
if(strtolower($dt->getTag()->getLabel())==strtolower($tag_label)){ |
|
220 |
$found = true; |
|
221 |
} |
|
222 |
$i++; |
|
223 |
} |
|
224 |
// If the label was found, we sent a bad request |
|
225 |
if($found==true){ |
|
226 |
//TODO : translation |
|
227 |
return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("Le tag %s existe déjà pour cette fiche.", $tag_label))),400); |
|
228 |
} |
|
| 8 | 229 |
// returns array($tag, $revision_id, $created) |
| 2 | 230 |
$ar = WikiTagUtils::getOrCreateTag($tag_label, $this->getDoctrine());// tag, revision_id, created = get_or_create_tag(tag_label) |
231 |
$tag = $ar[0]; |
|
232 |
$revision_id = $ar[1]; |
|
233 |
$created = $ar[2]; |
|
| 8 | 234 |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
235 |
$tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findByDocumentExternalId($id_doc, array('tag'=>$tag->getId())); |
| 2 | 236 |
$nb_tags = count($tags); |
237 |
||
238 |
if($created==true || $nb_tags==0){ |
|
239 |
$new_order_ar = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->getMaxOrder($id_doc); |
|
240 |
// The result is a double array. And reset(reset($newOrderAr)) is not allowed. And a string is returned. |
|
241 |
$a1 = reset($new_order_ar); |
|
242 |
$new_order = intval(reset($a1)) + 1; |
|
243 |
// TODO: use a factory that returns an DocumentTagInterface |
|
244 |
$new_DT = new DocumentTag(); |
|
|
5
45378793512a
Correct tag insert + external id on doc
ymh <ymh.work@gmail.com>
parents:
2
diff
changeset
|
245 |
$new_DT->setDocument($this->getDoctrine()->getRepository('WikiTagBundle:Document')->findOneByExternalId($id_doc)); |
| 2 | 246 |
$new_DT->setTag($tag); |
247 |
$new_DT->setOriginalOrder($new_order); |
|
248 |
$new_DT->setTagOrder($new_order); |
|
249 |
$new_DT->setWikipediaRevisionId($revision_id); |
|
250 |
$em->persist($new_DT); |
|
251 |
$em->flush(); |
|
252 |
} |
|
253 |
||
254 |
return $this->renderDocTags($id_doc); |
|
255 |
} |
|
256 |
||
257 |
||
258 |
/** |
|
259 |
* |
|
260 |
* TODO: Enter description here ... |
|
261 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
262 |
*/ |
|
263 |
public function removeWpLinkAction() |
|
264 |
{ |
|
265 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
266 |
$id_tag = $this->getRequest()->request->get('tag_id'); |
|
267 |
$tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag); |
|
268 |
//return new Response(var_dump(array($tag))); |
|
269 |
// We search if the unsemantized version of the tag already exist. |
|
270 |
$un_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('label'=>$tag->getLabel(), 'urlStatus'=>Tag::$TAG_URL_STATUS_DICT['null_result'])); |
|
271 |
$em = $this->getDoctrine()->getEntityManager(); |
|
| 13 | 272 |
$un_tag_created = FALSE; |
| 2 | 273 |
if(!$un_tag){ |
274 |
// Create another tag almost identical, without the W info |
|
275 |
// TODO: use a factory that return a TagInterface |
|
276 |
$un_tag = new Tag(); |
|
277 |
$un_tag->setLabel($tag->getLabel()); |
|
278 |
$un_tag->setOriginalLabel($tag->getOriginalLabel()); |
|
279 |
$un_tag->setUrlStatus(Tag::$TAG_URL_STATUS_DICT['null_result']); |
|
280 |
$un_tag->setWikipediaUrl(null); |
|
281 |
$un_tag->setWikipediaPageId(null); |
|
282 |
$un_tag->setDbpediaUri(null); |
|
283 |
$un_tag->setCategory($tag->getCategory()); |
|
284 |
$un_tag->setAlias($tag->getAlias()); |
|
285 |
$un_tag->setPopularity($tag->getPopularity()); |
|
286 |
$em->persist($un_tag); |
|
| 13 | 287 |
$un_tag_created = TRUE; |
| 2 | 288 |
} |
289 |
||
| 13 | 290 |
if($id_doc && $id_doc!=""){ |
291 |
// We associate the unsemantized tag to the DocumentTag and save datas |
|
292 |
// TODO: do the request on external id of document |
|
293 |
$dt = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOneBy(array('document' => $id_doc, 'tag' => $id_tag)); |
|
294 |
$dt->setTag($un_tag); |
|
295 |
$em->flush(); |
|
296 |
return $this->renderDocTags($id_doc); |
|
297 |
} |
|
298 |
else{ |
|
299 |
// Here we are in the context of tag list. |
|
300 |
if($un_tag_created==TRUE){ |
|
301 |
$em->flush(); |
|
302 |
$num_page = $this->getRequest()->request->get('num_page'); |
|
303 |
$nb_by_page = $this->getRequest()->request->get('nb_by_page'); |
|
304 |
$sort = $this->getRequest()->request->get('sort'); |
|
305 |
$searched = $this->getRequest()->request->get('searched'); |
|
306 |
return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched); |
|
307 |
} |
|
308 |
else{ |
|
309 |
// The unsemantized version of the tag already exist, so we send an error. |
|
310 |
return new Response(json_encode(array('error' => 'duplicate_tag', 'message' => sprintf("La version désémantisée du tag %s (%s) existe déjà.", $un_tag->getLabel(), $un_tag->getOriginalLabel()))),400); |
|
311 |
} |
|
312 |
} |
|
| 2 | 313 |
} |
314 |
||
315 |
||
316 |
/** |
|
317 |
* |
|
318 |
* TODO: Enter description here ... |
|
319 |
*/ |
|
320 |
public function updateTagCategoryAction() |
|
321 |
{ |
|
322 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
|
323 |
$id_tag = $this->getRequest()->request->get('id'); |
|
324 |
$cat_label = $this->getRequest()->request->get('value'); |
|
325 |
// We get the Tag and update its category. |
|
326 |
$em = $this->getDoctrine()->getEntityManager(); |
|
327 |
$tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag); |
|
328 |
if($cat_label==''){ |
|
329 |
$cat = null; |
|
330 |
$tag->nullCategory(); |
|
331 |
} |
|
332 |
else{ |
|
333 |
$cat = $this->getDoctrine()->getRepository('WikiTagBundle:Category')->findOneBy(array('label' => $cat_label)); |
|
334 |
$tag->setCategory($cat); |
|
335 |
} |
|
336 |
$em->flush(); |
|
337 |
||
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
338 |
if($id_doc && $id_doc!=""){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
339 |
return $this->renderDocTags($id_doc); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
340 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
341 |
else{ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
342 |
$num_page = $this->getRequest()->request->get('num_page'); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
343 |
$nb_by_page = $this->getRequest()->request->get('nb_by_page'); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
344 |
$sort = $this->getRequest()->request->get('sort'); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
345 |
$searched = $this->getRequest()->request->get('searched'); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
346 |
return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
347 |
} |
| 2 | 348 |
} |
349 |
||
350 |
||
351 |
/** |
|
352 |
* |
|
353 |
* Generic render partial template |
|
354 |
* @param unknown_type $id_doc |
|
355 |
*/ |
|
356 |
public function renderDocTags($id_doc) |
|
357 |
{ |
|
358 |
$ordered_tags = $this->getDoctrine()->getRepository('WikiTagBundle:DocumentTag')->findOrderedTagsForDoc($id_doc); |
|
359 |
return $this->render('WikiTagBundle:WikiTag:tagTable.html.twig', array('ordered_tags' => $ordered_tags, 'doc_id' => $id_doc)); |
|
360 |
} |
|
| 7 | 361 |
|
362 |
||
363 |
/** |
|
364 |
* |
|
365 |
* TODO : Enter description here ... |
|
366 |
* TODO : implement |
|
367 |
* @return \Symfony\Bundle\FrameworkBundle\Controller\Response |
|
368 |
*/ |
|
369 |
public function updateTagAliasAction() |
|
370 |
{ |
|
| 12 | 371 |
$id_tag = $this->getRequest()->request->get('id'); |
372 |
$alias = $this->getRequest()->request->get('value'); |
|
373 |
// We get the Tag and update its category. |
|
374 |
$em = $this->getDoctrine()->getEntityManager(); |
|
375 |
$tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->find($id_tag); |
|
376 |
$tag->setAlias($alias); |
|
377 |
$em->flush(); |
|
378 |
||
| 7 | 379 |
$id_doc = $this->getRequest()->request->get('wikitag_document_id'); |
| 12 | 380 |
if($id_doc && $id_doc!=""){ |
381 |
// In case we changed the alias from the document view |
|
382 |
return $this->renderDocTags($id_doc); |
|
383 |
} |
|
384 |
else{ |
|
385 |
// In case we changed the alias from the tag list. |
|
386 |
$num_page = $this->getRequest()->request->get('num_page'); |
|
387 |
$nb_by_page = $this->getRequest()->request->get('nb_by_page'); |
|
388 |
$sort = $this->getRequest()->request->get('sort'); |
|
389 |
$searched = $this->getRequest()->request->get('searched'); |
|
390 |
return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched); |
|
391 |
} |
|
| 7 | 392 |
} |
393 |
||
394 |
/** |
|
395 |
* List of all tags |
|
396 |
* TODO: Enter description here ... |
|
397 |
*/ |
|
398 |
public function allTagsAction() |
|
399 |
{ |
|
400 |
// $this->getRequest()->query->get('foo') does not work "because" we are a second controller. So we have to use $_GET. |
|
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
401 |
// Searched string |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
402 |
$searched = NULL; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
403 |
if(array_key_exists('searched', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
404 |
$searched = $_GET['searched']; |
| 7 | 405 |
} |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
406 |
// Number of tags per page |
| 8 | 407 |
$nb_by_page = 50; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
408 |
if(array_key_exists('nb_by_page', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
409 |
$nb_by_page = intval($_GET['nb_by_page']); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
410 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
411 |
// Current page number |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
412 |
$num_page = 1; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
413 |
if(array_key_exists('num_page', $_GET)){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
414 |
$num_page = intval($_GET['num_page']); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
415 |
} |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
416 |
// Sorting criteria |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
417 |
$sort = NULL; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
418 |
if(array_key_exists('sort', $_GET)){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
419 |
$sort = $_GET['sort']; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
420 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
421 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
422 |
// We get the needed datas in an array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
423 |
$ar = $this->getAllTags($num_page, $nb_by_page, $sort, $searched); |
| 16 | 424 |
//return new Response($ar); |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
425 |
$tags = $ar[0]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
426 |
$num_page = $ar[1]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
427 |
$nb_by_page = $ar[2]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
428 |
$searched = $ar[3]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
429 |
$sort = $ar[4]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
430 |
$reverse_sort = $ar[5]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
431 |
$pagerfanta = $ar[6]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
432 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
433 |
// We get the needed vars : number totals of tags, previous and next page number |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
434 |
$last_page = $pagerfanta->getNbPages(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
435 |
$nb_total = $pagerfanta->getNbResults(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
436 |
$prev_page = 1; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
437 |
if($pagerfanta->hasPreviousPage()){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
438 |
$prev_page = $pagerfanta->getPreviousPage(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
439 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
440 |
$next_page = $last_page; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
441 |
if($pagerfanta->hasNextPage()){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
442 |
$next_page = $pagerfanta->getNextPage(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
443 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
444 |
// We calculate start_index and end_index (number of tags in the whole list) |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
445 |
$start_index = 1 + (($num_page - 1) * $nb_by_page); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
446 |
$end_index = min($nb_total, $start_index + $nb_by_page - 1); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
447 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
448 |
// We build the list of tags's first letters to make quick search. |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
449 |
$conn = $this->getDoctrine()->getEntityManager()->getConnection(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
450 |
$sql = "SELECT UPPER(SUBSTRING(normalized_label,1,1)) as fl FROM wikitag_tag GROUP BY fl ORDER BY fl"; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
451 |
$letters = $conn->query($sql)->fetchAll(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
452 |
$search_def = array(); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
453 |
foreach ($letters as $l){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
454 |
$search_def[$l[0]] = $l[0].WikiTagController::$SEARCH_STAR_CHARACTER; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
455 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
456 |
|
| 21 | 457 |
return $this->render('WikiTagBundle:WikiTag:TagList.html.twig', |
458 |
array('tags' => $tags, 'searched' => $searched, 'search_def' => $search_def, 'nb_by_page' => $nb_by_page, 'sort' => $sort, |
|
459 |
'start_index' => $start_index, 'end_index' => $end_index, 'nb_total' => $nb_total, 'num_page' => $num_page, 'last_page' => $last_page, |
|
460 |
'prev_page' => $prev_page, 'next_page' => $next_page, 'reverse_sort' => $reverse_sort, 'route_for_documents_by_tag' => $this->container->getParameter("wiki_tag.route_for_documents_by_tag"))); |
|
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
461 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
462 |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
463 |
/** |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
464 |
* Modify the tag in the context of all tags list. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
465 |
*/ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
466 |
public function modifyTagAction() |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
467 |
{ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
468 |
$tag_label = $this->getRequest()->request->get('value'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
469 |
$id_moved_tag = $this->getRequest()->request->get('id'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
470 |
$moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag)); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
471 |
// We update the tag label and its wikipedia info with the new label. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
472 |
$this->updateTagWithNewLabel($moved_tag, $tag_label); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
473 |
|
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
474 |
// We render the tag list. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
475 |
$num_page = $this->getRequest()->request->get('num_page'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
476 |
$nb_by_page = $this->getRequest()->request->get('nb_by_page'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
477 |
$sort = $this->getRequest()->request->get('sort'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
478 |
$searched = $this->getRequest()->request->get('searched'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
479 |
return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
480 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
481 |
|
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
482 |
/** |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
483 |
* |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
484 |
* Resemantize the tag with its original label. Kind of undo if we changed the tag's label. |
| 29 | 485 |
* |
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
486 |
*/ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
487 |
public function resetWpInfoAction() |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
488 |
{ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
489 |
$id_moved_tag = $this->getRequest()->request->get('tag_id'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
490 |
$moved_tag = $this->getDoctrine()->getRepository('WikiTagBundle:Tag')->findOneBy(array('id' => $id_moved_tag)); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
491 |
// We update the tag label and its wikipedia info with the original label. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
492 |
$this->updateTagWithNewLabel($moved_tag, $moved_tag->getOriginalLabel()); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
493 |
|
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
494 |
// We render the tag list. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
495 |
$num_page = $this->getRequest()->request->get('num_page'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
496 |
$nb_by_page = $this->getRequest()->request->get('nb_by_page'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
497 |
$sort = $this->getRequest()->request->get('sort'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
498 |
$searched = $this->getRequest()->request->get('searched'); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
499 |
return $this->renderAllTags($num_page, $nb_by_page, $sort, $searched); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
500 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
501 |
|
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
502 |
|
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
503 |
/** |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
504 |
* Generic render partial template for tag list |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
505 |
*/ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
506 |
private function updateTagWithNewLabel($tag, $label) |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
507 |
{ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
508 |
if($tag!=null && $label!=null){ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
509 |
if($label!=$tag->getLabel()){ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
510 |
// We get the Wikipedia informations for the sent label |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
511 |
$tag_label_normalized = WikiTagUtils::normalizeTag($label); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
512 |
$wp_response = WikiTagUtils::getWikipediaInfo($tag_label_normalized); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
513 |
$new_label = $wp_response['new_label']; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
514 |
$status = $wp_response['status']; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
515 |
$url = $wp_response['wikipedia_url']; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
516 |
$pageid = $wp_response['pageid']; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
517 |
$dbpedia_uri = $wp_response["dbpedia_uri"]; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
518 |
$wikipedia_revision_id = $wp_response['revision_id']; |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
519 |
// We save the datas : we DO NOT create a new tag, we change the current tag's informations |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
520 |
if($new_label!=null){ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
521 |
$tag->setLabel($new_label); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
522 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
523 |
if($status!=null){ |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
524 |
$tag->setUrlStatus($status); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
525 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
526 |
$tag->setWikipediaUrl($url); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
527 |
$tag->setWikipediaPageId($pageid); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
528 |
$tag->setDbpediaUri($dbpedia_uri); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
529 |
// Save datas. |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
530 |
$em = $this->getDoctrine()->getEntityManager(); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
531 |
$em->persist($tag); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
532 |
$em->flush(); |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
533 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
534 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
535 |
} |
|
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
536 |
|
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
537 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
538 |
/** |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
539 |
* Generic render partial template for tag list |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
540 |
*/ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
541 |
public function renderAllTags($num_page=NULL, $nb_by_page=NULL, $sort=NULL, $searched=NULL) |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
542 |
{ |
|
14
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
543 |
|
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
544 |
//We get the needed datas in an array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta); |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
545 |
$ar = $this->getAllTags($num_page, $nb_by_page, $sort, $searched); |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
546 |
$tags = $ar[0]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
547 |
$num_page = $ar[1]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
548 |
$nb_by_page = $ar[2]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
549 |
$searched = $ar[3]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
550 |
$sort = $ar[4]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
551 |
$reverse_sort = $ar[5]; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
552 |
|
| 21 | 553 |
return $this->render('WikiTagBundle:WikiTag:TagListTable.html.twig', |
554 |
array('tags' => $tags, 'searched' => $searched, 'nb_by_page' => $nb_by_page, 'sort' => $sort, 'num_page' => $num_page, |
|
|
22
99c15cfe420b
Add ModifyTag from tag list. Add Reset Wikipedia info from tag list. Enable boolean from addJavascript controller/template to switch from list or document context.
cavaliet
parents:
21
diff
changeset
|
555 |
'reverse_sort' => $reverse_sort, 'route_for_documents_by_tag' => $this->container->getParameter("wiki_tag.route_for_documents_by_tag"))); |
|
14
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
556 |
|
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
557 |
return $this->getAllTags(); |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
558 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
559 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
560 |
|
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
561 |
/** |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
562 |
* Generic to get all tags with the context (pagination number, nb by page, searched string, sort) |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
563 |
*/ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
564 |
private function getAllTags($num_page=NULL, $nb_by_page=NULL, $sort=NULL, $searched=NULL) |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
565 |
{ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
566 |
// We get/set all the parameters for the search and pagination. |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
567 |
// Searched string |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
568 |
if($searched==NULL){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
569 |
$searched = ""; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
570 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
571 |
// Number of tags per page |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
572 |
if($nb_by_page==NULL){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
573 |
$nb_by_page = 50; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
574 |
} |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
575 |
// Current page number |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
576 |
if($num_page==NULL){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
577 |
$num_page = 1; |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
578 |
} |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
579 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
580 |
// We build the query. |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
581 |
$qb = $this->getDoctrine()->getEntityManager()->createQueryBuilder(); |
|
14
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
582 |
$qb->select('t', 'COUNT( dt.id ) AS nb_docs'); |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
583 |
$qb->from('WikiTagBundle:Tag','t'); |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
584 |
$qb->leftJoin('t.documents', 'dt', 'WITH', 't = dt.tag'); |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
585 |
$qb->addGroupBy('t.id'); |
|
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
586 |
|
| 16 | 587 |
// We add the search string if necessary |
588 |
if($searched!=""){ |
|
589 |
// We replace "*" by "%", and doctrine wants ' to be ''. |
|
590 |
$qb->where($qb->expr()->orx($qb->expr()->like('t.normalizedLabel', "'".str_replace("'", "''", str_replace("*", "%", $searched))."'"))); |
|
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
591 |
} |
| 16 | 592 |
//return $qb->getDql(); |
|
14
673b2766024e
Update ORM configuration to allow JOIN between Tag and DocumentTag. TagList template has now the number of documents by tag.
cavaliet
parents:
13
diff
changeset
|
593 |
|
|
10
a1234ceba912
add first letter list. It works but searching ' bugs.
cavaliet
parents:
9
diff
changeset
|
594 |
// We add the sorting criteria |
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
595 |
if($sort==NULL){ |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
596 |
$sort = "popd"; // sort by descendent popularity by default. |
|
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
597 |
$reverse_sort = "popa"; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
598 |
} |
| 26 | 599 |
//$sort_query = "nb_docs DESC t.popularity DESC t.normalizedLabel ASC t.label ASC"; |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
600 |
switch($sort){ |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
601 |
case "popd": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
602 |
$qb->addOrderBy('t.popularity','DESC'); |
| 26 | 603 |
$qb->addOrderBy('nb_docs','DESC'); |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
604 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
605 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
606 |
$reverse_sort = "popa"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
607 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
608 |
case "popa": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
609 |
$qb->addOrderBy('t.popularity','ASC'); |
| 26 | 610 |
$qb->addOrderBy('nb_docs','DESC'); |
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
611 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
612 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
613 |
$reverse_sort = "popd"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
614 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
615 |
case "labd": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
616 |
$qb->addOrderBy('t.normalizedLabel','DESC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
617 |
$qb->addOrderBy('t.label','DESC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
618 |
$reverse_sort = "laba"; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
619 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
620 |
case "laba": |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
621 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
622 |
$qb->addOrderBy('t.label','ASC'); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
623 |
$reverse_sort = "labd"; |
| 26 | 624 |
case "nbd": |
625 |
$qb->addOrderBy('nb_docs','DESC'); |
|
626 |
$qb->addOrderBy('t.popularity','DESC'); |
|
627 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
628 |
$qb->addOrderBy('t.label','ASC'); |
|
629 |
$reverse_sort = "nba"; |
|
630 |
break; |
|
631 |
case "nba": |
|
632 |
$qb->addOrderBy('nb_docs','ASC'); |
|
633 |
$qb->addOrderBy('t.popularity','DESC'); |
|
634 |
$qb->addOrderBy('t.normalizedLabel','ASC'); |
|
635 |
$qb->addOrderBy('t.label','ASC'); |
|
636 |
$reverse_sort = "nbd"; |
|
|
9
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
637 |
break; |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
638 |
} |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
639 |
|
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
640 |
// We paginate |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
641 |
$adapter = new DoctrineORMAdapter($qb); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
642 |
$pagerfanta = new Pagerfanta($adapter); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
643 |
$pagerfanta->setMaxPerPage($nb_by_page); // 10 by default |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
644 |
$pagerfanta->setCurrentPage($num_page); // 1 by default |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
645 |
$nb_total = $pagerfanta->getNbResults(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
646 |
$tags = $pagerfanta->getCurrentPageResults(); |
|
cc32af725176
first step for tag list and add Pagerfanta for paginator
cavaliet
parents:
8
diff
changeset
|
647 |
$pagerfanta->haveToPaginate(); // whether the number of results if higher than the max per page |
| 15 | 648 |
|
|
11
5f038a505cd7
Debug Category on tag list and document. Finish pagination for tag list.
cavaliet
parents:
10
diff
changeset
|
649 |
return array($tags, $num_page, $nb_by_page, $searched, $sort, $reverse_sort, $pagerfanta); |
| 7 | 650 |
} |
| 2 | 651 |
|
652 |
||
653 |
} |