123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?php if (!defined('PmWiki')) exit();
- $pagename = ResolvePageName($pagename);
- if (!IsEnabled($EnableStdConfig,1)) return;
- if (IsEnabled($EnablePGCust,1))
- include_once("$FarmD/scripts/pgcust.php");
- if (IsEnabled($EnableRobotControl,1))
- include_once("$FarmD/scripts/robots.php");
- if (IsEnabled($EnableCaches, 1))
- include_once("$FarmD/scripts/caches.php");
- if (IsEnabled($EnableAuthorTracking,1))
- include_once("$FarmD/scripts/author.php");
- if (IsEnabled($EnablePrefs, 1))
- include_once("$FarmD/scripts/prefs.php");
- if (IsEnabled($EnableSimulEdit, 1))
- include_once("$FarmD/scripts/simuledit.php");
- if (IsEnabled($EnableDrafts, 0))
- include_once("$FarmD/scripts/draft.php");
- if (IsEnabled($EnableSkinLayout,1))
- include_once("$FarmD/scripts/skins.php");
- if (@$Transition || IsEnabled($EnableTransitions, 0))
- include_once("$FarmD/scripts/transition.php");
- if (IsEnabled($EnableStdMarkup,1))
- include_once("$FarmD/scripts/stdmarkup.php");
- if ($action=='diff' && @!$HandleActions['diff'])
- include_once("$FarmD/scripts/pagerev.php");
- if (IsEnabled($EnableWikiTrails,1))
- include_once("$FarmD/scripts/trails.php");
- if (IsEnabled($EnableWikiStyles,1))
- include_once("$FarmD/scripts/wikistyles.php");
- if (IsEnabled($EnableMailPosts,0))
- include_once("$FarmD/scripts/mailposts.php");
- if (IsEnabled($EnablePageList,1))
- include_once("$FarmD/scripts/pagelist.php");
- if (IsEnabled($EnableVarMarkup,1))
- include_once("$FarmD/scripts/vardoc.php");
- if (!function_exists(@$DiffFunction))
- include_once("$FarmD/scripts/phpdiff.php");
- if ($action=='crypt')
- include_once("$FarmD/scripts/crypt.php");
- if ($action=='edit' && IsEnabled($EnableGUIButtons,0))
- include_once("$FarmD/scripts/guiedit.php");
- if (IsEnabled($EnableForms,1))
- include_once("$FarmD/scripts/forms.php");
- if (IsEnabled($EnableUpload,0))
- include_once("$FarmD/scripts/upload.php");
- if (IsEnabled($EnableNotify,0))
- include_once("$FarmD/scripts/notify.php");
- if (IsEnabled($EnableDiag,0))
- include_once("$FarmD/scripts/diag.php");
|