Просмотр файла admin/admin_money.php

Размер файла: 4.09Kb
  1. <?php
  2. /***************************************************************************
  3. * mides.ru
  4. * -------------------
  5. ***************************************************************************/
  6. define('IN_PHPBB', 1);
  7.  
  8. if( !empty($setmodules) )
  9. {
  10. $file = basename(__FILE__);
  11. $module['Магазин']['Настройка'] = $file;
  12. return;
  13. }
  14.  
  15. $phpbb_root_path = "./../";
  16. require($phpbb_root_path . 'extension.inc');
  17. require('./pagestart.' . $phpEx);
  18. include($phpbb_root_path . 'includes/functions_selects.'.$phpEx);
  19.  
  20. $sql = "SELECT *
  21. FROM " . CONFIG_TABLE;
  22. if(!$result = $db->sql_query($sql))
  23. {
  24. message_die(CRITICAL_ERROR, "Could not query config information in admin_board", "", __LINE__, __FILE__, $sql);
  25. }
  26. else
  27. {
  28. while( $row = $db->sql_fetchrow($result) )
  29. {
  30. $config_name = $row['config_name'];
  31. $config_value = $row['config_value'];
  32. $default_config[$config_name] = isset($HTTP_POST_VARS['submit']) ? str_replace("'", "\'", $config_value) : $config_value;
  33. $new[$config_name] = ( isset($HTTP_POST_VARS[$config_name]) ) ? $HTTP_POST_VARS[$config_name] : $default_config[$config_name];
  34.  
  35. if ($config_name == 'cookie_name')
  36. {
  37. $new['cookie_name'] = str_replace('.', '_', $new['cookie_name']);
  38. }
  39.  
  40. if ($config_name == 'server_name')
  41. {
  42. $new['server_name'] = str_replace('http://', '', $new['server_name']);
  43. }
  44.  
  45. if ($config_name == 'avatar_path')
  46. {
  47. $new['avatar_path'] = trim($new['avatar_path']);
  48. if (strstr($new['avatar_path'], "\0") || !is_dir($phpbb_root_path . $new['avatar_path']) || !is_writable($phpbb_root_path . $new['avatar_path']))
  49. {
  50. $new['avatar_path'] = $default_config['avatar_path'];
  51. }
  52. }
  53.  
  54. if ($config_name == 'default_icq')
  55. {
  56. if (!preg_match('/^[0-9]+$/', $new['default_icq']))
  57. {
  58. $new['default_icq'] = '';
  59. }
  60. }
  61.  
  62. if( isset($HTTP_POST_VARS['submit']) )
  63. {
  64. $sql = "UPDATE " . CONFIG_TABLE . " SET
  65. config_value = '" . str_replace("\'", "''", $new[$config_name]) . "'
  66. WHERE config_name = '$config_name'";
  67. if( !$db->sql_query($sql) )
  68. {
  69. message_die(GENERAL_ERROR, "Failed to update general configuration for $config_name", "", __LINE__, __FILE__, $sql);
  70. }
  71. }
  72. }
  73.  
  74. if( isset($HTTP_POST_VARS['submit']) )
  75. {
  76. $message = $lang['Config_updated'] . "<br /><br />" . sprintf($lang['Click_return_config'], "<a href=\"" . append_sid("admin_money.$phpEx") . "\">", "</a>") . "<br /><br />" . sprintf($lang['Click_return_admin_index'], "<a href=\"" . append_sid("index.$phpEx?pane=left") . "\">", "</a>");
  77.  
  78. message_die(GENERAL_MESSAGE, $message);
  79. }
  80. }
  81.  
  82. $shop_yes = ($new['shop']) ? 'checked="checked"' : '';
  83. $shop_no = (!$new['shop']) ? 'checked="checked"' : '';
  84.  
  85. $sites_yes = ($new['sites']) ? 'checked="checked"' : '';
  86. $sites_no = (!$new['sites']) ? 'checked="checked"' : '';
  87.  
  88. $payment_yes = ($new['pay_money']) ? 'checked="checked"' : '';
  89. $payment_no = (!$new['pay_money']) ? 'checked="checked"' : '';
  90.  
  91. $ref_yes = ($new['ref_url']) ? 'checked="checked"' : '';
  92. $ref_no = (!$new['ref_url']) ? 'checked="checked"' : '';
  93.  
  94. $template->set_filenames(array(
  95. "body" => "admin/money_config_body.tpl")
  96. );
  97.  
  98. $template->assign_vars(array(
  99. "S_CONFIG_ACTION" => append_sid("admin_money.$phpEx"),
  100. "SMENA_NIKA" => $new['smena_nika'],
  101. "SMENA_CVETA" => $new['smena_cveta'],
  102. "SMENA_ZVANIYA" => $new['smena_zvaniya'],
  103. "SITES_YES" => $sites_yes,
  104. "SITES_NO" => $sites_no,
  105. "SHOP_YES" => $shop_yes,
  106. "SHOP_NO" => $shop_no,
  107. "PAYMENT_YES" => $payment_yes,
  108. "PAYMENT_NO" => $payment_no,
  109. "REF_YES" => $ref_yes,
  110. "REF_NO" => $ref_no,
  111. "VERH_PAY" => $new['verh_pay'],
  112. "NIZ_PAY" => $new['niz_pay'],
  113. "VERH" => $new['verh'],
  114. "NIZ" => $new['niz'],
  115. "TIME_CLICK" => $new['time_click'],
  116. "KURS_PAYMENT" => $new['kurs_payment'],
  117. "RAZBLOKIROVKA_DRUGA" => $new['razblokirovka_druga'],
  118. "POKUPKA_UCHETKI" => $new['pokupka_uchetki'],
  119. "POKUPKA_UCHETKI_POSTS" => $new['pokupka_uchetki_posts'],
  120. "POKUPKA_UCHETKI_NEDELI" => $new['pokupka_uchetki_nedeli'])
  121. );
  122.  
  123. $template->pparse("body");
  124.  
  125. include('./page_footer_admin.'.$phpEx);
  126.  
  127. ?>