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.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 / views / processes / index.php
latepoint / lib / views / processes Last commit date
_form.php 1 year ago action_test_preview.php 4 months ago index.php 1 year ago new_form.php 1 year ago test_preview.php 1 year ago
index.php
32 lines
1 <?php
2 /* @var $processes OsProcessModel[] */
3
4 if ( ! defined( 'ABSPATH' ) ) {
5 exit; // Exit if accessed directly
6 }
7
8
9
10 ?>
11
12 <div class="os-processes-w os-form-blocks-w">
13 <?php
14 if($processes){
15 foreach($processes as $process){
16 $process->build_from_json();
17 include('_form.php');
18 }
19 }
20 wp_enqueue_editor();
21 ?>
22 </div>
23 <div class="os-add-box"
24 data-os-after-call="latepoint_init_process_conditions_form"
25 data-os-action="<?php echo esc_attr(OsRouterHelper::build_route_name('processes', 'new_form')); ?>"
26 data-os-output-target-do="append"
27 data-os-output-target=".os-processes-w">
28 <div class="add-box-graphic-w">
29 <div class="add-box-plus"><i class="latepoint-icon latepoint-icon-plus4"></i></div>
30 </div>
31 <div class="add-box-label"><?php esc_html_e('Add Workflow', 'latepoint'); ?></div>
32 </div>