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
Create a Hidden Form Field named recipient | |
Define Recipient Email as: {f:cObject(typoscriptObjectPath:'lib.receiveremail')} | |
Define Recipient Name as: {f:cObject(typoscriptObjectPath:'lib.receivername')} |
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
/** | |
* Init ICalendar Action | |
* Set Format to ICS | |
*/ | |
public function initializeICalendarAction() { | |
$this->request->setFormat('ics'); | |
} | |
/** | |
* action iCalendar |
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
class OrganisationRepository extends AbstractWorldcomRepository { | |
/** | |
* Find closest matching Agency based on visitor's IP | |
* | |
* @param \Worldcom\CzielWorldcomBase\Domain\Model\Service $service | |
* @param int $limit The amount of data to be retreived | |
* @return \Worldcom\CzielWorldcomBase\Domain\Model\Organisation | |
*/ | |
public function findClosestMatchingAgency(\Worldcom\CzielWorldcomBase\Domain\Model\Service $service, $limit = 1) { | |
if ($_SERVER['REMOTE_ADDR'] == '127.0.0.1') { |
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
<T3DataStructure> | |
<sheets> | |
<sDEF> | |
<ROOT> | |
<TCEforms> | |
<sheetTitle>Behaviour</sheetTitle> | |
</TCEforms> | |
<type>array</type> | |
<el> | |
<switchableControllerActions> |
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
config.tx_extbase { | |
persistence { | |
classes { | |
Vendor\MyPackage\Domain\Model\Organisation { | |
mapping { | |
columns { | |
tstamp.mapOnProperty = tstamp | |
hidden.mapOnProperty = hidden | |
crdate.mapOnProperty = crdate | |
cruser_id.mapOnProperty = cruserId |
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
/** | |
* How to make 3-corner-rounded triangle in CSS (SO) | |
* http://stackoverflow.com/q/14446677/1397351 | |
*/ | |
.triangle, | |
.triangle:before { | |
width: 10em; | |
height: 10em; | |
position: relative; | |
background: orange; |
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
address=/t3cmsdev/127.0.0.1 | |
address=/l/127.0.0.1 | |
address=/silex/127.0.0.1 | |
address=/symfony2/127.0.0.1 | |
address=/dev/127.0.0.1 |
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 | |
/** | |
* @package dlrg_seminare | |
* @subpackage Provider/Configuration | |
*/ | |
namespace DLRG\DlrgSeminare\Provider\Configuration; | |
class DlrgSeminareConfigurationProvider |
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
class = form-horizontal | |
enctype = multipart/form-data | |
method = post | |
prefix = tx_form | |
confirmation = 0 | |
postProcessor { | |
1 = mail | |
1 { | |
recipientEmail = [email protected] | |
senderEmail = [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
<IfModule mod_deflate.c> | |
# these are known to be safe with MSIE 6 | |
#AddOutputFilterByType DEFLATE text/html text/plain text/xml | |
# everything else may cause problems with MSIE 6 | |
#AddOutputFilterByType DEFLATE text/css | |
#AddOutputFilterByType DEFLATE application/x-javascript application/javascript application/ecmascript | |
#AddOutputFilterByType DEFLATE application/rss+xml | |
</IfModule> |