aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorMatt Friedman <maf675@gmail.com>2015-05-04 10:33:14 -0700
committerMatt Friedman <maf675@gmail.com>2015-05-04 10:33:14 -0700
commit5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e (patch)
treea3a72a68c08485c4a93272d14d506190dba5f1d3 /phpBB
parentacaa10de529408ba9ca366d021fc1f1bc4bdf904 (diff)
downloadforums-5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e.tar
forums-5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e.tar.gz
forums-5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e.tar.bz2
forums-5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e.tar.xz
forums-5a107d9dc1b5e11401caa7f3d7cafc4d4d0d4f7e.zip
[ticket/13516] Update image search script
PHPBB3-13516
Diffstat (limited to 'phpBB')
0 files changed, 0 insertions, 0 deletions
an> */ namespace phpbb\db\migration\data\v310; class profilefield_googleplus extends \phpbb\db\migration\profilefield_base_migration { static public function depends_on() { return array( '\phpbb\db\migration\data\v310\profilefield_contact_field', '\phpbb\db\migration\data\v310\profilefield_show_novalue', '\phpbb\db\migration\data\v310\profilefield_types', ); } public function update_data() { return array( array('custom', array(array($this, 'create_custom_field'))), ); } protected $profilefield_name = 'phpbb_googleplus'; protected $profilefield_database_type = array('VCHAR', ''); protected $profilefield_data = array( 'field_name' => 'phpbb_googleplus', 'field_type' => 'profilefields.type.googleplus', 'field_ident' => 'phpbb_googleplus', 'field_length' => '20', 'field_minlen' => '3', 'field_maxlen' => '255', 'field_novalue' => '', 'field_default_value' => '', 'field_validation' => '[\w]+', 'field_required' => 0, 'field_show_novalue' => 0, 'field_show_on_reg' => 0, 'field_show_on_pm' => 1, 'field_show_on_vt' => 1, 'field_show_profile' => 1, 'field_hide' => 0, 'field_no_view' => 0, 'field_active' => 1, 'field_is_contact' => 1, 'field_contact_desc' => 'VIEW_GOOGLEPLUS_PROFILE', 'field_contact_url' => 'http://plus.google.com/%s', ); }