PluginProbe ʕ •ᴥ•ʔ
LatePoint – Calendar Booking Plugin for Appointments and Events / 5.6.6
LatePoint – Calendar Booking Plugin for Appointments and Events v5.6.6
5.6.6 5.6.5 5.6.4 5.6.3 5.6.2 5.6.1 5.6.0 5.5.2 5.5.1 5.5.0 5.4.2 trunk 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.1.8 5.1.9 5.1.91 5.1.92 5.1.93 5.1.94 5.2.0 5.2.1 5.2.10 5.2.11 5.2.2 5.2.3 5.2.4 5.2.5 5.2.6 5.2.7 5.2.8 5.2.9 5.3.0 5.3.1 5.3.2 5.4.0 5.4.1
latepoint / lib / config / capabilities_for_controllers.php
latepoint / lib / config Last commit date
capabilities_for_controllers.php 4 days ago
capabilities_for_controllers.php
124 lines
1 <?php
2 return [
3 'OsDashboardController' => [
4 'default' => [ 'booking__view' ],
5 ],
6 'OsActivitiesController' => [
7 'default' => [ 'activity__view' ],
8 'per_action' => [
9 'destroy' => [ 'activity__delete' ],
10 ],
11 ],
12 'OsAddonsController' => [],
13 'OsDefaultAgentController' => [],
14 'OsAgentsController' => [
15 'default' => [ 'agent__edit' ],
16 'per_action' => [
17 'edit_form' => [ 'agent__view' ],
18 'index' => [ 'agent__view' ],
19 'mini_profile' => [ 'agent__view' ],
20 'new_form' => [ 'agent__create' ],
21 'create' => [ 'agent__create' ],
22 'destroy' => [ 'agent__delete' ],
23 ],
24 ],
25 'OsAuthController' => [],
26 'OsBookingsController' => [
27 'default' => [ 'booking__view' ],
28 'per_action' => [
29 'view_booking_log' => [ 'activity__view' ],
30 'change_status' => [ 'booking__edit' ],
31 'update' => [ 'booking__edit' ],
32 'create' => [ 'booking__create' ],
33 'destroy' => [ 'booking__delete' ],
34 'bulk_destroy' => [ 'booking__delete' ],
35 ],
36 ],
37 'OsOrdersController' => [
38 'default' => [ 'booking__view' ],
39 'per_action' => [
40 'view_order_log' => [ 'activity__view' ],
41 'change_status' => [ 'booking__edit' ],
42 'update' => [ 'booking__edit' ],
43 'create' => [ 'booking__create' ],
44 'destroy' => [ 'booking__delete' ],
45 ],
46 ],
47 'OsCalendarsController' => [
48 'default' => [ 'booking__view' ],
49 ],
50 'OsCustomerCabinetController' => [],
51 'OsCustomersController' => [
52 'default' => [ 'customer__edit' ],
53 'per_action' => [
54 'set_as_guest' => [ 'customer__edit' ],
55 'destroy' => [ 'customer__delete' ],
56 'new_form' => [ 'customer__create' ],
57 'create' => [ 'customer__create' ],
58 'query_for_booking_form' => [ 'customer__view' ],
59 'edit_form' => [ 'customer__view' ],
60 'mini_profile' => [ 'customer__view' ],
61 'index' => [ 'customer__view' ],
62 'inline_edit_form' => [ 'customer__view' ],
63 'disconnect_from_wp_user' => [ 'customer__edit' ],
64 'connect_to_wp_user' => [ 'customer__edit' ],
65 ],
66 ],
67 'OsDebugController' => [],
68 'OsIntegrationsController' => [],
69 'OsNotificationsController' => [],
70 'OsProcessJobsController' => [],
71 'OsProcessesController' => [],
72 'OsSearchController' => [
73 'default' => [ 'booking__view' ],
74 ],
75 'OsServiceCategoriesController' => [
76 'default' => [ 'service__edit' ],
77 'per_action' => [
78 'list_for_select' => [ 'service__view' ],
79 'index' => [ 'service__view' ],
80 'destroy' => [ 'service__delete' ],
81 'create' => [ 'service__create' ],
82 ],
83 ],
84 'OsServicesController' => [
85 'default' => [ 'service__edit' ],
86 'per_action' => [
87 'index' => [ 'service__view' ],
88 'create' => [ 'service__create' ],
89 'destroy' => [ 'service__delete' ],
90 ],
91 ],
92 'OsBundlesController' => [
93 'default' => [ 'bundle__edit' ],
94 'per_action' => [
95 'index' => [ 'bundle__view' ],
96 'create' => [ 'bundle__create' ],
97 'destroy' => [ 'bundle__delete' ],
98 ],
99 ],
100 'OsSettingsController' => [
101 'per_action' => [
102 'load_work_period_form' => [ 'agent__edit' ],
103 'remove_chain_schedule' => [ 'agent__edit' ],
104 'remove_custom_day_schedule' => [ 'agent__edit' ],
105 'save_custom_day_schedule' => [ 'agent__edit' ],
106 'custom_day_schedule_form' => [ 'agent__edit' ],
107 'update_work_periods' => [ 'agent__edit' ],
108 ],
109 ],
110 'OsStepsController' => [],
111 'OsTransactionsController' => [
112 'default' => [ 'transaction__edit' ],
113 'per_action' => [
114 'destroy' => [ 'transaction__delete' ],
115 'index' => [ 'transaction__view' ],
116 ],
117 ],
118 'OsUpdatesController' => [],
119 'OsWizardController' => [],
120 'OsMessagesController' => [
121 'default' => [ 'chat__edit' ],
122 ],
123 ];
124