forked from moodle/moodle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
listlib.php
627 lines (567 loc) · 22.2 KB
/
listlib.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// Moodle is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
/**
* Classes for displaying and editing a nested list of items.
*
* Handles functionality for :
*
* Construction of nested list from db records with some key pointing to a parent id.
* Display of list with or without editing icons with optional pagination.
* Reordering of items works across pages.
* Processing of editing actions on list.
*
* @package core
* @subpackage lib
* @copyright Jamie Pratt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
/**
* Clues to reading this code:
*
* The functions that move things around the tree structure just update the
* database - they don't update the in-memory structure, instead they trigger a
* page reload so everything is rebuilt from scratch.
*
* @package moodlecore
* @copyright Jamie Pratt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
abstract class moodle_list {
public $attributes;
public $listitemclassname = 'list_item';
/** @var array of $listitemclassname objects. */
public $items = array();
/** @var string 'ol' or 'ul'. */
public $type;
/** @var list_item or derived class. */
public $parentitem = null;
public $table;
public $fieldnamesparent = 'parent';
/** @var array Records from db, only used in top level list. */
public $records = array();
public $editable;
/** @var array keys are child ids, values are parents. */
public $childparent;
//------------------------------------------------------
//vars used for pagination.
public $page = 0; // 0 means no pagination
public $firstitem = 1;
public $lastitem = 999999;
public $pagecount;
public $paged = false;
public $offset = 0;
//------------------------------------------------------
public $pageurl;
public $pageparamname;
/**
* Constructor.
*
* @param string $type
* @param string $attributes
* @param boolean $editable
* @param moodle_url $pageurl url for this page
* @param integer $page if 0 no pagination. (These three params only used in top level list.)
* @param string $pageparamname name of url param that is used for passing page no
* @param integer $itemsperpage no of top level items.
*/
public function __construct($type='ul', $attributes='', $editable = false, $pageurl=null, $page = 0, $pageparamname = 'page', $itemsperpage = 20) {
global $PAGE;
$this->editable = $editable;
$this->attributes = $attributes;
$this->type = $type;
$this->page = $page;
$this->pageparamname = $pageparamname;
$this->itemsperpage = $itemsperpage;
if ($pageurl === null) {
$this->pageurl = new moodle_url($PAGE->url);
$this->pageurl->params(array($this->pageparamname => $this->page));
} else {
$this->pageurl = $pageurl;
}
}
/**
* Returns html string.
*
* @param integer $indent depth of indentation.
*/
public function to_html($indent=0, $extraargs=array()) {
if (count($this->items)) {
$tabs = str_repeat("\t", $indent);
$first = true;
$itemiter = 1;
$lastitem = '';
$html = '';
foreach ($this->items as $item) {
$last = (count($this->items) == $itemiter);
if ($this->editable) {
$item->set_icon_html($first, $last, $lastitem);
}
if ($itemhtml = $item->to_html($indent+1, $extraargs)) {
$html .= "$tabs\t<li".((!empty($item->attributes))?(' '.$item->attributes):'').">";
$html .= $itemhtml;
$html .= "</li>\n";
}
$first = false;
$lastitem = $item;
$itemiter++;
}
} else {
$html = '';
}
if ($html) { //if there are list items to display then wrap them in ul / ol tag.
$tabs = str_repeat("\t", $indent);
$html = $tabs.'<'.$this->type.((!empty($this->attributes))?(' '.$this->attributes):'').">\n".$html;
$html .= $tabs."</".$this->type.">\n";
} else {
$html ='';
}
return $html;
}
/**
* Recurse down the tree and find an item by it's id.
*
* @param integer $id
* @param boolean $suppresserror error if not item found?
* @return list_item *copy* or null if item is not found
*/
public function find_item($id, $suppresserror = false) {
if (isset($this->items)) {
foreach ($this->items as $key => $child) {
if ($child->id == $id) {
return $this->items[$key];
}
}
foreach (array_keys($this->items) as $key) {
$thischild = $this->items[$key];
$ref = $thischild->children->find_item($id, true);//error always reported at top level
if ($ref !== null) {
return $ref;
}
}
}
if (!$suppresserror) {
print_error('listnoitem');
}
return null;
}
public function add_item($item) {
$this->items[] = $item;
}
public function set_parent($parent) {
$this->parentitem = $parent;
}
/**
* Produces a hierarchical tree of list items from a flat array of records.
* 'parent' field is expected to point to a parent record.
* records are already sorted.
* If the parent field doesn't point to another record in the array then this is
* a top level list
*
* @param integer $offset how many list toplevel items are there in lists before this one
* @return array(boolean, integer) whether there is more than one page, $offset + how many toplevel items where there in this list.
*
*/
public function list_from_records($paged = false, $offset = 0) {
$this->paged = $paged;
$this->offset = $offset;
$this->get_records();
$records = $this->records;
$page = $this->page;
if (!empty($page)) {
$this->firstitem = ($page - 1) * $this->itemsperpage;
$this->lastitem = $this->firstitem + $this->itemsperpage - 1;
}
$itemiter = $offset;
//make a simple array which is easier to search
$this->childparent = array();
foreach ($records as $record) {
$this->childparent[$record->id] = $record->parent;
}
//create top level list items and they're responsible for creating their children
foreach ($records as $record) {
if (array_key_exists($record->parent, $this->childparent)) {
// This record is a child of another record, so it will be dealt
// with by a call to list_item::create_children, not here.
continue;
}
$inpage = $itemiter >= $this->firstitem && $itemiter <= $this->lastitem;
// Make list item for top level for all items
// we need the info about the top level items for reordering peers.
if ($this->parentitem !== null) {
$newattributes = $this->parentitem->attributes;
} else {
$newattributes = '';
}
$this->items[$itemiter] = new $this->listitemclassname($record, $this, $newattributes, $inpage);
if ($inpage) {
$this->items[$itemiter]->create_children($records, $this->childparent, $record->id);
} else {
// Don't recurse down the tree for items that are not on this page
$this->paged = true;
}
$itemiter++;
}
return array($this->paged, $itemiter);
}
/**
* Should be overriden to return an array of records of list items.
*/
public abstract function get_records();
/**
* display list of page numbers for navigation
*/
public function display_page_numbers() {
$html = '';
$topcount = count($this->items);
$this->pagecount = (integer) ceil(($topcount + $this->offset)/ QUESTION_PAGE_LENGTH );
if (!empty($this->page) && ($this->paged)) {
$html = "<div class=\"paging\">".get_string('page').":\n";
foreach (range(1,$this->pagecount) as $currentpage) {
if ($this->page == $currentpage) {
$html .= " $currentpage \n";
}
else {
$html .= "<a href=\"".$this->pageurl->out(true, array($this->pageparamname => $currentpage))."\">";
$html .= " $currentpage </a>\n";
}
}
$html .= "</div>";
}
return $html;
}
/**
* Returns an array of ids of peers of an item.
*
* @param int itemid - if given, restrict records to those with this parent id.
* @return array peer ids
*/
public function get_items_peers($itemid) {
$itemref = $this->find_item($itemid);
$peerids = $itemref->parentlist->get_child_ids();
return $peerids;
}
/**
* Returns an array of ids of child items.
*
* @return array peer ids
*/
public function get_child_ids() {
$childids = array();
foreach ($this->items as $child) {
$childids[] = $child->id;
}
return $childids;
}
/**
* Move a record up or down
*
* @param string $direction up / down
* @param integer $id
*/
public function move_item_up_down($direction, $id) {
$peers = $this->get_items_peers($id);
$itemkey = array_search($id, $peers);
switch ($direction) {
case 'down' :
if (isset($peers[$itemkey+1])) {
$olditem = $peers[$itemkey+1];
$peers[$itemkey+1] = $id;
$peers[$itemkey] = $olditem;
} else {
print_error('listcantmoveup');
}
break;
case 'up' :
if (isset($peers[$itemkey-1])) {
$olditem = $peers[$itemkey-1];
$peers[$itemkey-1] = $id;
$peers[$itemkey] = $olditem;
} else {
print_error('listcantmovedown');
}
break;
}
$this->reorder_peers($peers);
}
public function reorder_peers($peers) {
global $DB;
foreach ($peers as $key => $peer) {
$DB->set_field($this->table, "sortorder", $key, array("id"=>$peer));
}
}
/**
* @param integer $id an item index.
* @return object the item that used to be the parent of the item moved.
*/
public function move_item_left($id) {
global $DB;
$item = $this->find_item($id);
if (!isset($item->parentlist->parentitem->parentlist)) {
print_error('listcantmoveleft');
} else {
$newpeers = $this->get_items_peers($item->parentlist->parentitem->id);
if (isset($item->parentlist->parentitem->parentlist->parentitem)) {
$newparent = $item->parentlist->parentitem->parentlist->parentitem->id;
} else {
$newparent = 0; // top level item
}
$DB->set_field($this->table, "parent", $newparent, array("id"=>$item->id));
$oldparentkey = array_search($item->parentlist->parentitem->id, $newpeers);
$neworder = array_merge(array_slice($newpeers, 0, $oldparentkey+1), array($item->id), array_slice($newpeers, $oldparentkey+1));
$this->reorder_peers($neworder);
}
return $item->parentlist->parentitem;
}
/**
* Make item with id $id the child of the peer that is just above it in the sort order.
*
* @param integer $id
*/
public function move_item_right($id) {
global $DB;
$peers = $this->get_items_peers($id);
$itemkey = array_search($id, $peers);
if (!isset($peers[$itemkey-1])) {
print_error('listcantmoveright');
} else {
$DB->set_field($this->table, "parent", $peers[$itemkey-1], array("id"=>$peers[$itemkey]));
$newparent = $this->find_item($peers[$itemkey-1]);
if (isset($newparent->children)) {
$newpeers = $newparent->children->get_child_ids();
}
if ($newpeers) {
$newpeers[] = $peers[$itemkey];
$this->reorder_peers($newpeers);
}
}
}
/**
* process any actions.
*
* @param integer $left id of item to move left
* @param integer $right id of item to move right
* @param integer $moveup id of item to move up
* @param integer $movedown id of item to move down
* @return unknown
*/
public function process_actions($left, $right, $moveup, $movedown) {
//should this action be processed by this list object?
if (!(array_key_exists($left, $this->records) || array_key_exists($right, $this->records) || array_key_exists($moveup, $this->records) || array_key_exists($movedown, $this->records))) {
return false;
}
if (!empty($left)) {
$oldparentitem = $this->move_item_left($left);
if ($this->item_is_last_on_page($oldparentitem->id)) {
// Item has jumped onto the next page, change page when we redirect.
$this->page ++;
$this->pageurl->params(array($this->pageparamname => $this->page));
}
} else if (!empty($right)) {
$this->move_item_right($right);
if ($this->item_is_first_on_page($right)) {
// Item has jumped onto the previous page, change page when we redirect.
$this->page --;
$this->pageurl->params(array($this->pageparamname => $this->page));
}
} else if (!empty($moveup)) {
$this->move_item_up_down('up', $moveup);
if ($this->item_is_first_on_page($moveup)) {
// Item has jumped onto the previous page, change page when we redirect.
$this->page --;
$this->pageurl->params(array($this->pageparamname => $this->page));
}
} else if (!empty($movedown)) {
$this->move_item_up_down('down', $movedown);
if ($this->item_is_last_on_page($movedown)) {
// Item has jumped onto the next page, change page when we redirect.
$this->page ++;
$this->pageurl->params(array($this->pageparamname => $this->page));
}
} else {
return false;
}
redirect($this->pageurl);
}
/**
* @param integer $itemid an item id.
* @return boolean Is the item with the given id the first top-level item on
* the current page?
*/
public function item_is_first_on_page($itemid) {
return $this->page && isset($this->items[$this->firstitem]) &&
$itemid == $this->items[$this->firstitem]->id;
}
/**
* @param integer $itemid an item id.
* @return boolean Is the item with the given id the last top-level item on
* the current page?
*/
public function item_is_last_on_page($itemid) {
return $this->page && isset($this->items[$this->lastitem]) &&
$itemid == $this->items[$this->lastitem]->id;
}
}
/**
* @package moodlecore
* @copyright Jamie Pratt
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
abstract class list_item {
/** @var integer id of record, used if list is editable. */
public $id;
/** @var string name of this item, used if list is editable. */
public $name;
/** @var mixed The object or string representing this item. */
public $item;
public $fieldnamesname = 'name';
public $attributes;
public $display;
public $icons = array();
/** @var moodle_list */
public $parentlist;
/** @var moodle_list Set if there are any children of this listitem. */
public $children;
/**
* Constructor
* @param mixed $item fragment of html for list item or record
* @param object $parent reference to parent of this item
* @param string $attributes attributes for li tag
* @param boolean $display whether this item is displayed. Some items may be loaded so we have a complete
* structure in memory to work with for actions but are not displayed.
* @return list_item
*/
public function __construct($item, $parent, $attributes = '', $display = true) {
$this->item = $item;
if (is_object($this->item)) {
$this->id = $this->item->id;
$this->name = $this->item->{$this->fieldnamesname};
}
$this->set_parent($parent);
$this->attributes = $attributes;
$parentlistclass = get_class($parent);
$this->children = new $parentlistclass($parent->type, $parent->attributes, $parent->editable, $parent->pageurl, 0);
$this->children->set_parent($this);
$this->display = $display;
}
/**
* Output the html just for this item. Called by to_html which adds html for children.
*
*/
public function item_html($extraargs = array()) {
if (is_string($this->item)) {
$html = $this->item;
} elseif (is_object($this->item)) {
//for debug purposes only. You should create a sub class to
//properly handle the record
$html = join(', ', (array)$this->item);
}
return $html;
}
/**
* Returns html
*
* @param integer $indent
* @param array $extraargs any extra data that is needed to print the list item
* may be used by sub class.
* @return string html
*/
public function to_html($indent = 0, $extraargs = array()) {
if (!$this->display) {
return '';
}
$tabs = str_repeat("\t", $indent);
if (isset($this->children)) {
$childrenhtml = $this->children->to_html($indent+1, $extraargs);
} else {
$childrenhtml = '';
}
return $this->item_html($extraargs).' '.(join($this->icons, '')).(($childrenhtml !='')?("\n".$childrenhtml):'');
}
public function set_icon_html($first, $last, $lastitem) {
global $CFG;
$strmoveup = get_string('moveup');
$strmovedown = get_string('movedown');
$strmoveleft = get_string('maketoplevelitem', 'question');
if (right_to_left()) { // Exchange arrows on RTL
$rightarrow = 'left';
$leftarrow = 'right';
} else {
$rightarrow = 'right';
$leftarrow = 'left';
}
if (isset($this->parentlist->parentitem)) {
$parentitem = $this->parentlist->parentitem;
if (isset($parentitem->parentlist->parentitem)) {
$action = get_string('makechildof', 'question', $parentitem->parentlist->parentitem->name);
} else {
$action = $strmoveleft;
}
$url = new moodle_url($this->parentlist->pageurl, (array('sesskey'=>sesskey(), 'left'=>$this->id)));
$this->icons['left'] = $this->image_icon($action, $url, $leftarrow);
} else {
$this->icons['left'] = $this->image_spacer();
}
if (!$first) {
$url = new moodle_url($this->parentlist->pageurl, (array('sesskey'=>sesskey(), 'moveup'=>$this->id)));
$this->icons['up'] = $this->image_icon($strmoveup, $url, 'up');
} else {
$this->icons['up'] = $this->image_spacer();
}
if (!$last) {
$url = new moodle_url($this->parentlist->pageurl, (array('sesskey'=>sesskey(), 'movedown'=>$this->id)));
$this->icons['down'] = $this->image_icon($strmovedown, $url, 'down');
} else {
$this->icons['down'] = $this->image_spacer();
}
if (!empty($lastitem)) {
$makechildof = get_string('makechildof', 'question', $lastitem->name);
$url = new moodle_url($this->parentlist->pageurl, (array('sesskey'=>sesskey(), 'right'=>$this->id)));
$this->icons['right'] = $this->image_icon($makechildof, $url, $rightarrow);
} else {
$this->icons['right'] = $this->image_spacer();
}
}
public function image_icon($action, $url, $icon) {
global $OUTPUT;
return '<a title="' . s($action) .'" href="'.$url.'">
<img src="' . $OUTPUT->pix_url('t/'.$icon) . '" class="iconsmall" alt="' . s($action). '" /></a> ';
}
public function image_spacer() {
global $OUTPUT;
return '<img src="' . $OUTPUT->pix_url('spacer') . '" class="iconsmall" alt="" />';
}
/**
* Recurse down tree creating list_items, called from moodle_list::list_from_records
*
* @param array $records
* @param array $children
* @param integer $thisrecordid
*/
public function create_children(&$records, &$children, $thisrecordid) {
//keys where value is $thisrecordid
$thischildren = array_keys($children, $thisrecordid);
foreach ($thischildren as $child) {
$thisclass = get_class($this);
$newlistitem = new $thisclass($records[$child], $this->children, $this->attributes);
$this->children->add_item($newlistitem);
$newlistitem->create_children($records, $children, $records[$child]->id);
}
}
public function set_parent($parent) {
$this->parentlist = $parent;
}
}