We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d57fa75 commit da41194Copy full SHA for da41194
src/TaxonomyTerm.php
@@ -60,13 +60,21 @@ class TaxonomyTerm extends DataObject implements PermissionProvider
60
61
private static $default_sort = 'Sort';
62
63
+ private static string $sort_field = 'Sort';
64
+
65
private static $summary_fields = array(
66
'Name' => 'Name',
67
'Type.Name' => 'Type'
68
);
69
70
private static $type_inheritance_enabled = true;
71
72
+ /**
73
+ * Css class attached to icons in a CMSMain tree. Also supports font-icon set.
74
+ * Overrides cms_icon for most purposes if set on the same class
75
+ */
76
+ private static string $cms_icon_class = 'font-icon-tag';
77
78
public function getCMSFields()
79
{
80
$this->beforeUpdateCMSFields(function (FieldList $fields) {
0 commit comments