Details |
Last modification |
View Log
| Rev |
Author |
Line No. |
Line |
| 41 |
mjordaan |
1 |
<?php namespace ProcessWire;
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Adds a 'data' column to the fieldgroups_fields table
|
|
|
5 |
*
|
|
|
6 |
*/
|
|
|
7 |
class SystemUpdate4 extends SystemUpdate {
|
|
|
8 |
|
|
|
9 |
public function execute() {
|
|
|
10 |
$this->modules->resetCache();
|
|
|
11 |
$this->modules->install('AdminThemeDefault');
|
|
|
12 |
$this->message("Added new default admin theme. To configure or remove this theme, see Modules > Core > Admin > Default Admin Theme.");
|
|
|
13 |
return true;
|
|
|
14 |
}
|
|
|
15 |
}
|