PluginProbe
Additional Terms Lite for WooCommerce / 1.7.2.1
Additional Terms Lite for WooCommerce v1.7.2.1
1.7.3 1.7.2.1 trunk 1.0.1 1.0.2 1.1.0 1.2.0 1.2.1 1.2.2 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.4.0 1.4.1 1.5.0 1.5.1 1.5.2 1.6.0 1.6.1 1.6.2 1.6.3 All 35 releases
woo-additional-terms / src / Enhancements / Upsell.php

Upsell.php in Additional Terms Lite for WooCommerce 1.7.2.1, at src/Enhancements/Upsell.php

48 lines 688 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin upsell content.
4 *
5 * @since 1.4.0
6 *
7 * @package woo-additional-terms
8 */
9
10 namespace Woo_Additional_Terms\Enhancements;
11
12 use Woo_Additional_Terms\Helper;
13
14 /**
15 * Class Upsell.
16 */
17 class Upsell {
18
19 /**
20 * Setup hooks and filters.
21 *
22 * @since 1.4.0
23 *
24 * @return void
25 */
26 public function setup() {
27
28 add_action( 'woo_additional_terms_settings_sidebar', array( $this, 'sidebar' ) );
29 }
30
31 /**
32 * Display the upsell sidebar.
33 *
34 * @since 1.6.0
35 *
36 * @return void
37 */
38 public function sidebar() {
39
40 woo_additional_terms()->service( 'template_manager' )->echo_template(
41 'sidebar/upsell.php',
42 array(
43 'uri' => Helper\Links::pro_uri(),
44 )
45 );
46 }
47 }
48