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 / destination / block.json

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

65 lines 1.5 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/destination",
5 "title": "Destination",
6 "category": "yatra",
7 "icon": "location-alt",
8 "description": "Display destination listings with customizable options",
9 "keywords": ["destination", "place", "location", "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": "Destination Showcase"
27 },
28 "show_pagination": {
29 "type": "boolean",
30 "default": true
31 },
32 "destinationIds": {
33 "type": "array",
34 "default": []
35 },
36 "hide_empty": {
37 "type": "boolean",
38 "default": false,
39 "description": "When on, destinations with zero published trips are skipped. Off by default to preserve the historical 'show everything' behavior."
40 },
41 "featured_only": {
42 "type": "boolean",
43 "default": false
44 },
45 "show_trip_count": {
46 "type": "boolean",
47 "default": true
48 },
49 "show_description": {
50 "type": "boolean",
51 "default": true
52 },
53 "show_image": {
54 "type": "boolean",
55 "default": true
56 }
57 },
58 "supports": {
59 "html": false,
60 "inserter": true,
61 "align": ["wide", "full"]
62 },
63 "editorScript": "yatra-destination-block-editor"
64 }
65