The TYPO3 extension Calendar Base (extension key: cal) is one of the best coded extension I have come across in a long time. It was a great learning experience and the challenge was stimulating! About the extension Calendar Base extension is a full-featured online calendar system. And works with popular calendar systems such as Yahoo! […]
Author: Vikram Mandal
How to set the OG and DCTERMS meta tags in TYPO3
In case you are using the TYPO3 extension: bootstrap_package then set: page.meta.og:title.field = subtitle // title This would set the < meta property=”og:title” … > value to the page field value of subtitle is available else it would use the page title field value. By default it is set to use the title column only. You can use the susbtitle […]
Tip: Quick file backup to be avoided
Many time during coding we need to same a copy of the code file. A quick backup of the work before a some may-go-wrong kind of situations. Do not just do a copy-paste of the file. In many systems like under CentOS the file gets saved as “MyController (copy).php”. This can lead to nasty situation. […]
Developing AngularJS application as Typo3 extension
AngularJS has been around for a good amount of time and is well developed and a very mature platform. You may find more about AngularJS here. To get started with AngularJS coding see our post on “Getting started with AngualarJS” (coming soon). AngularJS brings in MVC architecture in to the static HTML world. This makes […]