| 1 | <?php |
||
|
0 ignored issues
–
show
Coding Style
introduced
by
Loading history...
|
|||
| 2 | /** |
||
|
0 ignored issues
–
show
|
|||
| 3 | * @author Podlove <[email protected]> |
||
| 4 | * @copyright Copyright (c) 2014-2018, Podlove |
||
| 5 | * @license https://github.com/podlove/podlove-subscribe-button-wp-plugin/blob/master/LICENSE MIT |
||
| 6 | * @package Podlove\PodloveSubscribeButton |
||
| 7 | */ |
||
|
0 ignored issues
–
show
|
|||
| 8 | |||
| 9 | function podlove_psb_php_notice() { |
||
| 10 | ?> |
||
| 11 | <div id="message" class="error"> |
||
| 12 | <p> |
||
| 13 | <strong>The Podlove Subscribe Button Plugin could not be activated</strong> |
||
| 14 | </p> |
||
| 15 | <p> |
||
| 16 | The Podlove Subscribe Button Plugin requires <code>PHP 5.3</code> or higher.<br> |
||
| 17 | You are running <code>PHP <?php echo phpversion(); ?></code>.<br> |
||
|
0 ignored issues
–
show
|
|||
| 18 | Please ask your hoster how to upgrade to an up-to-date PHP version. |
||
| 19 | </p> |
||
| 20 | </div> |
||
| 21 | <?php |
||
| 22 | } |
||
|
0 ignored issues
–
show
|
|||
| 23 |