blob: 8c98949bdcd4f7258ef3a46913e20d1ba4879f35 (
plain)
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
|
<?php
class Controllerhome extends Controllerdb
{
protected $modelhome;
protected $opt;
public function __construct() {
parent::__construct();
$this->modelhome = new Modelhome;
}
public function desktop()
{
$this->table2();
}
public function table2()
{
$table = $this->artmanager->getlister(['id', 'tag', 'linkfrom', 'linkto', 'description', 'title', 'datemodif', 'datecreation', 'secure']);
$this->opt = $this->modelhome->optinit($table);
$table2 = $this->modelhome->table2($table, $this->opt);
$this->showtemplate('home', ['user' => $this->user, 'table2' => $table2, 'opt' =>$this->opt]);
}
public function analyseall()
{
if($this->user->level() >= Modeluser::EDITOR) {
$scan = new Modelanalyse;
$scan->analyseall();
$this->table2();
}
}
public function massedit()
{
echo '<h2>Mass Edit</h2>';
}
}
?>
|