[pmwiki-users] Hiding actions in template
    Patrick R. Michaud 
    pmichaud at pobox.com
       
    Wed Jul 18 08:50:23 CDT 2007
    
    
  
On Wed, Jul 18, 2007 at 02:29:27PM +0300, Athan Dimoy wrote:
> I want to hide action list for all users except those with edit or admin 
> rights.
> Any idea how this can be done in a skin template (not using markup but php)?
In a local customizaton (or skin.php), one can do:
    $pagename = ResolvePageName($pagename);
    if (!CondAuth($pagename, 'edit'))
      SetTmplDisplay('PageActionFmt', 0);
This will turn off the <!--PageActionFmt--> section of the template
if the visitor doesn't have edit or admin rights.
Pm
    
    
More information about the pmwiki-users
mailing list