Priority File Manager

Base Directory:
/home/lvabrwqv/public_html/wp-content/plugins/gravityforms
NameTypeSizeActions
📁 .. Folder -
📁 assets Folder -
📄 change_log.txt File 516028
Edit Download
📄 common.php File 299178
Edit Download
📁 css Folder -
📄 currency.php File 14513
Edit Download
📄 entry_detail.php File 61309
Edit Download
📄 entry_list.php File 78295
Edit Download
📄 export.php File 60347
Edit Download
📁 fonts Folder -
📄 form_detail.php File 190445
Edit Download
📄 form_display.php File 229238
Edit Download
📄 form_list.php File 41475
Edit Download
📄 form_settings.php File 54609
Edit Download
📄 forms_model.php File 304284
Edit Download
📄 gpl-3.0.txt File 35147
Edit Download
📄 gravityforms.php File 247187
Edit Download
📄 help.php File 11935
Edit Download
📁 images Folder -
📁 includes Folder -
📄 index.php File 27
Edit Download
📁 js Folder -
📄 js.php File 82572
Edit Download
📁 languages Folder -
📁 legacy Folder -
📄 notification.php File 52240
Edit Download
📄 phpcs.wpcom.xml File 943
Edit Download
📄 phpcs.xml.dist File 998
Edit Download
📄 phpstan-baseline.neon File 37352
Edit Download
📄 phpstan.neon.dist File 569
Edit Download
📄 preview.php File 5317
Edit Download
📄 print-entry.php File 9891
Edit Download
📄 select_columns.php File 9233
Edit Download
📄 settings.php File 52322
Edit Download
📄 tooltips.php File 45228
Edit Download
📄 widget.php File 7974
Edit Download
📄 xml.php File 11290
Edit Download
'gform_widget', 'description' => $description ), array( 'width' => 200, 'height' => 250, 'id_base' => 'gform_widget' ) ); } /** * Handles outputting of the widget content * * @see WP_Widget::widget * @see RGFormsModel::get_form_meta * @see RGForms::print_form_scripts * @see RGForms::get_form * * @param array $args Arguments provided to the widget * @param array $instance Saved database values for the widget */ function widget( $args, $instance ) { extract( $args ); echo $before_widget; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped if ( empty( $instance ) ) { $forms = RGFormsModel::get_forms( 1, 'title' ); if ( empty( $forms ) ) { return ''; } $form = GFAPI::get_form( $forms[0]->id ); $instance['form_id'] = $form['id']; $instance['ajax'] = false; $instance['showtitle'] = false; $instance['showdescription'] = false; } /** * Filters the widget title. * * @since 2.4.10 Added the $instance and $id_base args. * @since unknown * * @param string $title The widget title. * @param array $instance Saved database values for the widget. * @param mixed $id_base The widget ID. */ $title = apply_filters( 'widget_title', rgar( $instance, 'title' ), $instance, $this->id_base ); if ( $title ) { echo $before_title . $title . $after_title; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } $tabindex = is_numeric( rgar( $instance, 'tabindex' ) ) ? $instance['tabindex'] : 0; // Creating form if ( empty( $form ) ) { $form = RGFormsModel::get_form_meta( $instance['form_id'] ); } if ( empty( $instance['disable_scripts'] ) && ! is_admin() ) { RGForms::print_form_scripts( $form, $instance['ajax'] ); } $form_markup = RGForms::get_form( $instance['form_id'], $instance['showtitle'], $instance['showdescription'], false, null, $instance['ajax'], $tabindex ); // Display form echo $form_markup; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $after_widget; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped } /** * Handles updates to the widget content * * @param array $new_instance The new instance of the widget * @param array $old_instance The old instance of the widget * * @return array The widget instance, after changes have occurred */ function update( $new_instance, $old_instance ) { $instance = $old_instance; $instance['title'] = strip_tags( $new_instance['title'] ); $instance['form_id'] = rgar( $new_instance, 'form_id' ); $instance['showtitle'] = rgar( $new_instance, 'showtitle' ); $instance['ajax'] = rgar( $new_instance, 'ajax' ); $instance['disable_scripts'] = rgar( $new_instance, 'disable_scripts' ); $instance['showdescription'] = rgar( $new_instance, 'showdescription' ); $instance['tabindex'] = rgar( $new_instance, 'tabindex', 0 ); return $instance; } /** * Outputs the form options for the widget * * @param array $instance The widget instance * * @return void */ function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'title' => __( 'Contact Us', 'gravityforms' ), 'tabindex' => '0' ) ); ?>

value="1" />
value="1" />