1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- return [
- '@' => ['type' => \Magento\Cms\Block\Widget\Page\Link::class, 'module' => 'Magento_Cms'],
- 'name' => 'CMS Page Link',
- 'description' => 'Link to a CMS Page',
- 'is_email_compatible' => '1',
- 'placeholder_image' => 'Magento_Cms::images/widget_page_link.png',
- 'parameters' => [
- 'page_id' => [
- '@' => ['type' => 'complex'],
- 'type' => 'label',
- 'helper_block' => [
- 'type' => \Magento\Cms\Block\Adminhtml\Page\Widget\Chooser::class,
- 'data' => ['button' => ['open' => 'Select Page...']],
- ],
- 'visible' => '1',
- 'required' => '1',
- 'sort_order' => '10',
- 'label' => 'CMS Page',
- ],
- 'anchor_text' => [
- 'type' => 'text',
- 'visible' => '1',
- 'label' => 'Anchor Custom Text',
- 'description' => 'If empty, the Page Title will be used',
- 'depends' => ['show_pager' => ['value' => '1']],
- ],
- 'template' => [
- 'type' => 'select',
- 'values' => [
- 'default' => [
- 'value' => 'product/widget/link/link_block.phtml',
- 'label' => 'Product Link Block Template',
- ],
- 'link_inline' => [
- 'value' => 'product/widget/link/link_inline.phtml',
- 'label' => 'Product Link Inline Template',
- ],
- ],
- 'visible' => '1',
- 'label' => 'Template',
- 'value' => 'product/widget/link/link_block.phtml',
- ],
- ],
- 'supported_containers' => [
- '0' => [
- 'container_name' => 'left',
- 'template' => ['default' => 'default', 'names_only' => 'link_inline'],
- ],
- '1' => ['container_name' => 'content', 'template' => ['grid' => 'default', 'list' => 'list']],
- ]
- ];
|