PluginProbe
Related Posts By PickPlugins / trunk
Related Posts By PickPlugins vtrunk
trunk 1.0 1.1 1.2 2.0.0 2.0.1 2.0.10 2.0.11 2.0.14 2.0.16 2.0.17 2.0.18 2.0.19 2.0.2 2.0.20 2.0.21 2.0.22 2.0.23 2.0.24 2.0.25 2.0.26 2.0.27 2.0.28 2.0.29 2.0.30 All 60 releases
related-post / includes / class-upgrade.php

class-upgrade.php in Related Posts By PickPlugins trunk, at includes/class-upgrade.php

26 lines 384 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /*
4 * @Author pickplugins
5 * Copyright: 2015 pickplugins
6 */
7
8 if ( ! defined('ABSPATH')) exit; // if direct access
9
10 class class_related_post_upgrade{
11
12 public function __construct(){
13
14 add_action( 'admin_notices', array( $this, 'review_settings' ), 12 );
15
16 }
17
18 public function review_settings(){
19
20
21 }
22
23
24 }
25
26 new class_related_post_upgrade();