summaryrefslogtreecommitdiff
path: root/html/app/models/Validate_model.php
blob: ec60d72adb8f64811b9a117f0232f62619dfdd75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php

namespace app\models;

use \Registry;


class Validate
{
    /** ticket
     * 
     * validate that the user owns the `ticket`
     * 
     */ 
    public static function ticket($ticket)
    {
    }

    /** access
     * 
     * validate that the `ticket` is compatible with access_level
     */
    public static function access($ticket, $access_level)
    {
    }

}