PluginProbe
JetFormBuilder — Dynamic Blocks Form Builder / 3.3.1
JetFormBuilder — Dynamic Blocks Form Builder v3.3.1
3.6.5.2 3.6.5.1 3.6.5 3.6.4.2 3.6.4.1 3.6.4 3.6.3.1 3.6.3 3.6.2.2 3.6.2.1 3.6.2 3.6.1.1 3.6.1 3.6.0.1 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 All 130 releases
jetformbuilder / modules / gateways / paypal / api-actions / traits / app-context-trait.php
app-context-trait.php
41 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3
4 namespace JFB_Modules\Gateways\Paypal\Api_Actions\Traits;
5
6 // If this file is called directly, abort.
7 if ( ! defined( 'WPINC' ) ) {
8 die;
9 }
10
11 /**
12 * Trait AppContextTrait
13 *
14 * @package Jet_FB_Paypal\ApiActions
15 */
16 trait App_Context_Trait {
17
18 private $app_context = array();
19
20 public function set_app_context( array $context ) {
21 $blog_name = get_option( 'blogname' );
22
23 $this->app_context = array_merge(
24 $this->app_context,
25 array(
26 'landing_page' => 'BILLING',
27 'user_action' => $this->action_slug(),
28 'brand_name' => $blog_name ?: __( 'Site name', 'jet-form-builder' ),
29 ),
30 $context
31 );
32
33 return $this;
34 }
35
36 public function get_app_context() {
37 return $this->app_context;
38 }
39
40 }
41