| <?xml version="1.0" encoding="UTF-8"?> |
| <!-- |
| Licensed to the Apache Software Foundation (ASF) under one |
| or more contributor license agreements. See the NOTICE file |
| distributed with this work for additional information |
| regarding copyright ownership. The ASF licenses this file |
| to you under the Apache License, Version 2.0 (the |
| "License"); you may not use this file except in compliance |
| with the License. You may obtain a copy of the License at |
| |
| http://www.apache.org/licenses/LICENSE-2.0 |
| |
| Unless required by applicable law or agreed to in writing, |
| software distributed under the License is distributed on an |
| "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| KIND, either express or implied. See the License for the |
| specific language governing permissions and limitations |
| under the License. |
| --> |
| |
| <screens xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:noNamespaceSchemaLocation="http://ofbiz.apache.org/dtds/widget-screen.xsd"> |
| <screen name="FindWebAnalyticsConfigs"> |
| <section> |
| <actions> |
| <set field="titleProperty" value="CatalogWebAnalytics"/> |
| <set field="headerItem" value="websites"/> |
| <set field="tabButtonItem" value="WebAnalytics"/> |
| <set field="tabButtonItem2" value="FindWebAnalyticsConfigs"/> |
| <set field="webAnalyticsConfigCtx" from-field="parameters"/> |
| <set field="webSiteId" from-field="parameters.webSiteId"/> |
| <entity-one entity-name="WebSite" value-field="webSite"/> |
| <set field="viewIndex" from-field="parameters.VIEW_INDEX" type="Integer" default-value="0"/> |
| <property-to-field resource="widget" property="widget.form.defaultViewSize" field="viewSizeDefaultValue"/> |
| <set field="viewSize" from-field="parameters.VIEW_SIZE" type="Integer" default-value="${viewSizeDefaultValue}"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="CommonWebAnalyticsDecorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <section> |
| <widgets> |
| <screenlet title="${uiLabelMap.CatalogWebAnalytics}"> |
| <include-form name="ListWebAnalyticsConfig" location="component://content/widget/website/WebAnalyticsForms.xml"/> |
| </screenlet> |
| </widgets> |
| </section> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| |
| <screen name="EditWebAnalyticsConfig"> |
| <section> |
| <actions> |
| <set field="titleProperty" value="PageTitleEditWebAnalyticsConfigs"/> |
| <set field="tabButtonItem" value="WebAnalytics"/> |
| <set field="tabButtonItem2" value="EditWebAnalyticsConfig"/> |
| <set field="webSiteId" from-field="parameters.webSiteId"/> |
| <entity-one entity-name="WebSite" value-field="webSite"/> |
| <set field="webAnalyticsTypeId" from-field="parameters.webAnalyticsTypeId"/> |
| <entity-one entity-name="WebAnalyticsConfig" value-field="webAnalyticsConfig" auto-field-map="true"/> |
| </actions> |
| <widgets> |
| <decorator-screen name="CommonWebAnalyticsDecorator" location="${parameters.mainDecoratorLocation}"> |
| <decorator-section name="body"> |
| <screenlet title="${uiLabelMap.PageTitleEditWebAnalyticsConfigs}"> |
| <include-form name="EditWebAnalyticsConfig" location="component://content/widget/website/WebAnalyticsForms.xml"/> |
| </screenlet> |
| </decorator-section> |
| </decorator-screen> |
| </widgets> |
| </section> |
| </screen> |
| </screens> |