| @@ 427-441 (lines=15) @@ | ||
| 424 | /** |
|
| 425 | * Generate and output Connect step section HTML. |
|
| 426 | */ |
|
| 427 | protected function license_box( $step ) { |
|
| 428 | $this->step_top( $step ); |
|
| 429 | ||
| 430 | if ( $step['complete'] ) { |
|
| 431 | ?> |
|
| 432 | <a href="#" class="<?php echo esc_attr( $step['button_class'] ); ?>"> |
|
| 433 | <?php echo esc_html( $step['button_label'] ); ?> |
|
| 434 | </a> |
|
| 435 | <?php |
|
| 436 | } else { |
|
| 437 | FrmSettingsController::license_box(); |
|
| 438 | } |
|
| 439 | ||
| 440 | $this->step_bottom( $step ); |
|
| 441 | } |
|
| 442 | ||
| 443 | protected function show_plugin_install( $step ) { |
|
| 444 | $this->step_top( $step ); |
|
| @@ 581-595 (lines=15) @@ | ||
| 578 | } |
|
| 579 | } |
|
| 580 | ||
| 581 | protected function show_page_links( $step ) { |
|
| 582 | if ( $step['current'] ) { |
|
| 583 | return; |
|
| 584 | } |
|
| 585 | ||
| 586 | $this->step_top( $step ); |
|
| 587 | ||
| 588 | ?> |
|
| 589 | <a href="#" target="_blank" rel="noopener" id="frm-redirect-link" class="<?php echo esc_attr( $step['button_class'] ); ?>"> |
|
| 590 | <?php echo esc_html( $step['button_label'] ); ?> |
|
| 591 | </a> |
|
| 592 | <?php |
|
| 593 | ||
| 594 | $this->step_bottom( $step ); |
|
| 595 | } |
|
| 596 | ||
| 597 | /** |
|
| 598 | * Only show the content for the correct plugin. |
|