-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGtPollPlugin.php
executable file
·154 lines (138 loc) · 3.74 KB
/
GtPollPlugin.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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?php
/**
* GT Poll plugin for Craft CMS
*
* Create polls and get your users' opinions.
*
*
* @author Gregor Terrill
* @copyright Copyright (c) 2016 Gregor Terrill
* @link http://gregorterrill.com
* @package GtPoll
* @since 1.0.0
*/
namespace Craft;
class GtPollPlugin extends BasePlugin
{
/**
* Returns the user-facing name.
* @return mixed
*/
public function getName()
{
$pluginName = Craft::t('GT Poll');
$pluginNameOverride = $this->getSettings()->pluginNameOverride;
return ($pluginNameOverride) ? $pluginNameOverride : $pluginName;
}
/**
* Plugins can have descriptions of themselves displayed on the Plugins page by adding a getDescription() method
* on the primary plugin class:
* @return mixed
*/
public function getDescription()
{
return Craft::t('Create polls and get your users\' opinions.');
}
/**
* Plugins can have links to their documentation on the Plugins page by adding a getDocumentationUrl() method on
* the primary plugin class:
* @return string
*/
public function getDocumentationUrl()
{
return 'https://github.com/gregorterrill/gtpoll/blob/master/README.md';
}
/**
* Plugins can now take part in Craft’s update notifications, and display release notes on the Updates page, by
* providing a JSON feed that describes new releases, and adding a getReleaseFeedUrl() method on the primary
* plugin class.
* @return string
*/
public function getReleaseFeedUrl()
{
return 'https://raw.githubusercontent.com/gregorterrill/gtpoll/master/releases.json';
}
/**
* Returns the version number.
* @return string
*/
public function getVersion()
{
return '1.0.0';
}
/**
* As of Craft 2.5, Craft no longer takes the whole site down every time a plugin’s version number changes, in
* case there are any new migrations that need to be run. Instead plugins must explicitly tell Craft that they
* have new migrations by returning a new (higher) schema version number with a getSchemaVersion() method on
* their primary plugin class:
* @return string
*/
public function getSchemaVersion()
{
return '1.0.0';
}
/**
* Returns the developer’s name.
* @return string
*/
public function getDeveloper()
{
return 'Gregor Terrill';
}
/**
* Returns the developer’s website URL.
* @return string
*/
public function getDeveloperUrl()
{
return 'http://gregorterrill.com';
}
/**
* Renders the Settings page
* @return string
*/
public function getSettingsHtml()
{
return craft()->templates->render('gtpoll/settings', array(
'settings' => $this->getSettings()
));
}
/**
* Define settings for the plugin.
* @return array
*/
protected function defineSettings()
{
return array(
'pluginNameOverride' => AttributeType::String,
);
}
/**
* Returns whether the plugin should get its own tab in the CP header.
* @return bool
*/
public function hasCpSection()
{
return true;
}
/**
* Dynamic routes for editing individual polls
* @return array
*/
public function registerCpRoutes()
{
return array(
'gtpoll/edit/(?P<pollId>\d+)' => 'gtpoll/edit',
);
}
/**
* Route for our front-end to trigger increment answer
* @return array
*/
public function registerSiteRoutes()
{
return array(
'gtPoll/poll/incrementAnswer' => array( 'action' => 'gtPoll/poll/incrementAnswer')
);
}
}