| 1 |
<?php |
| 2 |
|
| 3 |
if (!defined('ABSPATH')) { |
| 4 |
exit; |
| 5 |
} |
| 6 |
|
| 7 |
/** |
| 8 |
* Reusable SQL-string builders shared by every DAO query that filters by |
| 9 |
* post type or category, and the session-tuning hook that lets large |
| 10 |
* queries run. |
| 11 |
*/ |
| 12 |
interface ABJ_404_Solution_DatabaseQueryBuilderInterface { |
| 13 |
|
| 14 |
/** |
| 15 |
* Build a SQL-safe list from recognized_post_types option. |
| 16 |
* |
| 17 |
* @param array<string, mixed> $options |
| 18 |
* @return string |
| 19 |
*/ |
| 20 |
public function buildPostTypeSqlList(array $options): string; |
| 21 |
|
| 22 |
/** |
| 23 |
* Build a SQL-safe list from recognized_categories option. |
| 24 |
* |
| 25 |
* @param array<string, mixed> $options |
| 26 |
* @return string |
| 27 |
*/ |
| 28 |
public function buildCategorySqlList(array $options): string; |
| 29 |
|
| 30 |
/** |
| 31 |
* Set SQL session variables to allow large queries. |
| 32 |
* |
| 33 |
* @return void |
| 34 |
*/ |
| 35 |
public function setSqlBigSelects(): void; |
| 36 |
} |
| 37 |
|