| 1 | <?php |
||
| 11 | class GravityView_Field_HTML extends GravityView_Field { |
||
| 12 | |||
| 13 | var $name = 'html'; |
||
| 14 | |||
| 15 | var $is_searchable = false; |
||
| 16 | |||
| 17 | var $is_sortable = false; |
||
| 18 | |||
| 19 | var $_gf_field_class_name = 'GF_Field_HTML'; |
||
| 20 | |||
| 21 | var $group = 'standard'; |
||
| 22 | |||
| 23 | public function __construct() { |
||
| 27 | |||
| 28 | function field_options( $field_options, $template_id, $field_id, $context, $input_type ) { |
||
| 34 | |||
| 35 | } |
||
| 36 | |||
| 38 |
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.