Show
Ignore:
Timestamp:
01/07/07 17:23:02 (23 months ago)
Author:
cfriesen
Message:

Make a checkbox that allows one click toggle of private feeds/items/etc.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/cls/user.php

    r1461 r1658  
    5151    /** Action */ 
    5252    var $_action; 
     53        /** Show private feeds/items */ 
     54        var $_showPrivate; 
    5355 
    5456    /** 
     
    6769        $this -> _realName = ''; 
    6870        $this -> _hash = null; 
     71                $this -> _showPrivate = 0; 
    6972         
    7073         
     
    224227        return $this -> _level; 
    225228    } 
     229 
     230        function getShowPrivate() { 
     231                return $this -> _showPrivate; 
     232        } 
     233        function setShowPrivate($show) { 
     234            $this -> _showPrivate = $show; 
     235        } 
    226236} 
    227237