PluginProbe
The Innovative Form Builder – IvyForms / 0.8
The Innovative Form Builder – IvyForms v0.8
1.4.1 1.4 trunk 0.1.2 0.2 0.2.1 0.3 0.3.1 0.4 0.5 0.6 0.6.1 0.6.1-backup 0.6.1.1 0.7 0.8 0.8.1 0.8.2 0.9 0.9.1 1.0 1.1 1.1.1 1.2 1.3
ivyforms / backend / src / Repository / Entry / EntryRepositoryInterface.php

EntryRepositoryInterface.php in The Innovative Form Builder – IvyForms 0.8, at backend/src/Repository/Entry/EntryRepositoryInterface.php

72 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace IvyForms\Repository\Entry;
4
5 // phpcs:disable PSR1.Files.SideEffects
6 if (!defined('ABSPATH')) {
7 exit; // Exit if accessed directly
8 }
9
10 use IvyForms\Repository\BaseRepositoryInterface;
11
12 interface EntryRepositoryInterface extends BaseRepositoryInterface
13 {
14 /**
15 * Check if an entry exists in the database.
16 *
17 * @param int $entryId
18 * @return bool
19 */
20 public function exists(int $entryId): bool;
21
22 /**
23 * Get the count of entries for a specific form.
24 *
25 * @param int $formId
26 * @return int
27 */
28 public function getCountByFormId(int $formId): int;
29
30 /**
31 * Get the count of entries for multiple form IDs.
32 *
33 * @param int[] $formIds
34 * @return array<int, int> formId => count
35 */
36 public function getEntryCountByFormIds(array $formIds): array;
37
38 /**
39 * Get the count of entries for the filter dropdown.
40 *
41 * @param array<string, mixed>|null $params
42 * @return array<string, int>
43 */
44 public function getFilterCount(?array $params = null): array;
45
46 /**
47 * Update the starred status of an entry.
48 *
49 * @param int $entryId
50 * @param bool $value
51 * @return void
52 */
53 public function updateEntryStarred(int $entryId, bool $value): void;
54
55 /**
56 * Update the status of an entry.
57 *
58 * @param int $entryId
59 * @param string $status
60 * @return void
61 */
62 public function updateEntryStatus(int $entryId, string $status): void;
63
64 /**
65 * Get the entries with their fields based on search parameters.
66 *
67 * @param array<int, array<string, mixed>> $entries
68 * @return array<mixed>
69 */
70 public function getEntryFields(array $entries): array;
71 }
72