'avatar.driver.upload', AVATAR_REMOTE => 'avatar.driver.remote', AVATAR_GALLERY => 'avatar.driver.local', ); static public function depends_on() { return array( '\phpbb\db\migration\data\v310\dev', '\phpbb\db\migration\data\v310\avatars', ); } public function update_data() { return array( array('custom', array(array($this, 'update_user_avatar_type'))), array('custom', array(array($this, 'update_group_avatar_type'))), ); } public function update_user_avatar_type() { foreach ($this->avatar_type_map as $old => $new) { $sql = 'UPDATE ' . $this->table_prefix . "users SET user_avatar_type = '$new' WHERE user_avatar_type = '$old'"; $this->db->sql_query($sql); } } public function update_group_avatar_type() { foreach ($this->avatar_type_map as $old => $new) { $sql = 'UPDATE ' . $this->table_prefix . "groups SET group_avatar_type = '$new' WHERE group_avatar_type = '$old'"; $this->db->sql_query($sql); } } }