partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

Panel.js (939B)


      1 Ext.define('PartKeepr.Components.SystemPreferences.Panel', {
      2     extend: 'PartKeepr.Components.Preferences.Panel',
      3     title: i18n("System Preferences"),
      4 
      5     getSettingClasses: function () {
      6          return [
      7             "PartKeepr.Components.SystemPreferences.Preferences.FulltextSearch",
      8             "PartKeepr.Components.SystemPreferences.Preferences.RequiredPartFields",
      9             "PartKeepr.Components.SystemPreferences.Preferences.RequiredPartManufacturerFields",
     10             "PartKeepr.Components.SystemPreferences.Preferences.RequiredPartDistributorFields",
     11             "PartKeepr.Components.SystemPreferences.Preferences.BarcodeScannerConfiguration",
     12             "PartKeepr.Components.SystemPreferences.Preferences.ActionsConfiguration"
     13         ];
     14     },
     15     statics: {
     16         iconCls: 'fugue-icon gear',
     17         title: i18n('System Preferences'),
     18         closable: true,
     19         menuPath: [{text: i18n("System")}]
     20     }
     21 
     22 });