| 1 | <?php |
||
| 11 | class GravityView_Field_Entry_Link extends GravityView_Field { |
||
| 12 | |||
| 13 | var $name = 'entry_link'; |
||
| 14 | |||
| 15 | var $contexts = array( 'multiple' ); |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var bool |
||
| 19 | * @since 1.15.3 |
||
| 20 | */ |
||
| 21 | var $is_sortable = false; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @var bool |
||
| 25 | * @since 1.15.3 |
||
| 26 | */ |
||
| 27 | var $is_searchable = false; |
||
| 28 | |||
| 29 | var $group = 'gravityview'; |
||
| 30 | |||
| 31 | public function __construct() { |
||
| 36 | |||
| 37 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
||
| 57 | |||
| 58 | } |
||
| 59 | |||
| 61 |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.