Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
CRAP | |
100.00% |
1 / 1 |
| profilefield_yahoo | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |
100.00% |
1 / 1 |
| depends_on | |
100.00% |
3 / 3 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * For full copyright and license information, please see |
| 10 | * the docs/CREDITS.txt file. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | namespace phpbb\db\migration\data\v310; |
| 15 | |
| 16 | class profilefield_yahoo extends \phpbb\db\migration\profilefield_base_migration |
| 17 | { |
| 18 | public static function depends_on() |
| 19 | { |
| 20 | return array( |
| 21 | '\phpbb\db\migration\data\v310\profilefield_wlm_cleanup', |
| 22 | ); |
| 23 | } |
| 24 | |
| 25 | protected $profilefield_name = 'phpbb_yahoo'; |
| 26 | |
| 27 | protected $profilefield_database_type = array('VCHAR', ''); |
| 28 | |
| 29 | protected $profilefield_data = array( |
| 30 | 'field_name' => 'phpbb_yahoo', |
| 31 | 'field_type' => 'profilefields.type.string', |
| 32 | 'field_ident' => 'phpbb_yahoo', |
| 33 | 'field_length' => '40', |
| 34 | 'field_minlen' => '5', |
| 35 | 'field_maxlen' => '255', |
| 36 | 'field_novalue' => '', |
| 37 | 'field_default_value' => '', |
| 38 | 'field_validation' => '.*', |
| 39 | 'field_required' => 0, |
| 40 | 'field_show_novalue' => 0, |
| 41 | 'field_show_on_reg' => 0, |
| 42 | 'field_show_on_pm' => 1, |
| 43 | 'field_show_on_vt' => 1, |
| 44 | 'field_show_on_ml' => 0, |
| 45 | 'field_show_profile' => 1, |
| 46 | 'field_hide' => 0, |
| 47 | 'field_no_view' => 0, |
| 48 | 'field_active' => 1, |
| 49 | 'field_is_contact' => 1, |
| 50 | 'field_contact_desc' => 'SEND_YIM_MESSAGE', |
| 51 | 'field_contact_url' => 'http://edit.yahoo.com/config/send_webmesg?.target=%s&.src=pg', |
| 52 | ); |
| 53 | |
| 54 | protected $user_column_name = 'user_yim'; |
| 55 | } |