| 1 | <?php |
||
| 17 | class Event extends BaseEvent |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * Get array of userroles currently assigned to the event. |
||
| 21 | * |
||
| 22 | * @return array of UserRole() objects |
||
| 23 | */ |
||
| 24 | public function getCurrentUserRoles() |
||
| 35 | |||
| 36 | public function authoriser() |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get the [createdby] column value. |
||
| 43 | * |
||
| 44 | * @return User |
||
| 45 | */ |
||
| 46 | public function getCreatedBy() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Set the value of [createdby] column. |
||
| 53 | * |
||
| 54 | * @param User|int $v new value |
||
| 55 | * |
||
| 56 | * @return $this|\TechWilk\Rota\Event The current object (for fluent API support) |
||
| 57 | */ |
||
| 58 | public function setCreatedBy($v) |
||
| 66 | |||
| 67 | // setCreatedBy() |
||
| 68 | } |
||
| 69 |