summaryrefslogtreecommitdiff
path: root/app/Datatables.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-03-22 14:04:03 +0000
committerGreg Roach <fisharebest@webtrees.net>2018-03-22 14:04:11 +0000
commit6ab54c76254df1d2d09174c839bc32e8ccd70d35 (patch)
tree88794ea0be22927e0d1273016ef67c3690b0e6bc /app/Datatables.php
parent83402215fafce1cde98344b6645d2b2331c67271 (diff)
downloadwebtrees-6ab54c76254df1d2d09174c839bc32e8ccd70d35.tar.gz
webtrees-6ab54c76254df1d2d09174c839bc32e8ccd70d35.tar.bz2
webtrees-6ab54c76254df1d2d09174c839bc32e8ccd70d35.zip
Convert individual/family list to use http/controllers
Diffstat (limited to 'app/Datatables.php')
-rw-r--r--app/Datatables.php17
1 files changed, 0 insertions, 17 deletions
diff --git a/app/Datatables.php b/app/Datatables.php
index e2783002e2..f799580938 100644
--- a/app/Datatables.php
+++ b/app/Datatables.php
@@ -143,21 +143,4 @@ class Datatables {
'data-state-save' => 'true',
] + self::languageAttributes());
}
-
- /**
- * Generate the HTML attributes for a table of surnames.
- *
- * @return string
- */
- public static function surnameTableAttributes() {
- return Html::attributes([
- 'class' => 'table table-bordered table-sm datatables table-surname',
- //'data-columns' => '[{ type: "text" }, { type: "num" }]',
- 'data-columns' => '[null, null]',
- 'data-info' => 'false',
- 'data-paging' => 'false',
- 'data-searching' => 'false',
- 'data-state-save' => 'true',
- ]);
- }
}