| [ PHPXref.com ] | [ Generated: Sun Jul 20 19:13:40 2008 ] | [ osCommRes 1.2.0 ] |
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 <?php 2 /* 3 4 WebMakers.com Added: Downloads Controller Functions 5 NOTE: Some function may already exist in other Add-Ons I have created. 6 7 */ 8 ?> 9 <?php 10 11 //// 12 // BOF: WebMakers.com Added: configuration key value lookup 13 function tep_get_configuration_key_value($lookup) { 14 $configuration_query_raw= tep_db_query("select configuration_value from " . TABLE_CONFIGURATION . " where configuration_key='" . $lookup . "'"); 15 $configuration_query= tep_db_fetch_array($configuration_query_raw); 16 $lookup_value= $configuration_query['configuration_value']; 17 /*if ( !($lookup_value) ) { 18 $lookup_value='<font color="FF0000">' . $lookup . '</font>'; 19 }*/ 20 return $lookup_value; 21 } 22 // EOF: WebMakers.com Added: configuration key value lookup 23 24 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| [ Powered by PHPXref - Served by Debian GNU/Linux ] |