Browse Source

Deleted unused files

jabongwa 2 years ago
parent
commit
3c3a65dc54

+ 17 - 0
Resources/Language/locallang_mod.xlf

@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<xliff version="1.0" xmlns:t3="http://typo3.org/schemas/xliff">
+    <file t3:id="1551944413" source-language="en" datatype="plaintext" original="messages" date="2023-03-10T00:23:42Z" product-name="begriffmgt">
+        <header/>
+        <body>
+            <trans-unit id="mlang_tabs_tab">
+                <source>Chatbot Management</source>
+            </trans-unit>
+            <trans-unit id="mlang_labels_tablabel">
+                <source>Chatbot Management</source>
+            </trans-unit>
+            <trans-unit id="mlang_labels_tabdescr">
+                <source>Chatbot Management</source>
+            </trans-unit>
+        </body>
+    </file>
+</xliff>

+ 30 - 0
Resources/Private/Layouts/Default.html

@@ -0,0 +1,30 @@
+<html
+    xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
+    xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
+    data-namespace-typo3-fluid="true">
+
+<be:moduleLayout>
+    <f:be.pageRenderer
+        includeRequireJsModules="{
+            0:'TYPO3/CMS/Backend/ContextMenu',
+            1:'TYPO3/CMS/Backend/Modal',
+            2:'TYPO3/CMS/Beuser/BackendUserListing'
+        }"
+    />
+
+    <be:moduleLayout.menu identifier="BegriffmgtModalMenu">
+        <be:moduleLayout.menuItem label="Liste ChatbotBegriffe" uri="{f:uri.action(controller: 'Dashboard', action: 'index')}"/>
+        <be:moduleLayout.menuItem label="Chatbot Begriffe Verwaltung" uri="{f:uri.action(controller: 'Term', action: 'list')}"/>
+    </be:moduleLayout.menu>
+
+ 
+    <be:moduleLayout.button.shortcutButton displayName="Add" />
+
+    <div id="begriffe-main-content">
+        <f:render section="Content" />
+    </div>
+
+</be:moduleLayout>
+
+</html>
+

+ 65 - 0
Resources/Private/Templates/Dashboard/Index.html

@@ -0,0 +1,65 @@
+<html
+    xmlns:f="http://typo3.org/ns/TYPO3/CMS/Fluid/ViewHelpers"
+    xmlns:core="http://typo3.org/ns/TYPO3/CMS/Core/ViewHelpers"
+    xmlns:be="http://typo3.org/ns/TYPO3/CMS/Backend/ViewHelpers"
+    data-namespace-typo3-fluid="true">
+
+<f:layout name="Default" />
+
+<f:section name="Content">
+    <h1>Auflistung Chatbot Begriffe</h1>
+    <f:if condition="{terms}">
+      <div class="table-fit">
+        <table id="chatbotbegriffmgt-terms" class="table table-striped table-hover table-vertical-top">
+          <thead>
+            <tr>
+              <td><b>Typ<b></td>
+              <td><b>Kategorie</b></td>
+              <td><b>Begriffe</b></td>
+              <td><b>Link</b></td>
+              <td></td>
+            </tr>
+          </thead>
+          <tbody>
+            <f:for each="{terms}" as="term">
+              <tr>
+                <td>
+                  {term.type}
+                  </a>
+                </td>
+                <f:if condition="{term.category} != '0' ">
+                  <f:then>
+                    <td>
+                      {term.category}
+                    </td>
+                  </f:then>
+                  <f:else>
+                    <td></td>
+                  </f:else>
+                </f:if>
+                <td>
+                  {term.terms -> f:format.crop(maxCharacters: 25)}
+                </td>
+                <f:if condition="{term.url} != '0' ">
+                  <f:then>
+                    <td>{term.url}</td>
+                  </f:then>
+                  <f:else>
+                    <td></td>
+                  </f:else>
+                </f:if>
+                <td class="col-control">
+                  <div class="btn-group" role="group">
+                    <be:link.editRecord class="btn btn-default" table="tx_begriffmgt_domain_model_term" uid="{term.uid}" title="Bearbeiten">
+                        <core:icon identifier="actions-open" />
+                    </be:link.editRecord>
+                </div>
+                </td>
+              </tr>
+            </f:for>
+          </tbody>
+        </table>
+      </div>
+    </f:if>
+</f:section>
+</html>

BIN
Resources/Public/Icons/Extension.png


+ 0 - 0
Resources/Public/Icons/book.png


BIN
Resources/Public/Icons/book1.png


BIN
Resources/Public/Icons/chatbot.png


BIN
Resources/Public/Icons/graphic.png


BIN
Resources/Public/Icons/plugin.png