Lines Matching refs:extranet
5 …strict the display of pages, media files and some actions when the request comes from the extranet.
8 - detect the extranet from a configurable `$_SERVER` value;
13 - disable selected DokuWiki actions for extranet visitors;
21 - `~~NOEXTRANET~~`: blocks the page from the extranet when the policy allows it;
22 - `~~EXTRANET~~`: allows the page from the extranet when the policy allows it.
35 - `request_match_key`: `$_SERVER` key used to detect the extranet, for example `REMOTE_ADDR` or an …
36 - `extranet_match_list`: comma-separated list of values treated as extranet
37 - `extranet_match_regex`: regex used to identify the extranet from the configured value
42 - `disable_actions`: DokuWiki actions disabled for extranet visitors
66 - `extranet_match_list = extranet`
78 $extranet = plugin_load('helper', 'extranet');
87 - `isExtranetRequest()`: tells whether the current request is treated as extranet
88 - `isPageVisibleFromExtranet()`: tells whether a page is visible from the extranet
89 - `isMediaVisibleFromExtranet()`: tells whether a media file is visible from the extranet
97 The plugin splits the render cache to distinguish intranet and extranet visitors.
105 … marker provided by the web infrastructure. It is suitable for intranet/extranet segmentation, but…