PluginProbe
Yatra – Travel Booking & Tour Operator Software / 3.0.15
Yatra – Travel Booking & Tour Operator Software v3.0.15
3.0.15 3.0.14 3.0.14.1 3.0.14.2 3.0.12 3.0.13 3.0.11 3.0.10 3.0.9 3.0.8 3.0.7 3.0.6 3.0.5 3.0.5.1 3.0.4 3.0.3 3.0.2.9 3.0.2.7 3.0.2.8 3.0.2.6 trunk 1.0.0 2.0.0 2.0.1 2.0.10 All 83 releases
yatra / resources / js / blocks / activity / block.json

block.json in Yatra – Travel Booking & Tour Operator Software 3.0.15, at resources/js/blocks/activity/block.json

61 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 {
2 "$schema": "https://schemas.wp.org/trunk/block.json",
3 "apiVersion": 3,
4 "name": "yatra/activity",
5 "title": "Activity",
6 "category": "yatra",
7 "icon": "universal-access",
8 "description": "Display activity listings with customizable options",
9 "keywords": ["activity", "adventure", "yatra"],
10 "textdomain": "yatra",
11 "attributes": {
12 "order": {
13 "type": "string",
14 "default": "asc"
15 },
16 "columns": {
17 "type": "number",
18 "default": 3
19 },
20 "per_page": {
21 "type": "number",
22 "default": 10
23 },
24 "title": {
25 "type": "string",
26 "default": "Activity Listings"
27 },
28 "show_pagination": {
29 "type": "boolean",
30 "default": true
31 },
32 "activityIds": {
33 "type": "array",
34 "default": []
35 },
36 "hide_empty": {
37 "type": "boolean",
38 "default": false,
39 "description": "When on, activities with zero published trips are skipped. Off by default to preserve the historical 'show everything' behavior."
40 },
41 "show_trip_count": {
42 "type": "boolean",
43 "default": true
44 },
45 "show_description": {
46 "type": "boolean",
47 "default": true
48 },
49 "show_image": {
50 "type": "boolean",
51 "default": true
52 }
53 },
54 "supports": {
55 "html": false,
56 "inserter": true,
57 "align": ["wide", "full"]
58 },
59 "editorScript": "yatra-activity-block-editor"
60 }
61