1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
<?php /** * Subclass for representing a row from the 'role' table. * * * * @package lib.model */ class Role extends BaseRole { const SUPERADMIN = 1; const DOMAINMASTER = 2; const MAILBOXMASTER = 3; public function __toString() { return $this->getName(); } }