1 | <?php |
||
6 | class GravityView_Field_Entry_Link extends GravityView_Field { |
||
7 | |||
8 | var $name = 'entry_link'; |
||
9 | |||
10 | var $contexts = array( 'multiple' ); |
||
11 | |||
12 | /** |
||
13 | * @var bool |
||
14 | * @since 1.15.3 |
||
15 | */ |
||
16 | var $is_sortable = false; |
||
17 | |||
18 | /** |
||
19 | * @var bool |
||
20 | * @since 1.15.3 |
||
21 | */ |
||
22 | var $is_searchable = false; |
||
23 | |||
24 | public function __construct() { |
||
29 | |||
30 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
||
50 | |||
51 | } |
||
52 | |||
54 |
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.