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); |
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
<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:layout name="Content" /> | |
<f:render "Main" /> |
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
plugin.tx_<extension name>.view { | |
templateRootPath = {$plugin.tx_<extension name>.view.templateRootPath} | |
partialRootPath = {$plugin.tx_<extension name>.view.partialRootPath} | |
layoutRootPath = {$plugin.tx_<extension name>.view.layoutRootPath} | |
} |
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
<?php | |
if (!defined('TYPO3_MODE')) { | |
die ('Access denied.'); | |
} | |
TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile($_EXTKEY, 'Configuration/TypoScript', 'Master'); | |
Tx_Flux_Core::registerProviderExtensionKey('<extension name>', 'Page'); | |
Tx_Flux_Core::registerProviderExtensionKey('<extension name>', 'Content'); | |
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
var express, | |
ghost, | |
app, | |
basicAuth, | |
path; | |
// Proceed with startup | |
express = require('express'); | |
ghost = require('ghost'); | |
basicAuth = require('basic-auth-connect'); |
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
/** | |
* Test | |
* | |
* @author Denis Mir | |
**/ | |
/** | |
* Reference | |
* | |
* @type Map |
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
#!/bin/bash | |
######################################################### | |
mgUSERNAME="MailGun Username" | |
mgPASSWORD="COMPLEX PASSWORD" | |
testEmail="[email protected]" | |
######################################################### | |
echo "Installing this agent may be dangerous, make sure this is the correct server!" |
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
page.headerData.10 = FILE | |
page.headerData.10 { | |
file = fileadmin/some.js | |
stdWrap.hash = md5 | |
stdWrap.wrap = <script src="/fileadmin/some.js?|" async></script> | |
} |
OlderNewer