PluginProbe
PHP Version / trunk
PHP Version vtrunk
php-version / php-version-wordpress.php

php-version-wordpress.php in PHP Version trunk, at php-version-wordpress.php

22 lines 703 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: PHP Version
4 Description: You can able to see the current PHP version in WordPress admin dashboard widget.
5 Version: 1.0.9
6 Author: Mazedul Islam
7 Author URI: https://www.mazedit.com/mazedulislam
8 Tags: php version, PHP Version, mazedulislam27
9 */
10 function mzd_pvw_enqueue_script( $pvw) {
11 // dashboard page only
12 if ( 'index.php' != $pvw ) {
13 return;
14 }
15 // enqueue script to show PHP version in WordPress dashboard
16 wp_enqueue_script( 'pvw_script', plugin_dir_url( __FILE__ ) . 'pvw.js' );
17 // pass the PHP version to JavaScript
18 wp_localize_script( 'pvw_script', 'pvwObj', array(
19 'phpVersion' => phpversion()
20 ) );
21 }
22 add_action( 'admin_enqueue_scripts', 'mzd_pvw_enqueue_script' );