Template: LocalSettings.php-Tweaks: Difference between revisions

From SemanticOrganization
Jump to: navigation, search
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 4: Line 4:
  # Show Tweeki's advanced features by default
  # Show Tweeki's advanced features by default
  $wgDefaultUserOptions['tweeki-advanced'] = 1;
  $wgDefaultUserOptions['tweeki-advanced'] = 1;
 
  # Use Bootstrap Tooltips
  # Use Bootstrap Tooltips
  $wgTweekiSkinUseTooltips = true;
  $wgTweekiSkinUseTooltips = true;
Line 15: Line 15:
  $smwgEnabledEditPageHelp = false;
  $smwgEnabledEditPageHelp = false;
  $smwgLinksInValues = true;
  $smwgLinksInValues = true;
$smwgPageSpecialProperties[] = '_CDAT';
   
   
  # Settings for Page Forms
  # Settings for Page Forms
Line 21: Line 22:
  # Allow display titles for automatically created page names
  # Allow display titles for automatically created page names
  $wgRestrictDisplayTitle = false;
  $wgRestrictDisplayTitle = false;
# Use full screen width when no sidebar is shown
$wgTweekiSkinGridNone = [
  "mainoffset" => 0,
  "mainwidth" => 12
];

Latest revision as of 21:48, 17 June 2024

# Use Tweeki as default skin
$wgDefaultSkin = 'tweeki';

# Show Tweeki's advanced features by default
$wgDefaultUserOptions['tweeki-advanced'] = 1;

# Use Bootstrap Tooltips
$wgTweekiSkinUseTooltips = true;

# Enable String Functions
$wgPFEnableStringFunctions = true;

# Enable Semantic MediaWiki
enableSemantics('YOURDOMAIN.TLD');
$smwgEnabledEditPageHelp = false;
$smwgLinksInValues = true;
$smwgPageSpecialProperties[] = '_CDAT';

# Settings for Page Forms
$wgPageFormsAutocompleteOnAllChars = true;

# Allow display titles for automatically created page names
$wgRestrictDisplayTitle = false;

# Use full screen width when no sidebar is shown
$wgTweekiSkinGridNone = [ 
  "mainoffset" => 0, 
  "mainwidth" => 12
];