WordPress CSS Header
/*
Theme Name:
Theme URI:
Description:
Version:
Author:
Author URI:
Tags:
*/
Added to WordPress by Erik Bernskiold
MODx: Wayfinder standard
[!Wayfinder?startId=`0`! &level=`2` &outerTpl=`outerTpl`]]
Added to Misc by Esben Thomsen
MODx: H1 link
<h1><a href="[~[(site_start)]~]" title="[(site_name)]">[(site_name)]</a></h1>
Added to Misc by Esben Thomsen
TYPO3: DB fetch assoc
while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)){
print_r($row);
}
Added to Misc by Tim Lochmüller
TYPO3: DB Select
$res = $GLOBALS['TYPO3_DB']->exec_SELECTquery(
'*',
'from_table<<**SelectionInsertionPlaceholder**>>',
'1=1',
'groupBy',
'orderBy',
10
);
Added to Misc by Tim Lochmüller
TYPO3: DB Update
$GLOBALS['TYPO3_DB']->exec_UPDATEquery(
'table<<**SelectionInsertionPlaceholder**>>',
'1=1',
array('field' => 'value')
)
Added to Misc by Tim Lochmüller
TYPO3: DB Insert
$GLOBALS['TYPO3_DB']->exec_INSERTquery(
'table<<**SelectionInsertionPlaceholder**>>',
array('field' => 'value')
);
Added to Misc by Tim Lochmüller