Re: [pmwiki-devel] testing auth level in a recipe

2022-03-18 Thread Simon
Thanks very much. I should have said "within" the recipe, but this does function does exactly what I need, and the page variable is a bonus cheers Simon On Fri, 18 Mar 2022 at 12:58, Dominique Faure wrote: > Hi, > > The following code defines a markup variable that you may use in a >

Re: [pmwiki-devel] testing auth level in a recipe

2022-03-17 Thread Dominique Faure
Hi, The following code defines a markup variable that you may use in a test to render content accordingly: =8<- - - - - function PmWikiAuthLevel($pagename) { global $AuthLevels; SDV($AuthLevels, array('admin', 'edit', 'read')); foreach($AuthLevels as $level)