functions.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. <?php
  2. /**
  3. * Shared utility functions for the system
  4. * Contains functions for:
  5. * - Product category handling
  6. * - [Other shared functions can be added here in the future]
  7. */
  8. // Function to get category name by ID
  9. function getCategoryName($conn, $category_id) {
  10. if (!$category_id) {
  11. return '未分类';
  12. }
  13. $sql = "SELECT name FROM product_categories WHERE id = " . intval($category_id);
  14. $result = mysqli_query($conn, $sql);
  15. if ($row = mysqli_fetch_assoc($result)) {
  16. return htmlspecialcharsFix($row['name']);
  17. }
  18. return '未知分类';
  19. }
  20. // Function to get full category path by ID (e.g., "父分类 > 子分类")
  21. function getCategoryPath($conn, $category_id) {
  22. if (!$category_id) {
  23. return '未分类';
  24. }
  25. $path = array();
  26. $current_id = $category_id;
  27. while ($current_id > 0) {
  28. $sql = "SELECT id, name, parent_id FROM product_categories WHERE id = " . intval($current_id);
  29. $result = mysqli_query($conn, $sql);
  30. if ($row = mysqli_fetch_assoc($result)) {
  31. $path[] = htmlspecialcharsFix($row['name']);
  32. $current_id = $row['parent_id'];
  33. } else {
  34. break;
  35. }
  36. }
  37. return implode(' > ', array_reverse($path));
  38. }
  39. // Function to build category tree
  40. function buildCategoryTree($conn) {
  41. // Get all categories
  42. $categories_sql = "SELECT * FROM product_categories ORDER BY parent_id ASC, sort_order ASC, id ASC";
  43. $categories_result = mysqli_query($conn, $categories_sql);
  44. // Build category tree
  45. $all_categories = array();
  46. $cat_tree = array();
  47. // First pass: create an array of all categories
  48. while ($cat_row = mysqli_fetch_assoc($categories_result)) {
  49. $all_categories[$cat_row['id']] = $cat_row;
  50. $all_categories[$cat_row['id']]['children'] = array();
  51. }
  52. // Second pass: build the tree structure
  53. foreach ($all_categories as $cat_id => $category) {
  54. if ($category['parent_id'] == 0) {
  55. // Root category
  56. $cat_tree[$cat_id] = &$all_categories[$cat_id];
  57. } else {
  58. // Child category
  59. if (isset($all_categories[$category['parent_id']])) {
  60. $all_categories[$category['parent_id']]['children'][$cat_id] = &$all_categories[$cat_id];
  61. }
  62. }
  63. }
  64. return [
  65. 'all_categories' => $all_categories,
  66. 'tree' => $cat_tree
  67. ];
  68. }
  69. // Function to output category options for select dropdown
  70. function outputCategoryOptions($categories, $selected_id, $level = 0) {
  71. foreach ($categories as $cat) {
  72. $indent = str_repeat('&nbsp;&nbsp;&nbsp;&nbsp;', $level);
  73. $prefix = $level > 0 ? $indent . '└─ ' : '';
  74. $selected = ($selected_id == $cat['id']) ? ' selected="selected"' : '';
  75. echo '<option value="' . $cat['id'] . '"' . $selected . '>' . $prefix . htmlspecialcharsFix($cat['name']) . '</option>';
  76. // Output children
  77. if (!empty($cat['children'])) {
  78. outputCategoryOptions($cat['children'], $selected_id, $level + 1);
  79. }
  80. }
  81. }
  82. // Function to get all subcategory IDs (recursively)
  83. function getSubcategoryIds($categories, $parent_id, &$result_ids) {
  84. foreach ($categories as $id => $category) {
  85. if ($category['parent_id'] == $parent_id) {
  86. $result_ids[] = $id;
  87. getSubcategoryIds($categories, $id, $result_ids);
  88. }
  89. }
  90. }