PATH:
home
/
hunkmedicalstaff
/
public_html
/
wp-content
/
plugins
/
gravityforms
/
includes
/
editor-button
/
dom
<?php namespace Gravity_Forms\Gravity_Forms\Editor_Button\Dom; /** * Handle outputting the Embed Button in the UI. * * @since 2.6 * * @package Gravity_Forms\Gravity_Forms\Embed_Form\Dom */ class GF_Editor_Button { /** * Output the HTML for the Embed Button. */ public function output_button() { ?> <button data-js="editor-flyout-trigger" class="gform-button gform-button--icon-white gform-button--icon-editor" aria-label="<?php esc_attr_e( 'Open editor preferences', 'gravityforms' ); ?>" title="<?php esc_attr_e( 'Open editor preferences', 'gravityforms' ); ?>" > <i class="gform-icon gform-icon--cog gform-button__icon" aria-hidden="true"></i> </button> <?php } }
[+]
..
[-] class-gf-editor-button.php
[edit]