Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
0.00% |
0 / 1 |
|
0.00% |
0 / 6 |
CRAP | |
0.00% |
0 / 29 |
teampage | |
0.00% |
0 / 1 |
|
0.00% |
0 / 6 |
90.00 | |
0.00% |
0 / 29 |
effectively_installed | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
|||
depends_on | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
|||
update_schema | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 3 |
|||
revert_schema | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 3 |
|||
update_data | |
0.00% |
0 / 1 |
2.00 | |
0.00% |
0 / 1 |
|||
add_groups_teampage | |
0.00% |
0 / 1 |
20.00 | |
0.00% |
0 / 20 |
<?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 teampage extends \phpbb\db\migration\migration | |
{ | |
public function effectively_installed() | |
{ | |
return $this->db_tools->sql_table_exists($this->table_prefix . 'teampage'); | |
} | |
static public function depends_on() | |
{ | |
return array('\phpbb\db\migration\data\v310\dev'); | |
} | |
public function update_schema() | |
{ | |
return array( | |
'add_tables' => array( | |
$this->table_prefix . 'teampage' => array( | |
'COLUMNS' => array( | |
'teampage_id' => array('UINT', null, 'auto_increment'), | |
'group_id' => array('UINT', 0), | |
'teampage_name' => array('VCHAR_UNI:255', ''), | |
'teampage_position' => array('UINT', 0), | |
'teampage_parent' => array('UINT', 0), | |
), | |
'PRIMARY_KEY' => 'teampage_id', | |
), | |
), | |
'drop_columns' => array( | |
$this->table_prefix . 'groups' => array( | |
'group_teampage', | |
), | |
), | |
); | |
} | |
public function revert_schema() | |
{ | |
return array( | |
'drop_tables' => array( | |
$this->table_prefix . 'teampage', | |
), | |
'add_columns' => array( | |
$this->table_prefix . 'groups' => array( | |
'group_teampage' => array('UINT', 0, 'after' => 'group_legend'), | |
), | |
), | |
); | |
} | |
public function update_data() | |
{ | |
return array( | |
array('custom', array(array($this, 'add_groups_teampage'))), | |
); | |
} | |
public function add_groups_teampage() | |
{ | |
$sql = 'SELECT teampage_id | |
FROM ' . TEAMPAGE_TABLE; | |
$result = $this->db->sql_query_limit($sql, 1); | |
$added_groups_teampage = (bool) $this->db->sql_fetchfield('teampage_id'); | |
$this->db->sql_freeresult($result); | |
if (!$added_groups_teampage) | |
{ | |
$sql = 'SELECT * | |
FROM ' . GROUPS_TABLE . ' | |
WHERE group_type = ' . GROUP_SPECIAL . " | |
AND (group_name = 'ADMINISTRATORS' | |
OR group_name = 'GLOBAL_MODERATORS') | |
ORDER BY group_name ASC"; | |
$result = $this->db->sql_query($sql); | |
$teampage_entries = array(); | |
while ($row = $this->db->sql_fetchrow($result)) | |
{ | |
$teampage_entries[] = array( | |
'group_id' => (int) $row['group_id'], | |
'teampage_name' => '', | |
'teampage_position' => count($teampage_entries) + 1, | |
'teampage_parent' => 0, | |
); | |
} | |
$this->db->sql_freeresult($result); | |
if (count($teampage_entries)) | |
{ | |
$this->db->sql_multi_insert(TEAMPAGE_TABLE, $teampage_entries); | |
} | |
unset($teampage_entries); | |
} | |
} | |
} |