< Debug Variables | Variables | I18n Variables >
To set many of the variables below specify them in config.php
.
$EnableReadOnly
$EnableReadOnly
= 1; # disable editing
$EnableNotSavedWarning
$EnableNotSavedWarning
= 0; # disable warning, default 1 (enabled, since 2.3.0)
$EnableEditAutoText
$EnableEditAutoText
= 1;
$EnableMergeLastMinorEdit
$EnableMergeLastMinorEdit
= 1;
$EnableMergeLastMinorEdit
= 2*3600; # at most 2 hours between merged edits
$EnableDraftAtomicDiff
.
$AutoCreate
$AutoCreate[REGEXP] = PAGE_PARAMETERS;where
REGEXP
is a regular expression which will identify the pages to be autocreated, and PAGE_PARAMETERS
is an array of attributes for the page to be created. For example $AutoCreate['/^Category\\./'] = array('ctime' => $Now);will create a blank page with a current creation time for any missing Category page.
$DefaultPageTextFmt
$DefaultPageTextFmt = '(:include $[{$SiteGroup}.PageNotFound]:)';
$DeleteKeyPattern
## Change delete word to "remove": $DeleteKeyPattern = "^\\s*remove\\s*$"; ## Delete any page with no visible text, i.e., empty: $DeleteKeyPattern = "^\\s*$";
$DiffKeepDays
$DiffKeepDays
variable sets the minimum length of time that a page's revision history is kept. By default it is set to 3650 days, or a little less than ten years. You can change this value in a customization file to be something smaller, e.g.: $DiffKeepDays = 30; # keep revisions at least 30 daysIf you want to suppress a page's revision history, you can insert into a customization file
$DiffKeepDays = $DiffKeepNum = -1; # suppress revision historyNote that a specific page revision isn't removed from the page until the first edit after the time specified by
$DiffKeepDays
has elapsed. Thus, it's still possible for some pages to have revisions older than $DiffKeepDays
-- such revisions will be removed the next time those pages are edited.
$DiffKeepNum
$DiffKeepDays
. It prevents lost history of pages that are older, but have few changes. $DiffKeepNum = 50; # keep at least 50 revisions (default is 20)To suppress page's revision history with
$DiffKeepNum = -1
see $DiffKeepDays
above.
$DraftActionsPattern
$DraftActionsPattern = 'edit|pmform|translate'; # Enable drafts for actions 'edit', 'pmform' and 'translate'.
$DraftSuffix
$EditFunctions
$EditFunctions = array('EditTemplate', 'RestorePage', 'ReplaceOnSave', 'SaveAttributes', 'PostPage', 'PostRecentChanges', 'AutoCreateTargets', 'PreviewPage');Many recipes manipulate this array, so it is recommended, instead of redefining the complete array to add your custom functions, to call InsertEditFunction() with your function name. See also UpdatePage().
$EditRedirectFmt
## Redirect to Main.HomePage: $EditRedirectFmt = 'Main.HomePage'; ## Redirect to HomePage of current group: $EditRedirectFmt = '{$Group}.HomePage';
$EditTemplatesFmt
## Use 'Main.NewPageTemplate' as default text of all new pages: $EditTemplatesFmt = 'Main.NewPageTemplate'; ## Use 'Template' in the current group for new pages: $EditTemplatesFmt = '$Group.Template'; ## Use 'Template' in the current group if it exists, otherwise ## use 'Main.NewPageTemplate': $EditTemplatesFmt = array('$Group.Template', 'Main.NewPageTemplate');
$EnableDrafts
$EnableDrafts = 1;
$EnablePublishAttr
, adds a new "publish" authorization level to distinguish editing of drafts from publishing them.
$EnableDraftAtomicDiff
$EnableDrafts
.) See also $EnableMergeLastMinorEdit
.
$EnableGUIButtons
## Turn on graphical edit buttons: $EnableGUIButtons = 1;
$EnableGuiEditFixUrl
$EnableGUIButtons
need to be enabled.
$EnableGuiEditFixUrl
= 2000; # place the button near the end of the Edit toolbar
$EnablePreviewChanges
$EnablePreviewChanges = 1;
$EnableListIncludedPages
<details>
element between the text area and the summary field.
$EnablePostAuthorRequired
## Require authors to provide a name: $EnablePostAuthorRequired = 1;
$EnableUploadAuthorRequired
$EnablePostAuthorRequired
.
$EnableRevUserAgent
## Store browser user agent with page diffs: $EnableRevUserAgent = 1;
$GUIButtons
scripts/guiedit.php
for the default definition. Note that the 5th element can be HTML code rather than just the url of a gif - this allows more flexibility in defining the related JavaScript.
$HandleEditFmt
?action=edit
for a page.
$IsPagePosted
$PageEditFmt
$PageEditForm
?action=edit
. Defaults to '$SiteGroup
.EditForm
'.
$ROEPatterns
preg_replace ()
function. Specifically it is replaced when the page is loaded into the editform, whenever a preview is done, and when the page is saved (from PmWiki 2.2.0beta45). See Cookbook:ROSPatterns for examples.
$ROSPatterns
$EnableROSEscape
$ROEPatterns
and $ROSPatterns
replacements will skip escaped text (surrounded by [=...=]
or [@...@]
). If not set, or if set to 0, the replacements will happen even inside escaped text.
Categories: PmWiki Developer
< Debug Variables | Variables | I18n Variables >
This page may have a more recent version on pmwiki.org: PmWiki:EditVariables, and a talk page: PmWiki:EditVariables-Talk.