Merge pull request #13270 from civicrm/5.9
[civicrm-core.git] / CRM / Core / PrevNextCache / Interface.php
CommitLineData
780fd0e3
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
780fd0e3
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
26 */
27
28/**
29 * Interface CRM_Core_PrevNextCache_Interface
30 *
31 * The previous/next cache is a service for tracking query results. Results
32 * are stored in a cache, and they may be individually toggled.
33 */
34interface CRM_Core_PrevNextCache_Interface {
35
32a2c024
TO
36 /**
37 * Store the results of a SQL query in the cache.
38 *
83068a64 39 * @param string $cacheKey
32a2c024
TO
40 * @param string $sql
41 * A SQL query. The query *MUST* be a SELECT statement which yields
ec192197 42 * the following columns (in order): cacheKey, entity_id1, data
32a2c024
TO
43 * @return bool
44 */
45 public function fillWithSql($cacheKey, $sql);
46
83068a64
TO
47 /**
48 * Store the contents of an array in the cache.
49 *
50 * @param string $cacheKey
51 * @param array $rows
52 * A list of cache records. Each record should have keys:
83068a64 53 * - entity_id1
83068a64
TO
54 * - data
55 * @return bool
56 */
57 public function fillWithArray($cacheKey, $rows);
58
0b8038a6
TO
59 /**
60 * Save checkbox selections.
61 *
62 * @param string $cacheKey
63 * @param string $action
64 * Ex: 'select', 'unselect'.
bab1fd32 65 * @param array|int|NULL $ids
0b8038a6
TO
66 * A list of contact IDs to (un)select.
67 * To unselect all contact IDs, use NULL.
0b8038a6 68 */
bab1fd32 69 public function markSelection($cacheKey, $action, $ids = NULL);
0b8038a6 70
b7994703
TO
71 /**
72 * Get the selections.
73 *
74 * @param string $cacheKey
75 * Cache key.
76 * @param string $action
40ddbe99
TO
77 * One of the following:
78 * - 'get' - get only selection records
79 * - 'getall' - get all the records of the specified cache key
b7994703
TO
80 *
81 * @return array|NULL
82 */
40ddbe99 83 public function getSelection($cacheKey, $action = 'get');
b7994703 84
d379a6d9
TO
85 /**
86 * Get the previous and next keys.
87 *
88 * @param string $cacheKey
89 * @param int $id1
d379a6d9
TO
90 *
91 * @return array
ec192197
TO
92 * List of neighbors.
93 * [
94 * 'foundEntry' => 1,
95 * 'prev' => ['id1' => 123, 'data'=>'foo'],
96 * 'next' => ['id1' => 456, 'data'=>'foo'],
97 * ]
d379a6d9 98 */
ec192197 99 public function getPositions($cacheKey, $id1);
d379a6d9 100
744b4e34
TO
101 /**
102 * Delete an item from the prevnext cache table based on the entity.
103 *
104 * @param int $id
105 * @param string $cacheKey
744b4e34 106 */
ec192197 107 public function deleteItem($id = NULL, $cacheKey = NULL);
744b4e34 108
c93f3d19
TO
109 /**
110 * Get count of matching rows.
111 *
112 * @param string $cacheKey
113 * @return int
114 */
115 public function getCount($cacheKey);
116
2ca46d4d
TO
117 /**
118 * Fetch a list of contacts from the prev/next cache for displaying a search results page
119 *
120 * @param string $cacheKey
121 * @param int $offset
122 * @param int $rowCount
123 * @return array
124 * List of contact IDs (entity_id1).
125 */
126 public function fetch($cacheKey, $offset, $rowCount);
127
780fd0e3 128}