-
5th January, 2012 by Christian Koch | 0 Comments | Categorie: php, t3 extension development
You have seo_basics installed and want to change your title tag from within your own extension.
Use the following code snippet:
read more…
-
30th November, 2011 by Christian Koch | 0 Comments | Categorie: php, Uncategorized
if (!filter_var('bob@example.de', FILTER_VALIDATE_EMAIL)) {
print "thats not right";
} else {
print "that right";
}
-
20th September, 2011 by Christian Koch | 0 Comments | Categorie: MySQL, php
Ever wanted to create an attribute of type timestamp to a unix timestamp?
SELECT UNIX_TIMESTAMP(mydate) FROM mytable;
-
23rd July, 2011 by Christian Koch | 1 Comment | Categorie: php
I am using standard http and MySQL server setup with a freshly installed Centos 5.6 64 Bit system.
read more…
-
10th October, 2010 by Christian Koch | 0 Comments | Categorie: php, t3 extension development, typoscript
Enable E-Mail Address Protection for your Typo3 Standard Content:
read more…
-
21st September, 2010 by Christian Koch | 3 Comments | Categorie: php, t3 extension development
Learn how to change the head title, meta description and meta keyword tag from within your extension.
read more…
-
19th September, 2010 by Christian Koch | 0 Comments | Categorie: php
Ever wondered how to setup useful Templates in your Eclipse IDE. Here you can find a short tutorial on how to setup a Template to create php gettern and settern methods.
read more…
-
29th January, 2010 by Christian Koch | 0 Comments | Categorie: Flexform, php, t3 extension development
Maybe you have seen it in my last short tutorial “Typo3 Extension Flexform onchange reload” and wondered what I am doing there with
<sheetTitle>LLL:EXT:extension/res/lang/flexform.xml:sheet_general</sheetTitle>
read more…