* @license http://www.gnu.org/licenses/gpl-2.0.html GPL version 2 * @category Stud.IP */ class Visibility_Studip extends VisibilityAbstract { // Should this state be used? protected $activated = true; // What number does this state get in the database? protected $int_representation = 4; public function __construct() { $this->display_name = _('Stud.IP-intern'); $this->description = _('für alle Stud.IP-Nutzenden sichtbar'); } // When do two users have this state public function verify($user_id, $other_id) { return $other_id != "nobody"; } }