57 lines
1.1 KiB
PHP
57 lines
1.1 KiB
PHP
<?php
|
|
|
|
if ( ! class_exists( 'GFForms' ) ) {
|
|
die();
|
|
}
|
|
|
|
|
|
class GF_Field_Product extends GF_Field {
|
|
|
|
public $type = 'product';
|
|
|
|
public function get_form_editor_field_title() {
|
|
return esc_attr__( 'Product', 'gravityforms' );
|
|
}
|
|
|
|
/**
|
|
* Returns the field's form editor description.
|
|
*
|
|
* @since 2.5
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_form_editor_field_description() {
|
|
return esc_attr__( 'Allows the creation of products in the form.', 'gravityforms' );
|
|
}
|
|
|
|
/**
|
|
* Returns the field's form editor icon.
|
|
*
|
|
* This could be an icon url or a gform-icon class.
|
|
*
|
|
* @since 2.5
|
|
*
|
|
* @return string
|
|
*/
|
|
public function get_form_editor_field_icon() {
|
|
return 'gform-icon--product';
|
|
}
|
|
|
|
function get_form_editor_field_settings() {
|
|
return array(
|
|
'product_field_type_setting',
|
|
'prepopulate_field_setting',
|
|
'label_setting',
|
|
'admin_label_setting',
|
|
'label_placement_setting',
|
|
'description_setting',
|
|
'css_class_setting',
|
|
);
|
|
}
|
|
|
|
public function get_field_input( $form, $value = '', $entry = null ) {
|
|
return '';
|
|
}
|
|
}
|
|
|
|
GF_Fields::register( new GF_Field_Product() ); |