| 1 | <?php |
||
| 3 | class GravityView_Field_Created_By extends GravityView_Field { |
||
| 4 | |||
| 5 | var $name = 'created_by'; |
||
| 6 | |||
| 7 | var $search_operators = array( 'is', 'isnot' ); |
||
| 8 | |||
| 9 | var $group = 'meta'; |
||
| 10 | |||
| 11 | public function __construct() { |
||
| 15 | |||
| 16 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
||
| 36 | |||
| 37 | } |
||
| 38 | |||
| 40 |
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.