Plugin Directory

Changeset 331560


Ignore:
Timestamp:
01/12/2011 03:10:43 AM (15 years ago)
Author:
rjune
Message:

Verify php5

File:
1 edited

Legend:

Unmodified
Added
Removed
  • ad-engine/trunk/ad-engine.php

    r324350 r331560  
    44Plugin URI: http://www.oriontechnologysolutions.com/web-design/ad-engine
    55Description: Ad Engine Let's you insert image or text ads using shortcode or widgets.
    6 Version: 0.7
     6Version: 0.8
    77Author: Orion Technology Solutions
    88Author URI: http://www.oriontechnologysolutions.com/
    99*/
     10if(!version_compare(PHP_VERSION, '5.0.0', '>=')) {
     11    add_action('admin_notices', 'ad_engine_php5required');
     12
     13    function wpwundergroundphp5error() {
     14        $out = '<div class="error" id="messages"><p>';
     15        $out .= 'Ad-Engine requires PHP5. Your server is running PHP4. Please ask your hosting company to upgrade your server to PHP5. It should be free.';
     16        $out .= '</p></div>';
     17        echo $out;
     18    }
     19    return;
     20}
     21
    1022
    1123$ad_engine_types = Array(
Note: See TracChangeset for help on using the changeset viewer.