Coda Clips

Sitemap XML

<?xml version=”1.0” encoding=’UTF-8’?> 
<urlset xmlns=’http://www.sitemaps.org/schemas/sitemap/0.9’> 
	<url> 
		<loc>http://www.site.com/</loc> 
		<lastmod>2008-11-04</lastmod> 
		<changefreq>monthly</changefreq> 
		<priority>0.9</priority> 
	</url> 
</urlset>

Added to by Nikos Mouratidis

Install Clip


Basic MXML

<?xml version="1.0" encoding="utf-8"?>
<mx:Application 
   xmlns:mx="http://www.adobe.com/2006/mxml" 
   horizontalAlign="center" verticalAlign="middle" 
   width="800" height="600"
   <mx:Panel 
       paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10"
       title=""
   </mx:Panel>
</mx:Application>

Added to by Nathan Haskins

Install Clip


MODx: Wayfinder standard

[!Wayfinder?startId=`0`! &level=`2` &outerTpl=`outerTpl`]]

Added to by Esben Thomsen

Install Clip


MODx: H1 link

<h1><a href="[~[(site_start)]~]" title="[(site_name)]">[(site_name)]</a></h1>

Added to by Esben Thomsen

Install Clip


MODx: Page Title

<title>[(site_name)] | [*pagetitle*]</title>

Added to by Esben Thomsen

Install Clip


TYPO3: DB fetch assoc

while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)){
	print_r($row);
}

Added to by Tim Lochmüller

Install Clip


TYPO3: DB Select

$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
	'*',
	'from_table<<**SelectionInsertionPlaceholder**>>',
	'1=1',
	'groupBy',
	'orderBy',
	10
);

Added to by Tim Lochmüller

Install Clip


TYPO3: DB Update

$GLOBALS['TYPO3_DB']->exec_UPDATEquery(
	'table<<**SelectionInsertionPlaceholder**>>',
	'1=1',
	array('field' => 'value')
)

Added to by Tim Lochmüller

Install Clip