forked from ethercreative/simplemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSimpleMapPlugin.php
55 lines (44 loc) · 975 Bytes
/
SimpleMapPlugin.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
<?php
namespace Craft;
/**
* SimpleMap for Craft CMS
*
* @author Ether Creative <[email protected]>
* @copyright Copyright (c) 2015, Ether Creative
* @license http://ether.mit-license.org/
* @since 1.0
*/
class SimpleMapPlugin extends BasePlugin {
public function getName()
{
return Craft::t('Simple Map');
}
public function getDescription()
{
return 'A beautifully simple Google Map field type for Craft CMS.';
}
public function getVersion()
{
return '1.1.1';
}
public function getSchemaVersion()
{
return '0.0.1';
}
public function getDeveloper()
{
return 'Ether Creative';
}
public function getDeveloperUrl()
{
return 'http://ethercreative.co.uk';
}
public function getDocumentationUrl()
{
return 'https://github.com/ethercreative/SimpleMap/blob/master/README.md';
}
public function getReleaseFeedUrl()
{
return 'https://raw.githubusercontent.com/ethercreative/SimpleMap/master/releases.json';
}
}