File modules/cms/ui/themes/default/html/views/pageelement/link.tpl.src.xml

Last commit: Thu Mar 10 13:09:06 2022 +0100	dankert	New: Remember some user inputs in the browser local storage.
1 <output xmlns="http://www.openrat.de/template" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.openrat.de/template ../../../../../../../template_engine/components/template.xsd"> 2 <form> 3 <row> 4 <column colspan="2" class="help"> 5 <text value="${desc}"/> 6 </column> 7 </row> 8 <row> 9 <column colspan="2"> 10 <selectbox list="objects" name="linkobjectid"/> 11 </column> 12 </row> 13 <if present="release"> 14 <if present="publish"> 15 <row> 16 <column colspan="2"> 17 <group title="${message:options}"/> 18 </column> 19 </row> 20 </if> 21 </if> 22 <if present="release"> 23 <row> 24 <column colspan="2"> 25 <checkbox name="release" label="${message:RELEASE}" remember="true"/> 26 </column> 27 </row> 28 </if> 29 <if present="publish"> 30 <row> 31 <column colspan="2"> 32 <checkbox name="publish" label="${message:PAGE_PUBLISH_AFTER_SAVE}" remember="true" /> 33 </column> 34 </row> 35 </if> 36 <row> 37 <column colspan="2" class="act"> 38 <button type="ok"/> 39 </column> 40 </row> 41 </form> 42 </output>
Download modules/cms/ui/themes/default/html/views/pageelement/link.tpl.src.xml
History Thu, 10 Mar 2022 13:09:06 +0100 dankert New: Remember some user inputs in the browser local storage. Wed, 9 Mar 2022 13:28:52 +0100 dankert Refactoring: Checkbox values are always sent to the server. In the actions we must test the value with 'isTrue()' Wed, 21 Oct 2020 00:26:06 +0200 Jan Dankert Using fieldsets in all templates (replacing the old '') Thu, 20 Aug 2020 21:15:48 +0200 Jan Dankert Cleanup: Deleting unused components. Mon, 17 Aug 2020 22:52:37 +0200 Jan Dankert Cleanup: Killing the old odd 'GLOBAL_' message prefixes. Sat, 16 May 2020 01:08:40 +0200 Jan Dankert Refactoring: Switching the ValueExpressions in the templates to the new VariableResolver for supporting nested variables like ${message:prefix_${key}}. Sun, 23 Feb 2020 23:21:22 +0100 Jan Dankert Fix: Path to template.xsd has changed on the last refactoring. Sun, 23 Feb 2020 04:01:30 +0100 Jan Dankert Refactoring with Namespaces for the cms modules, part 1: moving.