1 | <?php |
||
10 | class Reminder extends \hipanel\base\Model |
||
11 | { |
||
12 | use \hipanel\base\ModelTrait; |
||
13 | |||
14 | const REMAINDER_TYPE_SITE = 'site'; |
||
15 | |||
16 | const REMINDER_TYPE_MAIL = 'mail'; |
||
17 | |||
18 | public static function index() |
||
22 | |||
23 | public static function type() |
||
27 | |||
28 | public static $i18nDictionary = 'hipanel/ticket'; |
||
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | public function attributes() |
||
44 | |||
45 | /** |
||
46 | * {@inheritdoc} |
||
47 | */ |
||
48 | public function rules() |
||
53 | |||
54 | /** |
||
55 | * {@inheritdoc} |
||
56 | */ |
||
57 | public function attributeLabels() |
||
67 | |||
68 | public function getThread() |
||
72 | |||
73 | public function scenarioCommands() |
||
81 | } |
||
82 |