Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
usersurveys
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
2
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
thundercats
usersurveys
Merge requests
!25
SNZ-218 Add column count to schema table schema
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
SNZ-218 Add column count to schema table schema
SNZ-218
into
master
Overview
0
Commits
1
Changes
1
Merged
Michael Strong
requested to merge
SNZ-218
into
master
8 years ago
Overview
0
Commits
1
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
1b1354be
1 commit,
8 years ago
1 file
+
5
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
code/editableformfields/tables/TwoColumnTableField.php
+
5
−
0
Options
@@ -44,9 +44,14 @@ class TwoColumnTableField extends EditableFormFieldGroup
$definition
[
'headers'
]
=
$this
->
getTableHeaderCells
();
}
$definition
[
'columnCount'
]
=
$this
->
getColumnCount
();
return
$definition
;
}
/**
* @return int
*/
public
function
getColumnCount
()
{
return
$this
->
columnCount
;