Code Coverage
 
Classes and Traits
Functions and Methods
Lines
Total
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 4
CRAP
0.00% covered (danger)
0.00%
0 / 18
avatar_types
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 4
42
0.00% covered (danger)
0.00%
0 / 18
 depends_on
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 3
 update_data
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 3
 update_user_avatar_type
0.00% covered (danger)
0.00%
0 / 1
6
0.00% covered (danger)
0.00%
0 / 6
 update_group_avatar_type
0.00% covered (danger)
0.00%
0 / 1
6
0.00% covered (danger)
0.00%
0 / 6
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v310;
class avatar_types extends \phpbb\db\migration\migration
{
    /**
    * @var avatar type map
    */
    protected $avatar_type_map = array(
        AVATAR_UPLOAD    => '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);
        }
    }
}