summaryrefslogtreecommitdiffstats
path: root/lib/model/Role.php
blob: c63fa750e90ed1a6864de81a4072481a3d1ac415 (plain)
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();
	}
}