1 | <?php |
||
9 | class GravityView_Field_Payment_Method extends GravityView_Field { |
||
10 | |||
11 | var $name = 'payment_method'; |
||
12 | |||
13 | var $is_searchable = true; |
||
14 | |||
15 | var $is_numeric = false; |
||
16 | |||
17 | var $search_operators = array( 'is', 'isnot' ); |
||
18 | |||
19 | var $group = 'pricing'; |
||
20 | |||
21 | var $_custom_merge_tag = 'payment_method'; |
||
22 | |||
23 | /** |
||
24 | * GravityView_Field_Date_Created constructor. |
||
25 | */ |
||
26 | public function __construct() { |
||
30 | } |
||
31 | |||
33 |
This check looks for access to properties that are not accessible from the current context.
If you need to make a property accessible to another context you can either raise its visibility level or provide an accessible getter in the defining class.