WPCF7_TagGeneratorGenerator::insert_box_content()
Template method for insert-box content including the result form-tag.
Метод класса: WPCF7_TagGeneratorGenerator{}
Хуков нет.
Возвращает
null
. Ничего (null).
Использование
// private - только в коде основоного (родительского) класса $result = $this->insert_box_content( $options );
- $options **
- -
По умолчанию: ''
Код WPCF7_TagGeneratorGenerator::insert_box_content() WPCF7 TagGeneratorGenerator::insert box content CF7 6.0.1
<?php private function insert_box_content( $options = '' ) { ?> <div class="flex-container"> <?php echo sprintf( '<input %s />', wpcf7_format_atts( array( 'type' => 'text', 'class' => 'code', 'readonly' => true, 'onfocus' => 'this.select();', 'data-tag-part' => 'tag', 'aria-label' => __( "The form-tag to be inserted into the form template", 'contact-form-7' ), ) ) ); ?> <button type="button" class="button button-primary" data-taggen="insert-tag"><?php echo esc_html( __( 'Insert Tag', 'contact-form-7' ) ); ?></button> </div> <?php }