-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYiiImageDrawerEvents.php
99 lines (81 loc) · 2.58 KB
/
YiiImageDrawerEvents.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
/*
* This file is part of the YiiImage package.
*
* (c) Igor Golovanov <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
/**
* Name of events for the image drawer.
*
* @author Igor Golovanov <[email protected]>
*/
class YiiImageDrawerEvents extends CEnumerable
{
/**
* Name of the event, which will be called before the drawing arc.
*/
const onBeforeDrawArc = 'onBeforeDrawArc';
/**
* Name of the event, which will be called before the drawing chord.
*/
const onBeforeDrawChord = 'onBeforeDrawChord';
/**
* Name of the event, which will be called before the drawing ellipse.
*/
const onBeforeDrawEllipse = 'onBeforeDrawEllipse';
/**
* Name of the event, which will be called before the drawing line.
*/
const onBeforeDrawLine = 'onBeforeDrawLine';
/**
* Name of the event, which will be called before the drawing pie slice.
*/
const onBeforeDrawPieSlice = 'onBeforeDrawPieSlice';
/**
* Name of the event, which will be called before the drawing dot.
*/
const onBeforeDrawDot = 'onBeforeDrawDot';
/**
* Name of the event, which will be called before the drawing polygon.
*/
const onBeforeDrawPolygon = 'onBeforeDrawPolygon';
/**
* Name of the event, which will be called before the drawing text.
*/
const onBeforeDrawText = 'onBeforeDrawText';
/**
* Name of the event, which will be called after the drawing arc.
*/
const onAfterDrawArc = 'onAfterDrawArc';
/**
* Name of the event, which will be called after the drawing chord.
*/
const onAfterDrawChord = 'onAfterDrawChord';
/**
* Name of the event, which will be called after the drawing ellipse.
*/
const onAfterDrawEllipse = 'onAfterDrawEllipse';
/**
* Name of the event, which will be called after the drawing line.
*/
const onAfterDrawLine = 'onAfterDrawLine';
/**
* Name of the event, which will be called after the drawing pie slice.
*/
const onAfterDrawPieSlice = 'onAfterDrawPieSlice';
/**
* Name of the event, which will be called after the drawing dot.
*/
const onAfterDrawDot = 'onAfterDrawDot';
/**
* Name of the event, which will be called after the drawing polygon.
*/
const onAfterDrawPolygon = 'onAfterDrawPolygon';
/**
* Name of the event, which will be called after the drawing text.
*/
const onAfterDrawText = 'onAfterDrawText';
}