Skip to content

Instantly share code, notes, and snippets.

@Mumpitz
Mumpitz / tt_content.php
Created February 24, 2017 08:46
Possibly broken TCA/Overrides of fluidcontent 5.0.0
<?php
if (!defined('TYPO3_MODE')) {
die ('Access denied.');
}
call_user_func(
function () {
$languageFilePrefix = 'LLL:EXT:fluidcontent/Resources/Private/Language/locallang.xlf:';
$frontendLanguageFilePrefix = 'LLL:EXT:frontend/Resources/Private/Language/locallang_ttc.xlf:';
@Mumpitz
Mumpitz / kudzu_demo.asp
Last active July 9, 2020 04:35
A simple Demo how to use the KudzuASP Template Engine - The ASP
<% @CodePage = 65001 %>
<%
Option Explicit
Response.Buffer = true
%>
<!--#include file="/path/to/_kudzu.asp"-->
<%
Set T_ENGINE = New CTemplateEngine
' set Paths
@Mumpitz
Mumpitz / kudzu_template.html
Last active September 4, 2017 11:34
A simple Demo how to use the KudzuASP Template Engine - The HTML-Template
<!DOCTYPE html>
<html>
<head>
<title><!--[subst]-->{{title}}<!--[/subst]--></title>
<meta charset="utf-8">
</head>
<body>
<!--[subst]--><p>The Values used for the Condition are {{val1}} and {{val2}}</p><!--[/subst]-->
<p>The Value-Markers used outside of substitution show {{val1}} and {{val2}}</p>
<!--[if|cond]-->