PluginProbe
Booking Calendar / 11.3
Booking Calendar v11.3
11.8.4 11.8.3 11.8.2 11.8.1 11.8 11.7 11.6.1 11.6 11.5 11.4.3 11.4.2 11.4.1 11.4 11.3 11.2.1 11.2 11.1 11.0 10.15.7 10.15.6 10.1.3 10.10 10.10.1 10.10.2 10.11 All 204 releases
booking / includes / page-bookings / listing_actions / bulk_print.php

bulk_print.php in Booking Calendar 11.3, at includes/page-bookings/listing_actions/bulk_print.php

44 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Class to Print -- Option for "Bulk Actions - Dropdown Menu"
4 *
5 * @package Support functions.
6 */
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit, if accessed directly.
10 }
11
12 // JavaScript: in ../includes/print/_src/bookings_print.js -> function wpbc_print_dialog__show() { ... } .
13
14 /**
15 * Class WPBC_Listing_Actions__Bulk_Print
16 */
17 class WPBC_Listing_Actions__Bulk_Print{
18
19 const ACTION = 'bulk_print';
20
21 /**
22 * Get Action Button
23 *
24 * @return false|string
25 */
26 public static function get_option() {
27
28 $css_class = 'ul_dropdown_menu_li_action ';
29 $css_class .= 'ul_dropdown_menu_li_action_' . self::ACTION;
30
31 // Option Title.
32 $html = "<a href=\"javascript:void(0)\" class=\"" . esc_attr( $css_class ) . "\"
33 onclick=\"wpbc_print_dialog__show();\"
34 title=\"" . esc_attr( __( 'Print bookings', 'booking' ) ) . "\"
35 >" .
36 esc_js( __( 'Print', 'booking' ) ) .
37 ' <i class="menu_icon icon-1x wpbc_icn_print"></i>'.
38 '</a>';
39
40 return $html;
41
42 }
43 }
44