PluginProbe ʕ •ᴥ•ʔ
Post Affiliate Pro / trunk
Post Affiliate Pro vtrunk
1.29.5 1.29.4 1.29.3 1.29.0 1.29.1 1.29.2 1.3.0 1.3.1 1.3.2 1.3.3 1.4.0 1.4.1 1.5.0 1.5.1 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.6.0 1.6.1 1.6.2 1.8.0 1.8.1 1.8.2 1.8.3 1.8.4 1.9.0 1.9.1 1.9.2 1.9.3 1.9.4 trunk 1.0.1 1.0.10 1.0.11 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.0.7 1.0.8 1.0.9 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.10.1 1.10.2 1.10.3 1.10.4 1.11.1 1.11.2 1.12.1 1.12.2 1.12.3 1.12.4 1.12.5 1.13.0 1.13.1 1.13.2 1.13.3 1.13.4 1.13.5 1.13.6 1.14.0 1.14.1 1.14.2 1.15.0 1.15.1 1.15.2 1.15.3 1.15.4 1.15.5 1.16.0 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17.0 1.18.0 1.18.1 1.18.2 1.18.3 1.18.4 1.19.0 1.19.1 1.19.10 1.19.11 1.19.12 1.19.13 1.19.14 1.19.15 1.19.16 1.19.17 1.19.2 1.19.3 1.19.4 1.19.5 1.19.6 1.19.7 1.19.8 1.19.9 1.2.0 1.2.1 1.2.10 1.2.11 1.2.12 1.2.13 1.2.14 1.2.15 1.2.16 1.2.17 1.2.18 1.2.19 1.2.2 1.2.20 1.2.21 1.2.22 1.2.23 1.2.24 1.2.25 1.2.26 1.2.28 1.2.3 1.2.31 1.2.32 1.2.33 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.20.0 1.20.1 1.21.0 1.21.1 1.21.2 1.21.3 1.21.4 1.21.5 1.21.6 1.21.7 1.22.0 1.22.1 1.22.2 1.23.0 1.23.1 1.23.2 1.23.3 1.23.4 1.23.5 1.23.6 1.23.7 1.23.8 1.24.1 1.24.2 1.24.3 1.24.4 1.24.5 1.24.6 1.24.7 1.24.8 1.24.9 1.25.0 1.26.0 1.26.1 1.26.10 1.26.11 1.26.2 1.26.3 1.26.4 1.26.5 1.26.6 1.26.7 1.26.8 1.26.9 1.27.0 1.27.1 1.27.10 1.27.11 1.27.12 1.27.13 1.27.14 1.27.15 1.27.2 1.27.3 1.27.5 1.27.6 1.27.7 1.27.8 1.27.9 1.28.0 1.28.1 1.28.2 1.28.3
postaffiliatepro / Widget / block.json
postaffiliatepro / Widget Last commit date
src 1 month ago block.json 1 month ago top-affiliates-block.php 1 month ago
block.json
66 lines
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "postaffiliatepro/top-affiliates",
5 "version": "1.29.2",
6 "title": "Top Affiliates",
7 "category": "widgets",
8 "icon": "groups",
9 "description": "Top Affiliates widgets allows you to add performance statistics from your Post Affiliate Pro directly to your WordPress with ease.",
10 "keywords": ["affiliates", "top", "leaderboard", "postaffiliatepro"],
11 "textdomain": "postaffiliatepro",
12 "attributes": {
13 "title": {
14 "type": "string",
15 "default": "Top Affiliates"
16 },
17 "refreshInterval": {
18 "type": "integer",
19 "default": 10
20 },
21 "orderBy": {
22 "type": "string",
23 "default": "salesCount",
24 "enum": ["name", "salesCount", "commissions", "clicksRaw"]
25 },
26 "orderAsc": {
27 "type": "boolean",
28 "default": false
29 },
30 "limit": {
31 "type": "integer",
32 "default": 5
33 },
34 "rowTemplate": {
35 "type": "string",
36 "default": "{$firstname} {$lastname} ({$userid}): clicks: {$clicksRaw}; sales: {$salesCount}; commissions: {$commissions} [parent: {$parentuserid}]"
37 }
38 },
39 "supports": {
40 "html": false,
41 "align": ["wide", "full"],
42 "spacing": {
43 "margin": true,
44 "padding": true
45 },
46 "typography": {
47 "fontSize": true,
48 "lineHeight": true
49 },
50 "color": {
51 "background": true,
52 "text": true
53 }
54 },
55 "editorScript": "postaffiliatepro-top-affiliates-editor",
56 "editorStyle": "postaffiliatepro-top-affiliates-editor-style",
57 "style": "postaffiliatepro-top-affiliates-style",
58 "render": "file:./src/render.php",
59 "example": {
60 "attributes": {
61 "title": "Top Affiliates",
62 "limit": 5,
63 "orderBy": "salesCount"
64 }
65 }
66 }