Skip to content

Commit

Permalink
Merge branch '3' into 4
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 14, 2024
2 parents f3bd5c0 + 92c1a52 commit 56a6aff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions lang/en.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ en:
SilverStripe\Registry\RegistryAdmin:
MENUTITLE: Registry
SilverStripe\Registry\RegistryPage:
CLASS_DESCRIPTION: 'Shows large series of data in a filterable, searchable, and paginated list'
DESCRIPTION: 'Shows large series of data in a filterable, searchable, and paginated list'
DataClassFieldLabel: 'Data Class'
ExportAll: 'Export results to CSV'
Expand Down
5 changes: 5 additions & 0 deletions src/RegistryPage.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@

class RegistryPage extends Page
{
/**
* @deprecated 5.4.0 use class_description instead.
*/
private static $description = 'Shows large series of data in a filterable, searchable, and paginated list';

private static $class_description = 'Shows large series of data in a filterable, searchable, and paginated list';

private static $table_name = 'RegistryPage';

private static $icon_class = 'font-icon-p-data';
Expand Down

0 comments on commit 56a6aff

Please sign in to comment.