aboutsummaryrefslogtreecommitdiff
path: root/lib/plugins/core/Role.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/plugins/core/Role.class.php')
-rw-r--r--lib/plugins/core/Role.class.php89
1 files changed, 0 insertions, 89 deletions
diff --git a/lib/plugins/core/Role.class.php b/lib/plugins/core/Role.class.php
deleted file mode 100644
index 3ca8a11..0000000
--- a/lib/plugins/core/Role.class.php
+++ /dev/null
@@ -1,89 +0,0 @@
-<?php
-/**
- * Role.class.php
- *
- * @author Dennis Reil <dennis.reil@offis.de>
- * @author Michael Riehemann <michael.riehemann@uni-oldenburg.de>
- * @package pluginengine
- * @subpackage core
- * @copyright 2009 Stud.IP
- * @license http://www.gnu.org/licenses/gpl.html GPL Licence 3
- */
-class Role
-{
- const UNKNOWN_ROLE_ID = null;
-
- public $roleid;
- public $rolename;
- public $systemtype;
-
- /**
- * Constructor
- */
- public function __construct($id = self::UNKNOWN_ROLE_ID, $name = '', $system = false)
- {
- $this->setRoleid($id);
- $this->setRolename($name);
- $this->setSystemtype($system);
- }
-
- /**
- * Returns the role's id.
- *
- * @return int
- */
- public function getRoleid()
- {
- return $this->roleid;
- }
-
- /**
- * Set the role's id.
- *
- * @param int $newid
- */
- public function setRoleid($newid)
- {
- $this->roleid = $newid;
- }
-
- /**
- * Returns the role's name.
- *
- * @return string
- */
- public function getRolename()
- {
- return $this->rolename;
- }
-
- /**
- * Set the role's name.
- *
- * @param string $newrole
- */
- public function setRolename($newrole)
- {
- $this->rolename = $newrole;
- }
-
- /**
- * Returns whether the role is a system role.
- *
- * @return boolean
- */
- public function getSystemtype()
- {
- return $this->systemtype;
- }
-
- /**
- * Sets whether the role is a system role.
- *
- * @param boolean $newtype
- */
- public function setSystemtype($newtype)
- {
- $this->systemtype = (bool) $newtype;
- }
-}