touch_icons.install in Touch Icons 6
File
touch_icons.install
View source
<?php
function touch_icons_update_6100() {
$settings = theme_get_settings(NULL);
if (!empty($settings[touch_icon_path_plain])) {
$settings[touch_icon_plain_path] = $settings[touch_icon_path_plain];
unset($settings[touch_icon_path_plain]);
}
if (!empty($settings[touch_icon_path_precomp])) {
$settings[touch_icon_precomp_path] = $settings[touch_icon_path_precomp];
unset($settings[touch_icon_path_precomp]);
}
variable_set('theme_settings', $settings);
$allThemes = list_themes(TRUE);
foreach ($allThemes as $key => $value) {
if (variable_get('theme_' . $key . '_settings', NULL)) {
$settings = theme_get_settings($key);
if (!empty($settings[touch_icon_path_plain])) {
$settings[touch_icon_plain_path] = $settings[touch_icon_path_plain];
unset($settings[touch_icon_path_plain]);
}
if (!empty($settings[touch_icon_path_precomp])) {
$settings[touch_icon_precomp_path] = $settings[touch_icon_path_precomp];
unset($settings[touch_icon_path_precomp]);
}
variable_set('theme_' . $key . '_settings', $settings);
}
}
return array();
}