artabro/wire/modules/System/SystemUpdater/SystemUpdate4.php
2024-08-27 11:35:37 +02:00

15 lines
409 B
PHP

<?php namespace ProcessWire;
/**
* Adds a 'data' column to the fieldgroups_fields table
*
*/
class SystemUpdate4 extends SystemUpdate {
public function execute() {
$this->modules->resetCache();
$this->modules->install('AdminThemeDefault');
$this->message("Added new default admin theme. To configure or remove this theme, see Modules > Core > Admin > Default Admin Theme.");
return true;
}
}