%PDF- %PDF-
Direktori : /var/www/html/higroup/wp-content/plugins/event-tickets/src/modules/blocks/ticket/ |
Current File : /var/www/html/higroup/wp-content/plugins/event-tickets/src/modules/blocks/ticket/index.js |
/** * WordPress dependencies */ import { __ } from '@wordpress/i18n'; import { InnerBlocks } from '@wordpress/editor'; /** * Internal dependencies */ import { Tickets as TicketsIcon } from '@moderntribe/tickets/icons'; import Ticket from './container'; export default { id: 'tickets-item', title: __( 'Event Ticket', 'event-tickets' ), description: __( 'A single configured ticket type.', 'event-tickets' ), icon: <TicketsIcon/>, category: 'tribe-tickets', keywords: [ 'event', 'event-tickets', 'tribe' ], parent: [ 'tribe/tickets' ], supports: { html: false, customClassName: false, }, attributes: { hasBeenCreated: { type: 'boolean', default: false, }, ticketId: { type: 'integer', default: 0, }, }, edit: Ticket, save: () => <div><InnerBlocks.Content /></div>, };