PluginProbe ʕ •ᴥ•ʔ
LatePoint – Calendar Booking Plugin for Appointments and Events / 5.5.2
LatePoint – Calendar Booking Plugin for Appointments and Events v5.5.2
5.6.7 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 3 months ago
capabilities_for_controllers.php
121 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 ],
35 ],
36 'OsOrdersController' => [
37 'default' => [ 'booking__view' ],
38 'per_action' => [
39 'view_order_log' => [ 'activity__view' ],
40 'change_status' => [ 'booking__edit' ],
41 'update' => [ 'booking__edit' ],
42 'create' => [ 'booking__create' ],
43 'destroy' => [ 'booking__delete' ],
44 ],
45 ],
46 'OsCalendarsController' => [
47 'default' => [ 'booking__view' ],
48 ],
49 'OsCustomerCabinetController' => [],
50 'OsCustomersController' => [
51 'default' => [ 'customer__edit' ],
52 'per_action' => [
53 'set_as_guest' => [ 'customer__edit' ],
54 'destroy' => [ 'customer__delete' ],
55 'new_form' => [ 'customer__create' ],
56 'create' => [ 'customer__create' ],
57 'query_for_booking_form' => [ 'customer__view' ],
58 'edit_form' => [ 'customer__view' ],
59 'mini_profile' => [ 'customer__view' ],
60 'index' => [ 'customer__view' ],
61 'inline_edit_form' => [ 'customer__view' ],
62 ],
63 ],
64 'OsDebugController' => [],
65 'OsIntegrationsController' => [],
66 'OsNotificationsController' => [],
67 'OsProcessJobsController' => [],
68 'OsProcessesController' => [],
69 'OsSearchController' => [
70 'default' => [ 'booking__view' ],
71 ],
72 'OsServiceCategoriesController' => [
73 'default' => [ 'service__edit' ],
74 'per_action' => [
75 'list_for_select' => [ 'service__view' ],
76 'index' => [ 'service__view' ],
77 'destroy' => [ 'service__delete' ],
78 'create' => [ 'service__create' ],
79 ],
80 ],
81 'OsServicesController' => [
82 'default' => [ 'service__edit' ],
83 'per_action' => [
84 'index' => [ 'service__view' ],
85 'create' => [ 'service__create' ],
86 'destroy' => [ 'service__delete' ],
87 ],
88 ],
89 'OsBundlesController' => [
90 'default' => [ 'bundle__edit' ],
91 'per_action' => [
92 'index' => [ 'bundle__view' ],
93 'create' => [ 'bundle__create' ],
94 'destroy' => [ 'bundle__delete' ],
95 ],
96 ],
97 'OsSettingsController' => [
98 'per_action' => [
99 'load_work_period_form' => [ 'agent__edit' ],
100 'remove_chain_schedule' => [ 'agent__edit' ],
101 'remove_custom_day_schedule' => [ 'agent__edit' ],
102 'save_custom_day_schedule' => [ 'agent__edit' ],
103 'custom_day_schedule_form' => [ 'agent__edit' ],
104 'update_work_periods' => [ 'agent__edit' ],
105 ],
106 ],
107 'OsStepsController' => [],
108 'OsTransactionsController' => [
109 'default' => [ 'transaction__edit' ],
110 'per_action' => [
111 'destroy' => [ 'transaction__delete' ],
112 'index' => [ 'transaction__view' ],
113 ],
114 ],
115 'OsUpdatesController' => [],
116 'OsWizardController' => [],
117 'OsMessagesController' => [
118 'default' => [ 'chat__edit' ],
119 ],
120 ];
121