| 2 |
function load_section_list(array & $result, callable $filter, callable $udf_value_gen, mysqli $db_conn, array $filter_param = array()) : bool |
function load_section_list(array & $result, callable $filter, callable $udf_value_gen, mysqli $db_conn, array $filter_param = array()) : bool |
| 3 |
{ |
{ |
| 4 |
$sql = "SELECT SID, section_config.CID, section_config.title AS s_title, section_config.comment, |
$sql = "SELECT SID, section_config.CID, section_config.title AS s_title, section_config.comment, |
| 5 |
section_class.title AS c_title |
section_class.title AS c_title, section_config.recommend |
| 6 |
FROM section_config INNER JOIN section_class ON section_config.CID = section_class.CID |
FROM section_config INNER JOIN section_class ON section_config.CID = section_class.CID |
| 7 |
WHERE section_class.enable AND section_config.enable |
WHERE section_class.enable AND section_config.enable |
| 8 |
ORDER BY section_class.sort_order, section_config.sort_order"; |
ORDER BY section_class.sort_order, section_config.sort_order"; |