1 system.install system_update_1106()

Set icon browser default number of icons per page.

Related topics

File

core/modules/system/system.install, line 3916
Install, update and uninstall functions for the system module.

Code

function system_update_1106() {
  $config = config('system.core');
  if ($config->get('icon_browser_icons_per_page') === NULL) {
    $config->set('icon_browser_icons_per_page', 110);
    $config->save();
  }
}