--- /dev/null
+<?php
+use CRM_CivicrmAdminUi_ExtensionUtil as E;
+
+return [
+ [
+ 'name' => 'SavedSearch_Manage_Premiums',
+ 'entity' => 'SavedSearch',
+ 'cleanup' => 'unused',
+ 'update' => 'unmodified',
+ 'params' => [
+ 'version' => 4,
+ 'values' => [
+ 'name' => 'Manage_Premiums',
+ 'label' => E::ts('Manage Premiums'),
+ 'api_entity' => 'Product',
+ 'api_params' => [
+ 'version' => 4,
+ 'select' => [
+ 'name',
+ 'sku',
+ 'price',
+ 'min_contribution',
+ 'cost',
+ 'financial_type_id:label',
+ 'is_active',
+ ],
+ 'orderBy' => [],
+ 'where' => [],
+ 'groupBy' => [],
+ 'join' => [],
+ 'having' => [],
+ ],
+ ],
+ 'match' => [
+ 'name',
+ ],
+ ],
+ ],
+ [
+ 'name' => 'SavedSearch_Manage_Premiums_SearchDisplay_Manage_Premiums_Table_1',
+ 'entity' => 'SearchDisplay',
+ 'cleanup' => 'unused',
+ 'update' => 'unmodified',
+ 'params' => [
+ 'version' => 4,
+ 'values' => [
+ 'name' => 'Manage_Premiums_Table_1',
+ 'label' => E::ts('Manage Premium Products'),
+ 'saved_search_id.name' => 'Manage_Premiums',
+ 'type' => 'table',
+ 'settings' => [
+ 'description' => '',
+ 'sort' => [
+ [
+ 'name',
+ 'ASC',
+ ],
+ ],
+ 'limit' => 50,
+ 'pager' => [
+ 'expose_limit' => TRUE,
+ 'show_count' => TRUE,
+ 'hide_single' => TRUE,
+ ],
+ 'placeholder' => 5,
+ 'columns' => [
+ [
+ 'type' => 'field',
+ 'key' => 'name',
+ 'dataType' => 'String',
+ 'label' => E::ts('Product Name'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'sku',
+ 'dataType' => 'String',
+ 'label' => E::ts('SKU'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'price',
+ 'dataType' => 'Money',
+ 'label' => E::ts('Price'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'min_contribution',
+ 'dataType' => 'Money',
+ 'label' => E::ts('Minimum Contribution'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'cost',
+ 'dataType' => 'Money',
+ 'label' => E::ts('Cost'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'financial_type_id:label',
+ 'dataType' => 'Integer',
+ 'label' => E::ts('Financial Type'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'type' => 'field',
+ 'key' => 'is_active',
+ 'dataType' => 'Boolean',
+ 'label' => E::ts('Enabled'),
+ 'sortable' => TRUE,
+ 'editable' => TRUE,
+ ],
+ [
+ 'text' => '',
+ 'style' => 'default',
+ 'size' => 'btn-xs',
+ 'icon' => 'fa-bars',
+ 'links' => [
+ [
+ 'entity' => 'Product',
+ 'action' => 'preview',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ 'icon' => 'fa-eye',
+ 'text' => E::ts('Preview'),
+ 'style' => 'default',
+ 'path' => '',
+ 'task' => '',
+ 'condition' => [],
+ ],
+ [
+ 'entity' => 'Product',
+ 'action' => 'update',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ 'icon' => 'fa-pencil',
+ 'text' => E::ts('Edit'),
+ 'style' => 'default',
+ 'path' => '',
+ 'task' => '',
+ 'condition' => [],
+ ],
+ [
+ 'task' => 'enable',
+ 'entity' => 'Product',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ 'icon' => 'fa-toggle-on',
+ 'text' => E::ts('Enable'),
+ 'style' => 'default',
+ 'path' => '',
+ 'action' => '',
+ 'condition' => [
+ 'is_active',
+ '=',
+ FALSE,
+ ],
+ ],
+ [
+ 'task' => 'disable',
+ 'entity' => 'Product',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ 'icon' => 'fa-toggle-off',
+ 'text' => E::ts('Disable'),
+ 'style' => 'default',
+ 'path' => '',
+ 'action' => '',
+ 'condition' => [
+ 'is_active',
+ '=',
+ TRUE,
+ ],
+ ],
+ [
+ 'entity' => 'Product',
+ 'action' => 'delete',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ 'icon' => 'fa-trash',
+ 'text' => E::ts('Delete'),
+ 'style' => 'danger',
+ 'path' => '',
+ 'task' => '',
+ 'condition' => [],
+ ],
+ ],
+ 'type' => 'menu',
+ 'alignment' => 'text-right',
+ ],
+ ],
+ 'actions' => TRUE,
+ 'classes' => [
+ 'table',
+ 'table-striped',
+ ],
+ 'cssRules' => [
+ [
+ 'disabled',
+ 'is_active',
+ '=',
+ FALSE,
+ ],
+ ],
+ 'toolbar' => [
+ [
+ 'path' => '',
+ 'icon' => 'fa-plus',
+ 'text' => E::ts('Add Product'),
+ 'style' => 'primary',
+ 'condition' => [],
+ 'task' => '',
+ 'entity' => 'Product',
+ 'action' => 'add',
+ 'join' => '',
+ 'target' => 'crm-popup',
+ ],
+ ],
+ ],
+ ],
+ 'match' => [
+ 'saved_search_id',
+ 'name',
+ ],
+ ],
+ ],
+];