activate.php
6 years ago
config.php
7 years ago
connect-jp.php
6 years ago
enter.php
4 years ago
get.php
7 years ago
notice.php
4 years ago
predefined.php
6 years ago
setup.php
6 years ago
start.php
6 years ago
stats.php
5 years ago
title.php
6 years ago
get.php
12 lines
| 1 | <?php |
| 2 | |
| 3 | //phpcs:disable VariableAnalysis |
| 4 | // There are "undefined" variables here because they're defined in the code that includes this file as a template. |
| 5 | |
| 6 | ?> |
| 7 | <form name="akismet_activate" action="https://akismet.com/get/" method="POST" target="_blank"> |
| 8 | <input type="hidden" name="passback_url" value="<?php echo esc_url( Akismet_Admin::get_page_url() ); ?>"/> |
| 9 | <input type="hidden" name="blog" value="<?php echo esc_url( get_option( 'home' ) ); ?>"/> |
| 10 | <input type="hidden" name="redirect" value="<?php echo isset( $redirect ) ? $redirect : 'plugin-signup'; ?>"/> |
| 11 | <input type="submit" class="<?php echo isset( $classes ) && count( $classes ) > 0 ? implode( ' ', $classes ) : 'akismet-button';?>" value="<?php echo esc_attr( $text ); ?>"/> |
| 12 | </form> |