<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Blog for the Web Programmers &#187; typo3 extension development</title>
	<atom:link href="http://blog.chandanweb.com/tags/typo3-extension-development/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.chandanweb.com</link>
	<description>A useful blog with code assitance on Typo3, Drupal, PHP, Apache, OpenSSL and PHP Frameworks</description>
	<lastBuildDate>Wed, 25 Jan 2012 08:35:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Disable a TYPO3 extension or removing a hook specified by another extension</title>
		<link>http://blog.chandanweb.com/typo3/disable-a-typo3-extension-or-removing-a-hook-specified-by-another-extension</link>
		<comments>http://blog.chandanweb.com/typo3/disable-a-typo3-extension-or-removing-a-hook-specified-by-another-extension#comments</comments>
		<pubDate>Fri, 10 Dec 2010 07:30:00 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Extension Programming]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[feeditadvanced]]></category>
		<category><![CDATA[js_css_optimizer]]></category>
		<category><![CDATA[typo3 extension development]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/disable-a-hook-specified-by-another-extension</guid>
		<description><![CDATA[In some cases we may need to disable some hooks that are defined by another extension. Say for example in a recent case, I had to disable js_css_optimizer when a typo3 FE editor is logged in. This was necessary as feeditadvanced was not working together with js_css_optimizer. So the moment I needed the services of [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases we may need to disable some hooks that are defined by another extension. Say for example in a recent case, I had to disable js_css_optimizer when a typo3 FE editor is logged in. This was necessary as feeditadvanced was not working together with js_css_optimizer.</p>
<p>So the moment I needed the services of feeditadvanced, I had to disable js_css_optimizer, so I added the following code:</p>
<p>unset($GLOBALS['TYPO3_CONF_VARS']['FE']['cssCompressHandler']);</p>
<p>We have to make sure that we do this at correct stage, for example, if the extension we wanted to disable has already finished it&#8217;s execution, then we may not get desired result, so we may have to add another hook that executes much before the hook we wanted to remove.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/disable-a-typo3-extension-or-removing-a-hook-specified-by-another-extension/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Syntax for ext_conf_template</title>
		<link>http://blog.chandanweb.com/typo3/syntax-for-ext_conf_template</link>
		<comments>http://blog.chandanweb.com/typo3/syntax-for-ext_conf_template#comments</comments>
		<pubDate>Thu, 24 Jun 2010 13:52:47 +0000</pubDate>
		<dc:creator>spabhat</dc:creator>
				<category><![CDATA[Typo3]]></category>
		<category><![CDATA[doc_core_ts]]></category>
		<category><![CDATA[ext_conf_template]]></category>
		<category><![CDATA[ext_conf_template.txt]]></category>
		<category><![CDATA[typo3 extension development]]></category>
		<category><![CDATA[typo3 extensions]]></category>

		<guid isPermaLink="false">http://blog.chandanweb.com/typo3/syntax-for-ext_conf_template</guid>
		<description><![CDATA[The Syntax inside the file ext_conf_template.txt is exatcly same as the syntax for the TypoScript constant declarations. There exists a documetnation about the same titled &#8220;Declaring constants for the Constant editor&#8221; which can be easily located in the typo3 core documentation titled &#8220;TypoScript Syntax and In-depth Study &#8211; doc_core_ts&#8221;.]]></description>
			<content:encoded><![CDATA[<p>The Syntax inside the file ext_conf_template.txt is exatcly same as the syntax for the TypoScript constant declarations.</p>
<p>There exists a documetnation about the same titled <strong>&#8220;Declaring constants for the Constant editor&#8221;</strong> which can be easily located in the typo3 core documentation titled <strong>&#8220;TypoScript Syntax and In-depth Study &#8211; doc_core_ts&#8221;.</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.chandanweb.com/typo3/syntax-for-ext_conf_template/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

