"TYPO3 4.0.1: typo3_src-4.0.1/typo3/sysext/cms/tslib/media/scripts/example_callfunction.php Source File", "datetime" => "Sat Dec 2 19:22:30 2006", "date" => "2 Dec 2006", "doxygenversion" => "1.4.6", "projectname" => "TYPO3 4.0.1", "projectnumber" => "4.0.1" ); get_header($doxygen_vars); ?>
00001 <?php 00002 /*************************************************************** 00003 * Copyright notice 00004 * 00005 * (c) 1999-2005 Kasper Skaarhoj (kasperYYYY@typo3.com) 00006 * All rights reserved 00007 * 00008 * This script is part of the TYPO3 project. The TYPO3 project is 00009 * free software; you can redistribute it and/or modify 00010 * it under the terms of the GNU General Public License as published by 00011 * the Free Software Foundation; either version 2 of the License, or 00012 * (at your option) any later version. 00013 * 00014 * The GNU General Public License can be found at 00015 * http://www.gnu.org/copyleft/gpl.html. 00016 * A copy is found in the textfile GPL.txt and important notices to the license 00017 * from the author is found in LICENSE.txt distributed with these scripts. 00018 * 00019 * 00020 * This script is distributed in the hope that it will be useful, 00021 * but WITHOUT ANY WARRANTY; without even the implied warranty of 00022 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00023 * GNU General Public License for more details. 00024 * 00025 * This copyright notice MUST APPEAR in all copies of the script! 00026 ***************************************************************/ 00065 function user_reverseString($content,$conf) { 00066 $content = strrev($content); 00067 if ($conf['uppercase']) { 00068 $content=strtoupper($content); 00069 } 00070 return $content; 00071 } 00072 00090 function user_printTime($content,$conf) { 00091 return '<font color="red">Dynamic time: '.date('H:i:s').'</font><br />'; 00092 } 00093 00094 00095 00100 class user_various { 00101 var $cObj; // Reference to the parent (calling) cObj set from TypoScript 00102 00111 function reverseString($content,$conf) { 00112 $content = strrev($content); 00113 if ($conf['uppercase']) { 00114 $content=$this->cObj->caseshift($content,'upper'); 00115 } 00116 if ($conf['typolink']) { 00117 $content=$this->cObj->getTypoLink($content,$conf['typolink']); 00118 } 00119 return $content; 00120 } 00121 00140 function listContentRecordsOnPage($content,$conf) { 00141 $query = $GLOBALS['TYPO3_DB']->SELECTquery( 00142 'header', 00143 'tt_content', 00144 'pid='.intval($GLOBALS['TSFE']->id).$this->cObj->enableFields('tt_content'), 00145 '', 00146 'sorting'.($conf['reverseOrder'] ? ' DESC' : '') 00147 ); 00148 $output = 'This is the query: <strong>'.$query.'</strong><br /><br />'; 00149 return $output.$this->selectThem($query); 00150 } 00151 00159 function selectThem($query) { 00160 $res = $GLOBALS['TYPO3_DB']->sql(TYPO3_db,$query); 00161 $output=array(); 00162 while($row = $GLOBALS['TYPO3_DB']->sql_fetch_assoc($res)) { 00163 $output[]=$row['header']; 00164 } 00165 return implode($output,'<br />'); 00166 } 00167 } 00168 00169 ?>