Recent posts

Advanced mail subscription

The CMS TYPO3 extension repository already offers a few plugins that can...
09 January 2012

Convenient In/Out animation using expressions

We recently had an opportunity to make a set of instructional animations...
16 December 2012

Nginx boost extension

Introduction  The Evo_nginx_boost plugin allows us to cache pages...
14 December 2011

Tags

... are automatically set in the message. Multiple languages With the use of special subparts in the templates, managing multiple language versions is now easier. Configuration from TCA or through TypoScript This solution is the optimum way of freely setting the plugin in various parts of your website. All the settings can be configured through TypoScript. Notifications The plugin allows for...
http://blog.thedigitals.pl/en/advanced-mail-subscription/ 09-01-12 Score: 0,89 62 %
... list of fields which you want to sort the news datetime, titleevo_news_sorting.limitOptionsintThe list of options to choose in the "items per page"10,20,30,40 //CODE:typoscript:plugin.tt_news { evo_news_sorting.templateFile = EXT:evo_news_sorting/templates/template.html evo_news_sorting.sortFields = datetime, title evo_news_sorting.limitOptions = 10,20,30,40...
http://blog.thedigitals.pl/en/evo-news-sorting-sorting-bar-for-tt-news/ 08-02-10 Score: 0,64 44 %
... Select records select records to be open as tabs Use ajax check if you want to load content with ajax Start with tab # number of tab to be open as default  ###YOUTUBEVIDEO### Typoscript configuration. Property Data type Description Default template_file file choose file as tabs template EXT:evo_jqtabs/templates/tabs.html css_file int set 1 to include default css file 1 ...
http://blog.thedigitals.pl/en/jquery-tabs-for-typo30/ 10-11-09 Score: 0,78 55 %
... = tx_yourext_pi1->main//CODE Now, when writing our plugin, we are calling the dispatcher. //CODE:typoscript:userFunc = tx_extbase_dispatcher->dispatch//CODE If we forward an additional Typoscript with configuration, the dispatcher will register our controllers and handle their calls. An example TS (from the blogexample plugin) can be found...
http://blog.thedigitals.pl/en/a-look-into-the-future-typo3-43-and-extbase/ 19-07-09 Score: 1,12 78 %
... the code of our USER_INT plug: CODE:php: //set page title $GLOBALS['TSFE']->additionalHeaderData['title'] = '<title>'.htmlspecialchars($title).' - my page</title>';//CODE Then in the Typoscript template for the single view page we should add such TS code: CODE:typoscript: //set page title config.noPageTitle = 2//CODE If we look into the cache_pages table now and find the cached single...
http://blog.thedigitals.pl/en/how-to-how-to-set-page-title-in-user-int-extension/ 26-06-09 Score: 1,43 100 %
... Stars > Interviews section and sees a list of latest interviews mounted in this page. If he or she clicks any of these records, we render the SINGLE VIEW. To see how this can be done, read the typoscript below: //CODE:typoscript: #We set the code as LATEST if the user opens the page without any parameters plugin.tt_news.code > plugin.tt_news.code = LATEST #Select tt_news records from...
http://blog.thedigitals.pl/en/how-to-show-tt-news-records-mounted-in-various-subpages/ 15-04-09 Score: 1,02 71 %
###SPINNER###