This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div xmlns="http://www.w3.org/1999/xhtml" lang="en" | |
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers" | |
xmlns:flux="http://typo3.org/ns/FluidTYPO3/Flux/ViewHelpers" | |
xmlns:v="http://typo3.org/ns/FluidTYPO3/Vhs/ViewHelpers"> | |
<f:layout name="Content" /> | |
<f:section name="Configuration"> | |
<flux:form id="fluidfluxcontent" label="Custom Text" icon="{f:uri.resource(path: 'Icons/Page.gif')}"> | |
<flux:field.input name="text" label="Inhalt" required="true" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<f:section name="Sidebar"> | |
<v:content.render column="0" as="sidebarContentElements"> | |
<f:if condition="{sidebarContentElements}"> | |
Content available. | |
<f:for each="{sidebarContentElements}" as="sidebarContentElement"> | |
Each item. | |
<f:format.raw>{sidebarContentElement}</f:format.raw> | |
</f:for> | |
</f:if> | |
</v:content.render> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
viewPager = new ViewPager(this); | |
viewPager.setId(R.id.pager); | |
setContentView(viewPager); | |
ActionBar bar = getSupportActionBar(); | |
bar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS); | |
tabsAdapter = new TabsAdapter(this, viewPager); |
NewerOlder