This repository was archived by the owner on Dec 6, 2019. It is now read-only.
Commit 00d1659 1 parent 65bc418 commit 00d1659 Copy full SHA for 00d1659
File tree 5 files changed +21
-17
lines changed
5 files changed +21
-17
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ function getName()
10
10
}
11
11
function getVersion ()
12
12
{
13
- return '1.6.6 ' ;
13
+ return '1.6.10 ' ;
14
14
}
15
15
function getDeveloper ()
16
16
{
@@ -20,6 +20,10 @@ function getDocumentationUrl()
20
20
{
21
21
return 'https://github.com/alecritson/Placid/wiki ' ;
22
22
}
23
+ public function getReleaseFeedUrl ()
24
+ {
25
+ return 'https://raw.githubusercontent.com/alecritson/Placid/master/placid/manifest.json ' ;
26
+ }
23
27
function getDeveloperUrl ()
24
28
{
25
29
return 'http://alecritson.co.uk ' ;
Original file line number Diff line number Diff line change 2
2
3
3
{% import "_includes/forms" as forms %}
4
4
5
- {% set title = " Placid"|t %}
5
+ {% set title = ' Placid - ' ~ title %}
6
6
7
-
8
- {% set tabs = {
9
- requests: { label: "Requests"|t, url: url('placid') },
10
- auth: { label: "Basic Auth"|t, url: url('placid/auth') },
11
- oauth: { label: "OAuth"|t, url: url('placid/oauth') }
7
+ {% set subnav = {
8
+ requests: { label: "Requests"|t, url: url('placid') },
9
+ auth: { label: "Basic Auth"|t, url: url('placid/auth') },
10
+ oauth: { label: "OAuth"|t, url: url('placid/oauth') }
12
11
} %}
13
-
14
-
Original file line number Diff line number Diff line change 1
1
{% extends " placid/_layout" %}
2
2
3
- {% set selectedTab = ' auth' %}
3
+ {% set selectedSubnavItem = ' auth' %}
4
4
5
5
{% set content %}
6
-
7
6
{% set settingsUrl = url(' oauth/twitter' ) %}
7
+ {% set title = ' Access tokens' %}
8
8
9
9
{% set oauth = craft .plugins .getPlugin (' oauth' , false ) %}
10
10
32
32
<span class =" disabled" >Hidden</small >
33
33
{% endif %}
34
34
</td >
35
- <td ><a class =" delete icon" title =" {{ ' Delete' | t }}" ></a ></td >
35
+ <td ><a class =" delete icon" title =" {{ ' Delete' | t }}" ></a ></td >
36
36
</tr >
37
37
{% endfor %}
38
38
</tbody >
45
45
deleteAction: 'placid/token/deleteToken'
46
46
});
47
47
{% endset %}
48
- {% includeJs js %}
48
+ {% includeJs js %}
Original file line number Diff line number Diff line change 2
2
3
3
{# Variables
4
4
----------------------------------------------- #}
5
- {% set selectedTab = ' oauth' %}
5
+ {% set selectedSubnavItem = ' oauth' %}
6
6
{% set settingsUrl = url(' oauth/twitter' ) %}
7
7
{% set oauth = craft .plugins .getPlugin (' oauth' , false ) %}
8
+ {% set title = ' OAuth connections' %}
8
9
9
10
{% set content %}
10
-
11
+
11
12
{% if oauthPlugin %}
12
13
{% if not oauthPlugin .isInstalled %}
13
14
You need to install the OAuth Plugin
14
15
{% elseif not oauthPlugin .isEnabled %}
15
16
You need to enable the OAuth Plugin
16
- {% else %}
17
+ {% else %}
17
18
{% include ' placid/oauth/providers-table' %}
18
19
{% endif %}
19
20
{% else %}
22
23
<a class =" btn" target =" _blank" href =" https://dukt.net/craft/oauth/" >Download OAuth plugin</a >
23
24
</div >
24
25
{% endif %}
25
- {% endset %}
26
+ {% endset %}
Original file line number Diff line number Diff line change 1
1
{% extends " placid/_layout" %}
2
2
3
+ {% set title = ' Requests' %}
4
+
3
5
{% set content %}
4
6
<div class =" buttons" style =" width:500px;" >
5
7
<a href =" {{ url(' placid/requests/new' )}}" class =" btn submit add icon" >Add request</a >
You can’t perform that action at this time.
0 commit comments