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
public function executeShow(sfWebRequest $request) { | |
$this->wachbericht_bericht = Doctrine::getTable('WachberichtBericht')->find($request->getParameter('id')); | |
//$this->setVar('berichtID', $this->wachbericht_bericht->getId()); | |
$this->forward404Unless($this->wachbericht_bericht); | |
$this->formQuickentry = new WachberichtWachstundenQuickentryForm; | |
$this->formQuickentry->setBerichtId($this->wachbericht_bericht->getId()); | |
} |
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
{namespace fed=Tx_Fed_ViewHelpers} | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en" | |
xmlns:flux="http://fedext.net/ns/flux/ViewHelpers" | |
xmlns:fed="http://fedext.net/ns/fed/ViewHelpers" | |
xmlns:f="http://typo3.org/ns/fluid/ViewHelpers"> | |
<f:layout name="Default"/> | |
<f:section name="Configuration"> |
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
{namespace fed=Tx_Fed_ViewHelpers} | |
{namespace flux=Tx_Flux_ViewHelpers} | |
<f:section name="Configuration"> | |
<flux:flexform id="gridelement-25-50-25" label="Element: 25-50-25" enabled="TRUE"> | |
<flux:flexform.grid> | |
<flux:flexform.grid.row> | |
<flux:flexform.grid.column> | |
<flux:flexform.content name="column1" label="25 - links"/> | |
</flux:flexform.grid.column> |
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
{ | |
count: 1, | |
payload: [ | |
propOne: 'TestVal' | |
arr: [ | |
propTwo: 'TestVal2' | |
] | |
], | |
status: 200 | |
} |
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
# File: /etc/nginx/sites-enabled/site1.conf | |
# Could be easy duplicated for several installations | |
# F.e. /home/cziel/src/project1; | |
# ... /home/cziel/src/project2; | |
# Minimum requirements like this: | |
server { | |
root /home/cziel/src/site1; | |
# Tweak your /etc/hosts |
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 | |
/** | |
* We have to increse the database name. You could also have a meaningful name, | |
* but it has to be unique, so the caches do not interfere. | |
**/ | |
$GLOBALS['TYPO3_CONF_VARS']['SYS']['caching']['cacheConfigurations']['cache_pages']['backend'] = 'TYPO3\\CMS\\Core\\Cache\\Backend\\RedisBackend'; | |
/** | |
* Options as per http://docs.typo3.org/typo3cms/CoreApiReference/CachingFramework/FrontendsBackends/Index.html#caching-backend-redis | |
**/ |
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 | |
array( | |
'logo' => array( | |
'exclude' => 1, | |
'label' => 'LLL:EXT:cziel_worldcom_base/Resources/Private/Language/locallang_db.xlf:tx_czielworldcombase_domain_model_organisation.logo', | |
'config' => array( | |
'maxitems' => 1, | |
'type' => 'inline', | |
'foreign_table' => 'sys_file_reference', | |
'foreign_field' => 'uid_foreign', |
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 | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2013 Cedric Ziel - Internetdienstleistungen & EDV - Halle (Saale), | |
* Germany - http://www.cedric-ziel.com | |
* Authors: Cedric Ziel | |
* All rights reserved | |
* | |
* For further information: http://www.cedric-ziel.com <[email protected]> |
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.meta { | |
description.data = levelfield: -1,description,slide | |
keywords.data = levelfield: -1,keywords,slide | |
} |
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/sh -e | |
# Remove old | |
rm $1.tgz | |
# get new Package | |
wget get.typo3.org/$1 -O $1.tgz | |
# Extract | |
tar xzvf $1.tgz |
OlderNewer